#Why is this code outputting an error, ServerScriptService.RoundScript128 invalid value (Instance)
10 messages · Page 1 of 1 (latest)
10 messages · Page 1 of 1 (latest)
local SurviverCount = table.getn(names)
local namesconcat = (table.concat(names, ","))
print(namesconcat)
Per the error
You prb attempted to concat an instance
Which obviously you cant
An instance is not text
When there is only one player it works though