Garry's Mod Wiki

Entity:IsPlayer

  boolean Entity:IsPlayer()

Description

Checks if the entity is a player or not.

Returns

1 boolean
Whether the entity is a player.

Example

Checks if two entities are players.

print( Entity( 1 ):IsPlayer() ) print( ents.FindByClass( "prop_physics" )[ 1 ]:IsPlayer() )
Output:
true false