Advertisement
yWolf_BR

InfJump

Jan 30th, 2019
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. wait(0)
  2. game.StarterGui:SetCore("SendNotification", {
  3. Title = "Como usar";
  4. Text = "Aperte J Para Ativar/Desativar";
  5. Duration = 2.5;
  6. })
  7.  
  8.  
  9. _G.infinjump = true
  10.  
  11. local Player = game:GetService("Players").LocalPlayer
  12. local Mouse = Player:GetMouse()
  13. Mouse.KeyDown:connect(function(k)
  14. if _G.infinjump then
  15. if k:byte() == 32 then
  16. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  17. Humanoid:ChangeState("Jumping")
  18. wait(0.1)
  19. Humanoid:ChangeState("Seated")
  20. end
  21. end
  22. end)
  23.  
  24. local Player = game:GetService("Players").LocalPlayer
  25. local Mouse = Player:GetMouse()
  26. Mouse.KeyDown:connect(function(k)
  27. k = k:lower()
  28. if k == "j" then
  29. if _G.infinjump == true then
  30. _G.infinjump = false
  31. else
  32. _G.infinjump = true
  33. end
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement