ballotOptions

The options are provided in a table. You may provide any amount of options you like. Those not provided will fallback to their respective defaults.

Example:

Text.Create(
	frame,
	"This text is awesome!",
	{ -- Options (optional).
		Size = 24,
		Color = Color3.fromRGB(255, 255, 255),
		XAlignment = "Center",
		YAlignment = "Center"
	}
)

You can get the current options for a frame at any time like this:

Text.GetOptions(frame)
circle-info

The options received from the GetOptions function will always be valid, and will contain all options except booleans set to false and those that aren’t mandatory.

Last updated