Advertisement
HackNeedsScripts

Cool Gui Script for Roblox

Oct 6th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 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("Mining Simulator Script", "Synapse")
  3. local Tab = Window:NewTab("Main")
  4. local Section = Tab:NewSection("Credits")
  5.  
  6.  
  7. local Tab = Window:NewTab("Player")
  8. local Section = Tab:NewSection("Movement")
  9.  
  10.  
  11. Section:NewSlider("Movement Spped", "Makes you really fast", 100, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  12. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  13. end)
  14.  
  15.  
  16. Section:NewSlider("Jump Boost", "Makes you jump really high", 250, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  17. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  18. end)
  19.  
  20.  
  21.  
  22. local Tab = Window:NewTab("Auto Farm")
  23. local Section = Tab:NewSection("Auto Farm")
  24.  
  25. Section:NewButton("ButtonText", "ButtonInfo", function()
  26. loadstring(game:HttpGet("https://pastebin.com/raw/QBqmDpv3"))()
  27. end)
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. local Tab = Window:NewTab("Menu Info")
  35. local Section = Tab:NewSection("Info About the Menu")
  36.  
  37.  
  38. Section:NewKeybind("L", "Press L to close this", Enum.KeyCode.L, function()
  39. Library:ToggleUI()
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement