Description

local R = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

local P, S, U = game.Players.LocalPlayer, game:GetService("RunService"), game:GetService("UserInputService")

local W = R:CreateWindow({Name = "Delta Pink God Mode", LoadingTitle = "Delta Pink", LoadingSubtitle = "by Delta"})

local T = W:CreateTab("Main Menu", 4483362456)

local n, f, i = false, false, false

T:CreateSlider({Name = "Speed", Range = {0, 500}, Increment = 1, CurrentValue = 205, Callback = function(v) P.Character.Humanoid.WalkSpeed = v end})

T:CreateSlider({Name = "Jump", Range = {0, 500}, Increment = 1, CurrentValue = 283, Callback = function(v) P.Character.Humanoid.JumpPower = v end})

T:CreateToggle({Name = "Noclip", Callback = function(v) n = v end})

T:CreateToggle({Name = "Fly", Callback = function(v) f = v local c = P.Character if f then local b = Instance.new("BodyVelocity", c.HumanoidRootPart) b.Name = "FV" b.MaxForce = Vector3.new(1e5,1e5,1e5) else if c.HumanoidRootPart:FindFirstChild("FV") then c.HumanoidRootPart.FV:Destroy() end end end})

T:CreateToggle({Name = "Inf Jump", Callback = function(v) i = v end})

S.Heartbeat:Connect(function()

if n and P.Character then for _, v in pairs(P.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end

if f and P.Character and P.Character.HumanoidRootPart:FindFirstChild("FV") then P.Character.HumanoidRootPart.FV.Velocity = workspace.CurrentCamera.CFrame.LookVector * 50 end

end)

U.JumpRequest:Connect(function() if i then P.Character:FindFirstChildOfClass("Humanoid"):ChangeState("J

umping") end end)

Comments

0comments
Add a comment...

No comments yet

Be the first to share your thoughts!