AALTTz

aaaaaa

Apr 7th, 2023
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. _G.infinjump = true
  2.  
  3. local Player = game:GetService("Players").LocalPlayer
  4. local Mouse = Player:GetMouse()
  5. Mouse.KeyDown:connect(function(k)
  6. if _G.infinjump then
  7. if k:byte() == 32 then
  8. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  9. Humanoid:ChangeState("Jumping")
  10. wait(0.1)
  11. Humanoid:ChangeState("Seated")
  12. end
  13. end
  14. end)
  15.  
  16. local Player = game:GetService("Players").LocalPlayer
  17. local Mouse = Player:GetMouse()
  18. Mouse.KeyDown:connect(function(k)
  19. k = k:lower()
  20. if k == "f" then
  21. if _G.infinjump == true then
  22. _G.infinjump = false
  23. else
  24. _G.infinjump = true
  25. end
  26. end
  27. end)
Add Comment
Please, Sign In to add comment