Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- UI script
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- -- title
- local Window = Library.CreateLib("PLS capture gui", "DarkTheme")
- -- tabs
- local Tab = Window:NewTab("Give stuff")
- -- car
- local Section = Tab:NewSection("Fire car")
- Section:NewButton("hot ride", "get a hot ride", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Hot Wheels"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Hot Wheels"].Value = true
- end)
- -- god capsule
- local Section = Tab:NewSection("God Capsule")
- Section:NewButton("God Capsule", "click me", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["God Capsule"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["God Capsule"].Value = true
- end)
- -- arena
- local Section = Tab:NewSection("Arena tool")
- Section:NewButton("Arena tool", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Gladiator Arena"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Gladiator Arena"].Value = true
- end)
- -- meteor
- local Section = Tab:NewSection("meteor shower tool")
- Section:NewButton("Give meteor shower tool", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Meteor Shower"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Meteor Shower"].Value = true
- end)
- -- discord ping
- local Section = Tab:NewSection("Discord ping tool")
- Section:NewButton("Discord ping tool", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Discord Ping"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Discord Ping"].Value = true
- end)
- -- gamepasses
- local Tab = Window:NewTab("Gamepasses")
- -- superautoclicker
- local Section = Tab:NewSection("Super autoclicker")
- Section:NewButton("Superautoclicker gamepass")
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.Gamepasses.SuperAutoClicker.Value = true
- -- for prussian
- -- UI script
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- -- title
- local Window = Library.CreateLib("PLS capture gui", "DarkTheme")
- -- tabs
- local Tab = Window:NewTab("Give stuff")
- -- god capsule
- local Section = Tab:NewSection("God Capsule")
- Section:NewButton("God Capsule", "click me", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["God Capsule"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["God Capsule"].Value = true
- end)
- -- gamepasses
- local Tab = Window:NewTab("Gamepasses")
- -- superautoclicker
- local Section = Tab:NewSection("Super autoclicker")
- Section:NewButton("Superautoclicker gamepass")
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.Gamepasses.SuperAutoClicker.Value = true
- -- VIP
- local Section = Tab:NewSection("VIP")
- Section:NewButton("VIP")
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.Gamepasses.VIP.Value = true
- -- MVP
- local Section = Tab:NewSection("MVP")
- Section:NewButton("MVP")
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.Gamepasses.MVP.Value = true
- -- daily stuff
- local Tab = Window:NewTab("daily buyables")
- local Section = Tab:NewSection("Discord ping tool")
- Section:NewButton("Discord ping tool", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Discord Ping"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Discord Ping"].Value = true
- end)
- local Section = Tab:NewSection("Arena tool")
- Section:NewButton("Arena tool", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Gladiator Arena"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Gladiator Arena"].Value = true
- end)
- local Section = Tab:NewSection("meteor shower tool")
- Section:NewButton("Give meteor shower tool", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Meteor Shower"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Meteor Shower"].Value = true
- end)
- local Section = Tab:NewSection("Fire car")
- Section:NewButton("hot ride", "get a hot ride", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Hot Wheels"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Hot Wheels"].Value = true
- end)
- local Section = Tab:NewSection("Music stuff")
- Section:NewButton("Music:Screaming", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Music: Screaming"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Music: Screaming"].Value = true
- end)
- local Section = Tab:NewSection("Click Rain")
- Section:NewButton("Click Rain", "", function()
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedBalls["Click Rain"].Value = true
- game:GetService("Players").LocalPlayer.DataSave.Common.FillOnStart.OwnedNotifications["Click Rain"].Value = true
- end)
- -- settings
- local Tab = Window:NewTab("Settings")
- local Section = Tab:NewSection("Settings")
- Section:NewSlider("Color", "", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- for theme, color in pairs(themes) do
- Section:NewColorPicker(theme, "Change your "..theme, color, function(color3)
- Library:ChangeColor(theme, color3)
- end)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement