TAMATI9875

Speed & Jump - Script

Jul 11th, 2022 (edited)
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.26 KB | None | 0 0
  1. --[[// Important \\
  2. The Script don't function for all games...
  3. Sorry.
  4. ]]--
  5.  
  6. --// Settings \\--
  7. local plr = "TAMATI9875" -- Make your name
  8. local sped = 16 -- Choose the Speed of you want
  9. local jump = 50 -- Choose the JumpPower of you want
  10.  
  11. --[[// Credit \\--
  12. Script by TAMATI9875
  13. Roblox : @TAMATI9875
  14. Roblox profile link : https://www.roblox.com/users/882905261/profile
  15. --]]
  16.  
  17.  
  18.  
  19.  
  20. --// Script \\--
  21.  
  22.  
  23. -- Don't touch --
  24. game.Workspace[plr].Humanoid.WalkSpeed = sped
  25. if game.Workspace[plr].Humanoid.WalkSpeed == sped then
  26.     print("Succefuly, Speed set to "..sped)
  27. end
  28. if game.Workspace[plr].Humanoid.WalkSpeed < sped then
  29.     print("Error Walk Speed set less (-) of the speed choose")
  30.     if game.Workspace[plr].Humanoid.WalkSpeed > sped then
  31.     print("Error Walk Speed set more (+) of the speed choose")
  32.     end
  33. end
  34.  
  35. game.Workspace[plr].Humanoid.JumpPower = jump
  36. if game.Workspace[plr].Humanoid.JumpPower == jump then
  37.     print("Succefuly, Jump set to "..jump)
  38. end
  39. if game.Workspace[plr].Humanoid.JumpPower < jump then
  40.     print("Error Jump Power set less (-) of the jump choose")
  41.     if game.Workspace[plr].Humanoid.JumpPower > jump then
  42.     print("Error Jump Power set more (+) of the jump choose")
  43.     end
  44. end
  45. print("Script by @TAMATI9875 in roblox")
Add Comment
Please, Sign In to add comment