I'm trying to use rich text in roblox, but whenever I try to use the font size tag, it never works
script.Parent.Text = "<font size=50>big</font>"
What I see on the label:
<font size=50>big</font>
You are missing the quotation marks around the 50. It should look like this:
script.Parent.Text = '<font size="50">big</font>'