How to use rich text with multiple tags

how do I apply multiple tags on rich text? like for example I want the color tag + font size

1 Like

local aString = "<font size=\"50\"><font color=\"#FFA500\">Hello world!</font></font>"

Just remember to escape the " and ’ characters so you don’t cut off the string short. You can escape characters like I did, by using the backslash character.

3 Likes