-- Tab Creation Code --
local Tab = Window:CreateTab("Tab Example", 4483362458) -- Title, Image
-- Section Creation Code --
local Section = Tab:CreateSection("Section Example")
-- Creating a Button Code --
local Button = Tab:CreateButton({
Name = "Button Example",
Callback = function()
-- The function that takes place when the button is pressed
end,
})
-- Creating a Paragraph Code --
local Paragraph = Tab:CreateParagraph({Title = "Paragraph Example", Content = "Paragraph Example"})
-- Creating a Divder Code --
local Divider = Tab:CreateDivider()
To embed this project on your website, copy the following code and paste it into your website's HTML: