Reupload of the Venyx UI Library WITH DOCUMENTATION
This took a lil while so make sure to star because this is the only documentation
local library = loadstring(game:Httpget("https://raw.githubusercontent.com/Stratxgy/VenyxUI/refs/heads/main/Venyx.lua"))()
local venyx = library.new("Venyx", 5013109572)
-- 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)
}
venyx:SelectPage(venyx.pages[1], true)
local page = venyx:addPage("Test", 5012544693)
-- If you want another just add the next number at local section(num here)
-- Here's an example of 2
local section1 = page:addSection("Section 1")
local section2 = page:addSection("Section 2")
section1:addToggle("Toggle", nil, function(value)
print("This is what the toggle executes!")
end)
section1:addButton("Button", function()
print("This is what the button executes!")
end)
local theme = venyx:addPage("Theme", 5012544693)
local colors = theme:addSection("Colors")
for theme, color in pairs(themes) do -- all in one theme changer
colors:addColorPicker(theme, color, function(color3)
venyx:setTheme(theme, color3)
end)
end
section1:addTextbox("Notification", "Default", function(value, focusLost)
print("Input", value)
venyx:Notify("Example")
end
end)
section1:addKeybind("Toggle Keybind", Enum.KeyCode.One, function()
print("This is where what happens when its activated - Usually leave it with print keybind activated")
venyx:toggle()
end, function()
print("This is where what happens when its completed -- put something you want to change the keybind of")
end)
section1:addColorPicker("ColorPicker", Color3.fromRGB(50, 50, 50))
section1:addSlider("Slider", 0, -100, 100, function(value)
print("Dragged, now im gonna print the value", value)
end)