:Radiobox

Preview
type Radiobox = {
	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:

:Radiobox({
	Value = true,
	Label = "Check box",
	Callback = function(self, Value: boolean)
		print("Ticked", Value)
	end
})

Theme colors:

Tag
Affects

FrameBg

Background color

CheckMark

Checkmark's background and image color

Last updated