Advertisement
alek_

Infinite Jump Script ROBLOX 2020 Exploit Script

Nov 5th, 2020
2,678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. local Humanoid = script.Parent:FindFirstChild("Humanoid")
  2. local UserInputService = game:GetService("UserInputService")
  3. local Key = Enum.KeyCode.Space
  4. local Holding = false
  5.  
  6. UserInputService.InputBegan:Connect(function(Input)
  7.     if Input.KeyCode == Key then
  8.         Holding = true
  9.         while Holding == true do
  10.             wait()
  11.             Humanoid:ChangeState(Enum.HumanoidStateType.Seated)
  12.             wait(0.0001)
  13.             Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  14.         end
  15.     end
  16. end)
  17.  
  18. UserInputService.InputEnded:Connect(function(Input)
  19.     if Input.KeyCode == Key then
  20.         Holding = false
  21.     end
  22. end)
  23.  
  24. -- Ubicast
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement