Methods

Method
Argument (Set) - Return (Get)

Tab.Title

string

Tab.TextColor

Color3

Tab.RichText

boolean

Tab.Font

EnumItem

Tab.Visible

boolean

Tab.Image

number

Example

Set

local Tab = Window:New({
    Title = "Tab"
})

Tab.Title = "New Tab"

Get

local Tab = Window:New({
    Title = "Tab"
})

print(Tab.Title)

Last updated