So for example, how to I put the value C0deCakes.Name to a string in a table so it will show up like this:
1 | example = { "C0deCakes" } |
1 | local names = { } |
2 | game.Players.PlayerAdded:connect( function (player) |
3 | table.insert(names, player.Name) |
4 | print (table.concat(names, '' )) |
5 | end ) |
I get the Idea of inserting players name into the table, right?
1 | local names = { } |
2 | table.insert(names, "C0deCakes" ) |