Advertisement
Hex4rr

Bounce/Unbounce (MH)

Nov 3rd, 2020 (edited)
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. local BounceToggle = true
  2. Bounce.Text = "Unbounce"
  3. while true do
  4. if BounceToggle == false then
  5. break
  6. BounceToggle = true
  7. end
  8. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 1
  9. wait(0.1)
  10. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 0
  11. wait(0.1)
  12. game.Players.LocalPlayer.Character.Humanoid.HipHeight = -1
  13. wait(0.1)
  14. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 0
  15. wait(0.1)
  16. Bounce.MouseButton1Click:connect(function()
  17. BounceToggle = false
  18. end)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement