Skip to content

Instantly share code, notes, and snippets.

@Enqvy
Created August 15, 2022 18:05
Show Gist options
  • Select an option

  • Save Enqvy/2ab103c3080be849e5cd3b86942e7edf to your computer and use it in GitHub Desktop.

Select an option

Save Enqvy/2ab103c3080be849e5cd3b86942e7edf to your computer and use it in GitHub Desktop.
ajndkja
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