SplashExploits

ANOTHER JP HACK FOR ROBLOX(Football fusion)(Legendary football)

Sep 24th, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. local InfiniteJumpEnabled = true
  2. game:GetService("UserInputService").JumpRequest:connect(function()
  3. if InfiniteJumpEnabled then
  4. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  5. end
  6. end)
  7. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  8. InfiniteJump.Position = UDim2.new(0,10,0,130)
  9. InfiniteJump.Size = UDim2.new(0,150,0,30)
  10. InfiniteJump.MouseButton1Click:connect(function()
  11. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  12. local new = state == "Off" and "On" or state == "On" and "Off"
  13. InfiniteJumpEnabled = new == "On"
  14. InfiniteJump.Text = "Infinite Jump: " .. new
  15. end)
  16.  
  17.  
  18. DONT COPY THIS PART--------BTW I MADE A DIFFERENT JP SCRIPT JUST INCASE IF THE OTHER JP SCRIPT THAT I MADE BEFORE DIDN'T WORK!---------
Add Comment
Please, Sign In to add comment