Window Container
The primary UI frame containing the navigation sidebar, logo, title, subtitle, and tab containers.
Window Configuration Options#
You can configure the window using a developer table (SCRIPT_CONFIG) or positional parameters:
1local SCRIPT_CONFIG = {
2 Title = "VALINC SYNDICATE", -- Main hub title
3 Subtitle = "Quartz v4.0.0 Enterprise Automation", -- Subtitle or script version tag
4 Logo = "rbxassetid://107101390544126", -- Custom Asset ID or Lucide Icon (set to nil or "" if no logo desired)
5 Theme = "Dark", -- Theme mode: "Dark" or "Light"
6 Accent = Color3.fromRGB(212, 175, 55), -- UI Accent Color (RGB)
7 ToggleKey = Enum.KeyCode.RightControl, -- Hotkey to toggle UI visibility
8 ConfigFolder = "valinc_quartz", -- Custom folder in workspace/ for saved JSON configs
9}
10
11local Window = ValincUi.CreateWindow(SCRIPT_CONFIG)
Options Breakdown
Title (string): Main hub title rendered in the window top bar.
Subtitle (string): Subtitle or version tag (e.g. "v4.0.0 Enterprise").
Logo (string): Custom Roblox Image Asset ID ("rbxassetid://107101390544126"), Lucide icon name ("sprout"), or "" for no logo.
Theme (string): "Dark" or "Light".
Accent (Color3): UI Accent Color Color3.fromRGB(...).
ToggleKey (Enum.KeyCode): Keybind to show/hide the window.
ConfigFolder (string): Folder name in Roblox workspace/ for storing auto-saved JSON settings.
Close & Minimize Behaviors#
- Close Confirmation: Clicking the close button triggers an overlay prompting verification. Terminating the script runs the destructor to safely clean up all events.
- Logo Minimize: Minimizing shrinks the window into a draggable floating logo widget.
Complete Code Example#
1local ValincUi = loadstring(game:HttpGet("https://cdn.vinzhub.com/scripts/Liblery%20Ui/VALINC-QUARTZ/57319f29599c47672f19f8d56d53ffbe/a6b3ccb1f04d1d7d06232a9c5d25779e2af89c12992bebae.lua"))()
2
3local SCRIPT_CONFIG = {
4 Title = "VALINC SYNDICATE",
5 Subtitle = "Quartz v4.0.0 Enterprise Automation",
6 Logo = "rbxassetid://107101390544126",
7 Theme = "Dark",
8 Accent = Color3.fromRGB(212, 175, 55),
9 ToggleKey = Enum.KeyCode.RightControl,
10 ConfigFolder = "valinc_quartz"
11}
12
13local Window = ValincUi.CreateWindow(SCRIPT_CONFIG)
14
15local Tab = Window:CreateTab("Overview", "home", "MAIN")
16local Section = Tab:CreateSection("Welcome")
17Section:CreateLabel("Hello, User! Welcome to the main panel.")