Need help chaging textlabel's text

I need help, sorry for asking again, so I want to change the textlabel’s text according to the value, I have no problem but I’d like to add a another text to the text, but I do not know how.

Basically Something Like This:

PlateText.Text = (OwnerValue.Value,"Test")
1 Like

You’ll want to concatenate the string like this:

PlateText.Text = OwnerValue.Value.."Test"

Is OwnerValue a string value?

If its not, convert it to a string:

PlateText.Text = tostring(OwnerValue.Value).."Test"
1 Like

Thank you so much, I’m a bit new to it and I only know the print

1 Like