Skip to content

Instantly share code, notes, and snippets.

View VectueI's full-sized avatar

VectueI

  • Joined Nov 4, 2025
View GitHub Profile
@VectueI
VectueI / Vero
Last active November 4, 2025 14:18
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
-- 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")
-- 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")