Documentation Index
Fetch the complete documentation index at: https://docs.sirius.menu/llms.txt
Use this file to discover all available pages before exploring further.
Label
local Label = Tab:CreateLabel("Label Example", 4483362458, Color3.fromRGB(255, 255, 255), false) -- Title, Icon, Color, IgnoreTheme
Lucide icon support
You can use a Lucide icon name in place of a Roblox image ID.
local Label = Tab:CreateLabel("Label Example", "rewind")
Lucide icons and Roblox image IDs are detectable by game anti-cheats. If you need your script to be undetectable, use getcustomasset() instead. See Secure Mode for details.
Update a label
Label:Set("Label Example", 4483362458, Color3.fromRGB(255, 255, 255), false) -- Title, Icon, Color, IgnoreTheme
Paragraph
local Paragraph = Tab:CreateParagraph({Title = "Paragraph Example", Content = "Paragraph Example"})
Update a paragraph
Paragraph:Set({Title = "Paragraph Example", Content = "Paragraph Example"})
Divider
local Divider = Tab:CreateDivider()
Update a divider
Toggle the divider’s visibility.
Divider:Set(false) -- Visible