For my game I have compiled a list of all players on a spawn pad in a table. If I wanted to display all players on the list, how would I combine the names in the table into one string?
1 Like
table.concat(array,",")
1 Like