Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---Ui
- local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
- local venyx = library.new("Mr. Cube The Boss Battle! Script", 5013109572)
- ---Window
- local themes = {
- Background = Color3.fromRGB(24, 24, 24),
- Glow = Color3.fromRGB(0, 0, 0),
- Accent = Color3.fromRGB(10, 10, 10),
- LightContrast = Color3.fromRGB(20, 20, 20),
- DarkContrast = Color3.fromRGB(14, 14, 14),
- TextColor = Color3.fromRGB(255, 255, 255)
- }
- local page = venyx:addPage("Player", 5012544693)
- local section1 = page:addSection("Boss Tp")
- local section2 = page:addSection("Diamonds")
- local section3 = page:addSection("Toggle gui")
- section1:addButton("Teleport to boss", function()
- local tp = game.Workspace.MrCube.MrCubePart.Position
- game:service'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(tp)
- end)
- section2:addButton("Inf diamonds", function()
- local remote = Game["Workspace"]["BoughtRemote"]
- local args = {
- [1] = -100000,
- [2] = "Trails",
- [3] = "Lights",
- [4] = "TrailName",
- }
- remote:InvokeServer(unpack(args))
- end)
- section3:addKeybind("Toggle Keybind", Enum.KeyCode.One, function()
- print("Activated Keybind")
- venyx:toggle()
- end, function()
- print("Changed Keybind")
- end)
- ---Themes
- local themes = {
- Background = Color3.fromRGB(24, 24, 24),
- Glow = Color3.fromRGB(0, 0, 0),
- Accent = Color3.fromRGB(10, 10, 10),
- LightContrast = Color3.fromRGB(20, 20, 20),
- DarkContrast = Color3.fromRGB(14, 14, 14),
- TextColor = Color3.fromRGB(255, 255, 255)
- }
- local theme = venyx:addPage("Theme", 5012544693)
- local colors = theme:addSection("Colors")
- for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
- colors:addColorPicker(theme, color, function(color3)
- venyx:setTheme(theme, color3)
- end)
- end
- -- load
- venyx:SelectPage(venyx.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement