Luau Roblox Open Source

Elements

WindUI provides a rich set of pre-built UI components.

Tab
Organize content into navigable sections
Section
Group elements together
Paragraph
Display text information
Toggle
On/off switch and checkbox variants
Button
Clickable actions with colors and icons
Slider
Numeric range input with tooltip
Dropdown
Single/multi select with search
Input
Text fields and textarea variants
Colorpicker
Full color selection with transparency
Keybind
Keyboard shortcut binding input
Notifications
Display toast notifications to the user

Quick Start

Load WindUI in your script with a single line.

main.client.lua
local WindUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/Footagesus/WindUI/main/dist/main.lua"))()

local Window = WindUI:CreateWindow({
    Title = "My Hub",
    Folder = "myhub",
    Icon  = "solar:folder-2-bold-duotone",
})