Advertisement
Guest User

Untitled

a guest
Aug 5th, 2019
1,699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. -- Simple Walkspeed and Jump power script
  2. -- Made By Joseph#5931 enjoy! :D
  3.  
  4. local speed = 16 -- Add the amount of speed you want here!
  5.  
  6. spawn(function()
  7. while wait() do
  8. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  9. end
  10. end)
  11.  
  12. local jump = 50 -- Add the amount of jump power you want here!
  13.  
  14. spawn(function()
  15. while wait() do
  16. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement