How would I detect if a player is in arena?

So I’ve got a game with rounds, and I want to detect if there are any players left in the arena, and if not, then to start a new round. How would I do this?

When a player dies, add them to a team called “Dead” or give them a “Dead” value or something, then check for players without the “Dead” value or players that are in the “Alive” team.

Make a bool value called “FoundInArena” Script it so when the player touches the arena hitbox the value is true if the player leaves the bool is false

1 Like

I’f you need help I’ll help you

Thanks! Question, should I do
players:GetPlayerFromCharacter(part.Parent)
getting the model, or do
players:GetPlayerFromCharacter(part.Parent:FindFirstChild(“Humanoid”)?

players:GetPlayerFromCharacter(part.Parent)