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 optionsYou can get the current customization for a frame at any time like this:
TextPlus.GetCustomization(frame)
Some of the advanced customization options are described in detail on the next few pages.
Last updated