Garry's Mod Wiki

Entity:IsWorld

  boolean Entity:IsWorld()

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 !ent or !ent:IsValid() or ent:IsPlayer() or ent:IsWorld() then return false end ...
Output: LeftClick will not run for no ent, invalid ents, players, or worldspawn.