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