:Checkbox

type Checkbox = {
Label: string?,
Value: boolean,
NoAnimation: boolean?,
TickedImageSize: UDim2,
UntickedImageSize: UDim2,
Callback: ((...any) -> unknown)?,
--// Functions
SetValue: (self: Checkbox, Value: boolean, NoAnimation: boolean) -> ...any,
Toggle: (self: Checkbox) -> ...any
}Example usage:
Theme colors:
Tag
Affects
FrameBg
Background color
CheckMark
Checkmark's background and image color
Last updated