Advertisement
Umendboy

Umendboy Jumper

Jul 12th, 2022
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local button = script.Parent
  2. local player = game:GetService('Players')
  3. local sprinting = false
  4.  
  5. local function sprint()
  6. local player = player.LocalPlayer
  7. if sprinting then
  8. sprinting = false
  9. button.Text='SuperJumper: off'
  10. script.Parent.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  11. player.Character.Humanoid.JumpPower = 16
  12. else
  13. sprinting = true
  14. button.Text ='SuperJumper: on'
  15. script.Parent.BackgroundColor3 = Color3.fromRGB(25, 213, 4)
  16. player.Character.Humanoid.JumpPower = 250
  17. end
  18. end
  19.  
  20. button.MouseButton1Click:Connect(sprint)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement