Garry's Mod Wiki

Entity:GetPos

  Vector Entity:GetPos()

Description

Gets the position of entity in world.

Returns

1 Vector
The position of the entity.

Example

Utility command that would give you the position of the entity you are looking at.

concommand.Add( "entity_pos", function( ply ) local tr = ply:GetEyeTrace() if ( IsValid( tr.Entity ) ) then print( "Entity position:", tr.Entity:GetPos() ) else print( "Crosshair position:", tr.HitPos ) end end )