Can somebody help me? I need a script that tell how many player is left in server
you can do this, it will update every time someone leaves/joins:
game.Players.PlayerAdded:Connect(function() local players = game.Players:GetPlayers() print(#players) end) game.Players.PlayerRemoving:Connect(function() local players = game.Players:GetPlayers() print(#players) end)