--[[ Documentation: https://zon.su/zonix GitHub: https://github.com/Zontrz/zonix-ui ]]-- local Zonix = loadstring(game:HttpGet("https://raw.githubusercontent.com/Zontrz/zonix-ui/refs/heads/main/main.lua"))() local Window = Zonix:Window({ Name = "All Components" }) local Tab = Window:Tab({ Name = "Main", Icon = "🎨" }) Tab:Section("Text Components") Tab:Label("This is a label") Tab:Paragraph("About", "This is a paragraph with multiple lines of text.") Tab:Divider() Tab:Section("Interactive Components") Tab:Button({ Name = "Click Me", Callback = function() print("Clicked") end }) Tab:Toggle({ Name = "Enable Feature", Flag = "Feature" }) Tab:Slider({ Name = "Value", Min = 0, Max = 100, Flag = "Value" }) Tab:Dropdown({ Name = "Option", Options = {"A", "B", "C"}, Flag = "Option" }) Tab:Textbox({ Name = "Input", Placeholder = "Type...", Flag = "Input" }) Tab:Keybind({ Name = "Hotkey", Default = Enum.KeyCode.E, Flag = "Hotkey" }) Tab:ColorPicker({ Name = "Color", Flag = "Color" }) Tab:Divider() Tab:Section("Utility Components") Tab:CopyButton({ Name = "Copy URL", Text = "https://hub.zon.su" }) Tab:ProgressBar({ Name = "Progress", Progress = 0.75 })