Advertisement
Guest User

Mr. Cube The Boss Battle! Script

a guest
Apr 23rd, 2022
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. ---Ui
  2. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  3. local venyx = library.new("Mr. Cube The Boss Battle! Script", 5013109572)
  4. ---Window
  5. local themes = {
  6. Background = Color3.fromRGB(24, 24, 24),
  7. Glow = Color3.fromRGB(0, 0, 0),
  8. Accent = Color3.fromRGB(10, 10, 10),
  9. LightContrast = Color3.fromRGB(20, 20, 20),
  10. DarkContrast = Color3.fromRGB(14, 14, 14),
  11. TextColor = Color3.fromRGB(255, 255, 255)
  12. }
  13. local page = venyx:addPage("Player", 5012544693)
  14. local section1 = page:addSection("Boss Tp")
  15. local section2 = page:addSection("Diamonds")
  16. local section3 = page:addSection("Toggle gui")
  17. section1:addButton("Teleport to boss", function()
  18. local tp = game.Workspace.MrCube.MrCubePart.Position
  19.  
  20. game:service'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(tp)
  21. end)
  22. section2:addButton("Inf diamonds", function()
  23. local remote = Game["Workspace"]["BoughtRemote"]
  24. local args = {
  25. [1] = -100000,
  26. [2] = "Trails",
  27. [3] = "Lights",
  28. [4] = "TrailName",
  29.  
  30. }
  31. remote:InvokeServer(unpack(args))
  32. end)
  33. section3:addKeybind("Toggle Keybind", Enum.KeyCode.One, function()
  34. print("Activated Keybind")
  35. venyx:toggle()
  36. end, function()
  37. print("Changed Keybind")
  38. end)
  39. ---Themes
  40. local themes = {
  41. Background = Color3.fromRGB(24, 24, 24),
  42. Glow = Color3.fromRGB(0, 0, 0),
  43. Accent = Color3.fromRGB(10, 10, 10),
  44. LightContrast = Color3.fromRGB(20, 20, 20),
  45. DarkContrast = Color3.fromRGB(14, 14, 14),
  46. TextColor = Color3.fromRGB(255, 255, 255)
  47. }
  48.  
  49. local theme = venyx:addPage("Theme", 5012544693)
  50. local colors = theme:addSection("Colors")
  51.  
  52. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  53. colors:addColorPicker(theme, color, function(color3)
  54. venyx:setTheme(theme, color3)
  55. end)
  56. end
  57. -- load
  58. venyx:SelectPage(venyx.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement