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("Car Dealership Tycoon", "GrapeTheme")
- --MAIN
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("Player")
- MainSection:NewButton("Admin", "Gives admin", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- MainSection:NewButton("Car Script, key in video description", "In video description", function()
- loadstring(game:HttpGet("https://soggy-ware.cf"))()
- end)
- --LOCAL PLAYER
- local Player = Window:NewTab("Player")
- local PLayerSection = Player:NewSection("Player")
- PLayerSection:NewSlider("Walkspeed", "Your player speed", 500, 5, function(s) -- 500 (MaxValue) | 5 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- PLayerSection:NewSlider("Jumppower", "Your jump force", 350, 50, function(s) -- 500 (MaxValue) | 5 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- --Other
- local Credits = Window:NewTab("Credits")
- local CreditsSection = Credits:NewSection("All Cedits go to ChillBreadYT SUBSCRIBE :D")
- CreditsSection:NewKeybind("Closes script keybind", "closes GUI", Enum.KeyCode.F, function()
- Library:ToggleUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement