I made want it to combine a percentage of something. If I remove the percentage part, it works? Although if it's there, I get this error: attempt to call field 'Value' (a number value).
This is the script:
script.Parent.Text = "Pollution Levels : " .. workspace.GlobalStats.Pollution.Value "%"
Try using
script.Parent.Text = "Pollution Levels : "..workspace.GlobalStats.Pollution.Value.."%"
What you did was you did was:
string..num string
instead of string..num..string
(You forgot to connect the string with ".." and used " " instead)
Also, you put spaces in between the values and ".." don't know if it changes anything but it's unnecessary