If i like want text to be a value and then poop and then another value, how would i do that?
script.Parent.Text = ..Player.Name " Poop" .. Player.userId
You almost had it. Try this.
script.Parent.Text = Player.Name.. "Poop" ..Player.userId
Well, what you're using is reffered to as Concatenation. It's used to put more than one string together, in one string. It's signaled by ..
, as you already know. The problem with your line is that you for got ..
after Player.Name
. Here is your fixed code:
script.Parent.Text = ..Player.Name.. " Poop" .. Player.userId