uor

parkour

uor
May 24th, 2021
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/LegoHacks/Parkour/main/Main.lua"))()
  2. wait(1)
  3. game.StarterGui:SetCore("SendNotification", {
  4. Title = "ReDevs";
  5. Text = "- Infinite Jump executed Spam the space button as you can.";
  6. Icon = "rbxassetid://4414605822";
  7. Duration = 3;
  8. })
  9.  
  10. _G.infinjump = true
  11.  
  12. local Player = game:GetService("Players").LocalPlayer
  13. local Mouse = Player:GetMouse()
  14. Mouse.KeyDown:connect(function(k)
  15. if _G.infinjump then
  16. if k:byte() == 32 then
  17. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  18. Humanoid:ChangeState("Jumping")
  19. wait(0.1)
  20. Humanoid:ChangeState("Seated")
  21. end
  22. end
  23. end)
  24.  
  25. local Player = game:GetService("Players").LocalPlayer
  26. local Mouse = Player:GetMouse()
  27. Mouse.KeyDown:connect(function(k)
  28. k = k:lower()
  29. if k == "f" then
  30. if _G.infinjump == true then
  31. _G.infinjump = false
  32. else
  33. _G.infinjump = true
  34. end
  35. end
  36. end)
Add Comment
Please, Sign In to add comment