How to add multiple name to a part?

Hi, I want to add multiple name for a part with a script.
Exemple:

local exemple = Instance.new("NumberValue")
			exemple.Name = plr.UserId, "Number1"

Here, I try to add 2 names (in 1 name) for the part, but its dont work…
How could I do it?
Thanks to everyone who could help me!

1 Like

You have to do:

example.Name = tostring(plr.UserId).."Number1"
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.