Advertisement
75386487456bv

Car dealership tycoon script 2023

Feb 16th, 2023
18,444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | Gaming | 3 3
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Car Dealership Tycoon", "GrapeTheme")
  3.  
  4. --MAIN
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Player")
  7.  
  8. MainSection:NewButton("Admin", "Gives admin", function()
  9. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  10. end)
  11.  
  12. MainSection:NewButton("Car Script, key in video description", "In video description", function()
  13. loadstring(game:HttpGet("https://soggy-ware.cf"))()
  14. end)
  15.  
  16.  
  17. --LOCAL PLAYER
  18. local Player = Window:NewTab("Player")
  19. local PLayerSection = Player:NewSection("Player")
  20.  
  21. PLayerSection:NewSlider("Walkspeed", "Your player speed", 500, 5, function(s) -- 500 (MaxValue) | 5 (MinValue)
  22. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  23. end)
  24.  
  25. PLayerSection:NewSlider("Jumppower", "Your jump force", 350, 50, function(s) -- 500 (MaxValue) | 5 (MinValue)
  26. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  27. end)
  28.  
  29.  
  30. --Other
  31. local Credits = Window:NewTab("Credits")
  32. local CreditsSection = Credits:NewSection("All Cedits go to ChillBreadYT SUBSCRIBE :D")
  33.  
  34. CreditsSection:NewKeybind("Closes script keybind", "closes GUI", Enum.KeyCode.F, function()
  35. Library:ToggleUI()
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement