of     1   

carlito1236
#186269019Monday, March 28, 2016 9:27 PM GMT

How can I list players in order of how early they join? Like first player joins is "Player1" Second player joins is "Player2" ect...
carlito1236
#186270174Monday, March 28, 2016 9:42 PM GMT

Anyone??
spinywind
#186270244Monday, March 28, 2016 9:43 PM GMT

strings
carlito1236
#186270355Monday, March 28, 2016 9:45 PM GMT

What's next? If I use strings...
TimeTicks
#186270370Monday, March 28, 2016 9:45 PM GMT

tables. Insert the players into a table then for how many table values there are just do player.Name == "Player"..i + 1
TimeTicks
#186270413Monday, March 28, 2016 9:45 PM GMT

or actually just ..i if you insert the player into the table before the loop
carlito1236
#186270615Monday, March 28, 2016 9:48 PM GMT

I don't want to name them, I want to make a string as their name, but I want them in order(Player1,Player2...)
TimeTicks
#186270862Monday, March 28, 2016 9:51 PM GMT

Like I said. local tab = {} local i = 0 game.Players.PlayerAdded:connect(function(player) i = i + 1 local string = "Player"..i table.insert(tab,string) end)
carlito1236
#186272082Monday, March 28, 2016 10:08 PM GMT

Thank you so much!

    of     1