NiceBBMBThai

Gui Free Icon02

Apr 10th, 2021 (edited)
2,160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1.  
  2. --Made by : https://v3rmillion.net/member.php?action=profile&uid=244024
  3. -- init
  4. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/zxciaz/VenyxUI/main/Reuploaded"))() --someone reuploaded it so I put it in place of the original back up so guy can get free credit.
  5. local venyx = library.new("Venyx", 5013109572)
  6.  
  7. -- themes
  8. local themes = {
  9. Background = Color3.fromRGB(24, 24, 24),
  10. Glow = Color3.fromRGB(0, 0, 0),
  11. Accent = Color3.fromRGB(10, 10, 10),
  12. LightContrast = Color3.fromRGB(20, 20, 20),
  13. DarkContrast = Color3.fromRGB(14, 14, 14),
  14. TextColor = Color3.fromRGB(255, 255, 255)
  15. }
  16.  
  17. -- first page
  18. local page = venyx:addPage("Test", 5012544693)
  19. local section1 = page:addSection("Section 1")
  20. local section2 = page:addSection("Section 2")
  21.  
  22. section1:addToggle("Toggle", nil, function(value)
  23. print("Toggled", value)
  24. end)
  25. section1:addButton("Button", function()
  26. print("Clicked")
  27. end)
  28. section1:addTextbox("Notification", "Default", function(value, focusLost)
  29. print("Input", value)
  30.  
  31. if focusLost then
  32. venyx:Notify("Title", value)
  33. end
  34. end)
  35.  
  36. section2:addKeybind("Toggle Keybind", Enum.KeyCode.One, function()
  37. print("Activated Keybind")
  38. venyx:toggle()
  39. end, function()
  40. print("Changed Keybind")
  41. end)
  42. section2:addColorPicker("ColorPicker", Color3.fromRGB(50, 50, 50))
  43. section2:addColorPicker("ColorPicker2")
  44. section2:addSlider("Slider", 0, -100, 100, function(value)
  45. print("Dragged", value)
  46. end)
  47. section2:addDropdown("Dropdown", {"Hello", "World", "Hello World", "Word", 1, 2, 3})
  48. section2:addDropdown("Dropdown", {"Hello", "World", "Hello World", "Word", 1, 2, 3}, function(text)
  49. print("Selected", text)
  50. end)
  51. section2:addButton("Button")
  52.  
  53. -- second page
  54. local theme = venyx:addPage("Theme", 5012544693)
  55. local colors = theme:addSection("Colors")
  56.  
  57. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  58. colors:addColorPicker(theme, color, function(color3)
  59. venyx:setTheme(theme, color3)
  60. end)
  61. end
  62.  
  63. -- load
  64. venyx:SelectPage(venyx.pages[1], true) -- no default for more freedom
Add Comment
Please, Sign In to add comment