Customization

The customization works with a table, where you can provide any customizations you want. You don't have to provide all, or even any, because they all have defaults.

You use it like this:

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

You can see all customization options, and their types and defaults, here:

Customization options

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

TextPlus.GetCustomization(frame)

The customization received from the GetCustomization function will always be valid, and will contain all customization options except booleans set to false and those that are optional.

Some of the advanced customization options are described in detail on the next few pages.

Last updated