Advertisement
ToolBLX

Infinite Jump

Jan 26th, 2020
4,849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local Player = game:GetService("Players").LocalPlayer
  2. local Mouse = Player:GetMouse()
  3. Mouse.KeyDown:connect(function(k)
  4. if k:byte() == 32 then
  5. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  6. Humanoid:ChangeState("Jumping")
  7. wait(0.1)
  8. Humanoid:ChangeState("Seated")
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement