Rich text doesnt work

Hello, So i trying to do rich text but it doesn’t work

I want the chosenMap.Name become rich text but doesn’t work

status.Value = '<font color=\rgb(255, 165,0)\>'.."&lt;" .. chosenMap.Name .. '&gt;'..'</font> has been chosen!'

because you’re not doing it as text , you’re doing it as value, try textlabels and enable richtext.

Already tried those, but still doesn’t work

You aren’t using the ‘font color’ tag properly
You are supposed to use double quotes not backslashes
Ex:

'<font color="rgb(255,0,255)"> My Amazing Map </font> is the best'

Edit: link to rich text article

status.Value = "<font color=\"rgb(255, 165,0)\">"..chosenMap.Name.."</font> has been chosen!"
4 Likes

hm it seems like its working. Thank you very much. I appreciated it :wink: