Hi, i have a question could i add text to a string so like
"Hello" + " whats up?"
-- or
script.Parent.name + " Cool"
Hi, i have a question could i add text to a string so like
"Hello" + " whats up?"
-- or
script.Parent.name + " Cool"
Yes you use 2 dots to concatenate the string
Like
script.Parent.Name = script.Parent.Name.." Cool"
Thank you so much! this actually worked