:RadioButton

type RadioButton = {
	Icon: string?,
	IconRotation: number?,
	Callback: ((...any) -> unknown)?,
}

Example usage:

:RadioButton({
	Icon = 18754976792,
	Callback = function(self)
		print("Hello world!")
	end
})

Last updated