Skip to content

Instantly share code, notes, and snippets.

SLIDER
Tab:Slider({
Title = "Adjust Value",
Desc = "Change number smoothly",
Value = { Min = 0, Max = 100, Default = 50 },
Step = 1,
Callback = function(value)
print("Slider value:", value)
end
})
Tab:Toggle({
Title = "Enable Feature",
Desc = "Turns something on/off",
Default = false,
Callback = function(state)
print("Toggle state:", state)
end
})
Tab:Toggle({
Title = "Enable Feature",
Desc = "Turns something on/off",
Default = false,
Callback = function(state)
print("Toggle state:", state)
end
})
@XLIZZX
XLIZZX / Add a Button
Created November 11, 2025 17:04
WindUI - Add a Button
Tab:Button({
Title = "Click Me",
Desc = "Runs something",
Icon = "mouse-pointer-click",
Color = Color3.fromRGB(50, 150, 255),
Callback = function()
print("Button clicked!")
end
})
@XLIZZX
XLIZZX / Create Tab
Created November 11, 2025 17:03
WindUI - Create Tab
local Tab = Window:Tab({
Title = "My Tab",
Icon = "home",
})
@XLIZZX
XLIZZX / Create window
Created November 11, 2025 17:01
WindUI addon - Window
local WindUI = loadstring(game:HttpGet("https://raw.githubusercontent.com/Footagesus/WindUI/refs/heads/main/dist/main.lua"))()
local Window = WindUI:CreateWindow({
Title = "Example Window",
Author = "YourName",
Icon = "bird",
})