If you don’t get what I mean. Here is an example:
for the second line i get
but for the 3rd line i get
I don’t know why it’s like that cuz it already printed my name and all i added was a string. Can you help? Thanks in advance
If you don’t get what I mean. Here is an example:
for the second line i get
but for the 3rd line i get
I don’t know why it’s like that cuz it already printed my name and all i added was a string. Can you help? Thanks in advance
When you print an instance like player by itself tostring() is automatically done on it.This is done with luau built in metatable
However when you concatenate with “…” it doesn’t so you will need to use tostring() to convert it to a string
Um…I just started scripting so… Can you like give an example
Chang the player
In the second print to player.Name
. It’ll fix it. As your combining the player instance it self. Not the name. So just add .name at the end to fix
Thanks!!! It worked. (characters)
No problem. Glad i could help.