Advertisement
pinkaroo

Untitled

Jan 14th, 2023
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 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("Universal Game Script", "Ocean")
  3. -- MAIN
  4. local Main = Window:NewTab("Main")
  5. local MainSection = Main:NewSection("Main")
  6.  
  7.  
  8.  
  9. MainSection:NewToggle("Walkspeed and Jumppower", "120 walkspeed and 120 jumppower", function(state)
  10. if state then
  11. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  12. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  13. else
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  15. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  16. end
  17. end)
  18.  
  19. MainSection:NewButton("Infinite Yield", "FE Admin Commands", function()
  20. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  21. end)
  22.  
  23.  
  24. --LOCAL PLAYER
  25. local Player = Window:NewTab("Player")
  26. local PlayerSection = Player:NewSection("Player")
  27.  
  28. PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
  29. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  30. end)
  31.  
  32. PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
  33. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  34. end)
  35.  
  36. PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
  37. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  38. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  39. end)
  40.  
  41. PlayerSection:NewButton("Fly (G Toggle)", "Makes you fly", function()
  42. loadstring(game:HttpGet(('https://pastebin.com/raw/Dr0DF8EK'),true))()
  43. end)
  44.  
  45. PlayerSection:NewButton("Infinite Jump", "Makes you jump infinitely in the air", function()
  46. loadstring(game:HttpGet(('https://pastebin.com/raw/V3DKCQTT'),true))()
  47. end)
  48.  
  49.  
  50. PlayerSection:NewButton("Noclip (F Toggle)", "Go through walls", function()
  51. loadstring(game:HttpGet(('https://pastebin.com/raw/MscaRtGe'),true))()
  52. end)
  53.  
  54.  
  55. --Other
  56. local Other = Window:NewTab("Other")
  57. local OtherSection = Other:NewSection("Other")
  58.  
  59.  
  60. OtherSection:NewButton("Anti-AFK", "Prevents you from getting kick from idle 20 minutes", function()
  61. loadstring(game:HttpGet(('https://raw.githubusercontent.com/RTrade/Voidz/main/AntiAFK.lua'),true))()
  62. end)
  63.  
  64. OtherSection:NewButton("Rejoin Game", "Rejoins the game (DO NOT DO IN A SERVER ALONE)", function()
  65. loadstring(game:HttpGet(('https://pastebin.com/raw/chrEiVgD'),true))()
  66. end)
  67.  
  68. OtherSection:NewButton("Anti-Kick (Localscripts only)", "Prevents you from getting kicked", function()
  69. loadstring(game:HttpGet(('https://pastebin.com/raw/ufTFWycB'),true))()
  70. end)
  71.  
  72. OtherSection:NewButton("Teleport to random player", "Teleports you to a random player", function()
  73. loadstring(game:HttpGet(('https://pastebin.com/raw/Dt42DBR4'),true))()
  74. end)
  75.  
  76. --Teleports
  77. local Teleports = Window:NewTab("Teleports")
  78. local TeleportsSection = Teleports:NewSection("Teleports")
  79.  
  80. TeleportsSection:NewButton("Teleport Tool", "Teleports you anywhere you click when tool equipped", function()
  81. loadstring(game:HttpGet(('https://pastebin.com/raw/iMKYkmcu'),true))()
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement