Description
Returns if this entity is the map entity Entity[0] worldspawn
.
Returns
1 boolean Whether this entity is the world entity.
Example
Stool boilerplate for the ignite tool
function TOOL:
LeftClick( trace )
local ent
= trace.Entity
if not IsValid( ent )
or ent:
IsPlayer()
or ent:
IsWorld()
then
return false
end
...
end Output: LeftClick will not run for no ent, invalid ents, players, or worldspawn.