This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() | |
| local Window = Rayfield:CreateWindow({ | |
| Name = "Vero [WIP]", | |
| Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default). | |
| LoadingTitle = "Vero", | |
| LoadingSubtitle = ">Interface by Sirius", | |
| ShowText = "Vero", -- for mobile users to unhide rayfield, change if you'd like | |
| Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Hitbox Expander GUI (LocalScript in StarterPlayerScripts) | |
| -- Expands HumanoidRootPart of OTHER players only. Sliders for size (1-100 studs) and transparency (0-1). | |
| -- Handles respawns and new players. Draggable GUI with toggle. | |
| -- Sets CanCollide = false (client-side; may not affect server collisions fully). | |
| local Players = game:GetService("Players") | |
| local UserInputService = game:GetService("UserInputService") | |
| local player = Players.LocalPlayer | |
| local playerGui = player:WaitForChild("PlayerGui") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Anti-Fling + Draggable GUI + Working Slider + Toggle | |
| -- Place in StarterPlayer > StarterPlayerScripts | |
| local Players = game:GetService("Players") | |
| local RunService = game:GetService("RunService") | |
| local UserInputService = game:GetService("UserInputService") | |
| local player = Players.LocalPlayer | |
| local playerGui = player:WaitForChild("PlayerGui") |