Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Mining Simulator Script", "Synapse")
- local Tab = Window:NewTab("Main")
- local Section = Tab:NewSection("Credits")
- local Tab = Window:NewTab("Player")
- local Section = Tab:NewSection("Movement")
- Section:NewSlider("Movement Spped", "Makes you really fast", 100, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewSlider("Jump Boost", "Makes you jump really high", 250, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- local Tab = Window:NewTab("Auto Farm")
- local Section = Tab:NewSection("Auto Farm")
- Section:NewButton("ButtonText", "ButtonInfo", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/QBqmDpv3"))()
- end)
- local Tab = Window:NewTab("Menu Info")
- local Section = Tab:NewSection("Info About the Menu")
- Section:NewKeybind("L", "Press L to close this", Enum.KeyCode.L, function()
- Library:ToggleUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement