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
}
:Radiobox({
Value = true,
Label = "Check box",
Callback = function(self, Value: boolean)
print("Ticked", Value)
end
})