Im using:
for _,player in next, game.Players:GetChildren() do
But I need to get the number of children there are.
if you wanna get the current number of players
print(game.Players.NumPlayers)
or if you wanna loop through every player
for i, v in pairs(game.Players:GetPlayers()) do --BLAH end
that +1 :D