Advertisement
salvomkiv

Tapping Legends X Script

Jul 25th, 2022
1,411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Hazy Hub", "Ocean")
  3. -- MAIN
  4. local Main = Window:NewTab("Main")
  5. local MainSection = Main:NewSection("Main")
  6.  
  7.  
  8. MainSection:NewButton("Proxima Hub", "This script has many working functions", function()
  9. loadstring(game:HttpGet("https://raw.githubusercontent.com/TrixAde/Proxima-Hub/main/Main.lua"))()
  10. end)
  11.  
  12. MainSection:NewToggle("Super-Human", "go fast and jump high", function(state)
  13. if state then
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  15. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  16. else
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  18. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  19. end
  20. end)
  21.  
  22. MainSection:NewButton("Infinite Yield", "FE Admin Commands", function()
  23. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  24. end)
  25.  
  26. MainSection:NewButton("SoggyHub", "Another great gui.", function()
  27. loadstring(game:HttpGet('https://soggyhub.bad.mn',true))()
  28. end)
  29.  
  30.  
  31. --LOCAL PLAYER
  32. local Player = Window:NewTab("Player")
  33. local PlayerSection = Player:NewSection("Player")
  34.  
  35. PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
  36. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  37. end)
  38.  
  39. PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
  40. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  41. end)
  42.  
  43. PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
  44. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  45. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  46. end)
  47.  
  48.  
  49. --Other
  50. local Other = Window:NewTab("Other")
  51. local OtherSection = Other:NewSection("Other")
  52.  
  53. OtherSection:NewButton("AutoClicker", "Auto clicks without being active", function()
  54. _G.Tap = true; -- how to toggle! True = on. False = Off.
  55.  
  56. spawn(function()
  57. while _G.Tap == true do
  58. local args = {[1] = 1}
  59. game:GetService("ReplicatedStorage").Remotes.Tap:FireServer()
  60. wait()
  61. end
  62. end)
  63.  
  64. print('Im now running an autoclicker for free and it is made by svenskajim')
  65. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement