Skip to content

ChatPlus in action:

ChatPlus makes it easy to create formatting like this to let you focus on how it looks rather than if it works.


Editing ChatPlus' Special Formatting

ChatPlus has a special way of hanlding formatting to make it easy to customize how your chat looks. This method of changing formatting can be used anywhere in ChatPlus for formatting anything. You can read more about the specifics here.

Editing the formatting of text with this method is as simple as follows:

-- You could have a chat tag with a custom name color...
local FormattingTable = {
    {"NameColor", Color3.fromRGB(255, 255, 255)},
    {"Tags", {{TagText = "Cool Person", TagColor = Color3.fromRGB(255, 0, 0)}}}
}

-- Or some big wacky text!
local FormattingTable2 = {
    {"Font", Enum.Font.Cartoon},
    {"TextSize", 32}
}

-- Or maybe... both!
local FormattingTable3 = {
    {"NameColor", Color3.fromRGB(255, 0, 0)},
    {"Tags", {{TagText = "Super Cool Person", TagColor = Color3.fromRGB(0, 255, 0)}}},
    {"Font", Enum.Font.Fantasy},
    {"TextSize", 32}
}

A single table for everything! Nice.

Want to try ChatPlus? Learn how to get started here.