Advertisement
Celestial_Dodo

123

Sep 11th, 2023 (edited)
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.21 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("Master Hub", "Ocean")
  3.     -- MAIN
  4.     local Main = Window:NewTab("Main")
  5.     local MainSection = Main:NewSection("Main")
  6.  
  7.  
  8.     MainSection:NewButton("Back/Front Flip", "Makes you do gymnastics", function()
  9.         loadstring(game:HttpGet('https://pastebin.com/raw/7wDcPtLk'))()
  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.  
  27.     --LOCAL PLAYER
  28.     local Player = Window:NewTab("Player")
  29.     local PlayerSection = Player:NewSection("Player")
  30.  
  31.     PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
  32.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  33.     end)
  34.  
  35.     PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
  36.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  37.     end)
  38.  
  39.     PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
  40.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  41.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  42.     end)
  43.  
  44.  
  45.     --Other
  46.     local Other = Window:NewTab("Other")
  47.     local OtherSection = Other:NewSection("Other")
  48.  
  49.     OtherSection:NewButton("Chat Spoofer", "Lets you chat for other people", function()
  50.         loadstring(game:HttpGet(('https://pastebin.com/raw/djBfk8Li'),true))()
  51.     end)
  52.  
  53.     OtherSection:NewButton("Bypassed Fly", "bird mode", function()
  54.         loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
  55.  
  56.         Fly(true)
  57.     end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement