Garry's Mod Wiki

Player:Alive

  boolean Player:Alive()

Description

Checks if the player is alive.

Returns

1 boolean
Whether the player is alive

Example

Loops through all the players and kills alive ones.

for i, ply in ipairs( player.GetAll() ) do if ply:Alive() then ply:Kill() end end