Using an IntValue and increasing/decreasing the player count
Method 3
local players = game.Players:GetChildren()
local player_count = 0
while wait(1) do
for i, player in pairs(players) do
player_count = player_count + 1
print("There are "..i.." players in the game")
end
end