So I have something like this:
TextLabel.Text = "Something: " .. <font color = "rgb(255,100,100)">Variable</font>
How would I do this?
So I have something like this:
TextLabel.Text = "Something: " .. <font color = "rgb(255,100,100)">Variable</font>
How would I do this?
"Something: " .. "<font color=\"rgb(255,100,100)\">Variable</font>"
Just need to escape the " in the string using backslash.