-- Load Rayfield UI Library loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "My Script Hub", LoadingTitle = "My Script Loader", LoadingSubtitle = "by You", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "MyScriptUI" }, Discord = { Enabled = false }, KeySystem = false }) -- Create Tab local MainTab = Window:CreateTab("Main", 4483362458) -- Fast Grab Button (X-ray + Noclip) MainTab:CreateButton({ Name = "Fast Grab (X-Ray + Noclip)", Callback = function() -- X-RAY: Make walls semi-transparent for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") and part.Transparency < 0.5 and part.Name ~= "Baseplate" then part.Transparency = 0.6 end end -- NOCLIP local noclip = true local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() game:GetService("RunService").Stepped:Connect(function() if noclip then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") and part.CanCollide == true then part.CanCollide = false end end end end) end, }) -- Anti-Hit Button MainTab:CreateButton({ Name = "Anti-Hit (Disable Damage)", Callback = function() local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() -- Common method: Remove humanoid health changes if char:FindFirstChild("Humanoid") then char.Humanoid:GetPropertyChangedSignal("Health"):Connect(function() char.Humanoid.Health = char.Humanoid.MaxHealth end) end -- Alternative: Set a super high health value char.Humanoid.MaxHealth = math.huge char.Humanoid.Health = math.huge end, })