Entity:GetPos
Description
Gets the position of entity in world.
Returns
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 )