How to concatenate rich text

So I have something like this:

TextLabel.Text = "Something: " .. <font color = "rgb(255,100,100)">Variable</font>

How would I do this?

2 Likes
"Something: " .. "<font color=\"rgb(255,100,100)\">Variable</font>"

Just need to escape the " in the string using backslash.

1 Like