Advertisement
AALTTz

jump on

Nov 20th, 2022
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. _G.infinjump = true
  2. local Player = game:GetService("Players").LocalPlayer
  3. local Mouse = Player:GetMouse()
  4. Mouse.KeyDown:connect(function(k)
  5. if _G.infinjump then
  6. if k:byte() == 32 then
  7. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  8. Humanoid:ChangeState("Jumping")
  9. wait(0.1)
  10. Humanoid:ChangeState("Seated")
  11. end
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement