Methods

Method
Argument (Set) - Return (Get)

ColorPicker.Text

string

ColorPicker.TextColor

Color3

ColorPicker.RichText

boolean

ColorPicker.Font

EnumItem

ColorPicker.Visible

boolean

ColorPicker.ReadOnly

boolean

ColorPicker.Color

Color3

ColorPicker.Changed

N/A

ColorPicker:Destroy()

N/A

Example

Set

local ColorPicker = Tab:ColorPicker({
    Text = "ColorPicker"
})

Button.Text = "New Button"

Get

local ColorPicker = Tab:ColorPicker({
    Text = "ColorPicker"
})

print(ColorPicker.Text)

Last updated