Advertisement
XDLOL0_0

Fe2 Script (patched)

Apr 26th, 2021
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. --[ UI ]--
  2. getgenv().Veranium = loadstring(game:HttpGet("http://ivyx.xyz/Veranium/VeraniumVXI.lua%22))();
  3. --Actual Script
  4. loadstring(game:HttpGet("http://ivyx.xyz/DDReleases/FE2.lua%22))();
  5.  
  6. --[ Q Toggle]--
  7.  
  8. local toggled = true
  9. plr = game.Players.LocalPlayer
  10.  
  11. mouse = plr:GetMouse()
  12.  
  13. mouse.KeyDown:connect(function(key)
  14. if key == "q" then
  15. if toggled == true then
  16. toggled = false
  17. else
  18. toggled = true
  19. end
  20. end
  21. end)
  22.  
  23. --[InfJump]--
  24.  
  25. local InfiniteJumpEnabled = true
  26. game:GetService("UserInputService").JumpRequest:connect(function()
  27. if InfiniteJumpEnabled then
  28. if toggled == true then
  29. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  30. end
  31. end
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement