Created
August 15, 2022 18:05
-
-
Save Enqvy/2ab103c3080be849e5cd3b86942e7edf to your computer and use it in GitHub Desktop.
ajndkja
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() | |
| local Window = Library.CreateLib("MAXIN HUB | ", "Serpent") | |
| --tabs | |
| local Tab1 = Window:NewTab("Main") | |
| local Tab2 = Window:NewTab("Local Scripts") | |
| local Tab3 = Window:NewTab("") | |
| local Tab4 = Window:NewTab("Settings") | |
| --Sections | |
| local Section1 = Tab1:NewSection("") | |
| local Section2 = Tab2:NewSection("") | |
| local Section3 = Tab3:NewSection("") | |
| local Section4 = Tab4:NewSection("") | |
| --Main Section | |
| Section1:NewSlider("SliderText", "SliderInfo", 250, 16, function(s) | |
| game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s | |
| end) | |
| Section1:NewSlider("SliderText", "SliderInfo", 250, 50, function(f) | |
| game.Players.LocalPlayer.Character.Humanoid.JumpPower = f | |
| end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment