Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Simple Walkspeed and Jump power script
- -- Made By Joseph#5931 enjoy! :D
- local speed = 16 -- Add the amount of speed you want here!
- spawn(function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
- end
- end)
- local jump = 50 -- Add the amount of jump power you want here!
- spawn(function()
- while wait() do
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement