This is a live score updater for a soccer game. I want to make the scores look different so you can tell whose is what teams.
Now for some reason, this is what it shows after it gets set.
local textlabel = script.Parent
local scoreUpdate = game.ReplicatedStorage.RemoteEvents.ScoreUpdate
-- Use RichText for Rich Text formatting
textlabel.RichText = true
scoreUpdate.OnClientEvent:Connect(function(rv, bv)
local redvalue = tostring(rv)
local bluevalue = tostring(bv)
-- Set the Text with Rich Text formatting
textlabel.Text = '<font color="#ff5050">' .. redvalue .. '</font> - <font color="#29dbff">' .. bluevalue .. '</font>'
end)