local UILib = loadstring(game:HttpGet("https://raw.githubusercontent.com/riotrapdo-spec/No-steal/main/text.txt"))() -- optional key system UILib:CheckKey("ZHELL123") -- create window local win = UILib:CreateWindow("Player Controls","rbxassetid://12345678") -- SPEED BUTTON win:Button("Speed 50", function() local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") humanoid.WalkSpeed = 50 end) -- RESET SPEED win:Button("Normal Speed", function() local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") humanoid.WalkSpeed = 16 end) -- JUMP BUTTON win:Button("High Jump", function() local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") humanoid.JumpPower = 100 end) -- RESET JUMP win:Button("Normal Jump", function() local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") humanoid.JumpPower = 50 end) -- SPEED TOGGLE win:Toggle("Infinite Speed", function(state) local player = game.Players.LocalPlayer local humanoid = player.Character:WaitForChild("Humanoid") if state then humanoid.WalkSpeed = 80 else humanoid.WalkSpeed = 16 end end)