Entity:SetNextClientThink
Example
Prints 'Hello, World!' in console and sleeps for a second.
function ENT:Think()
print("Hello, World!")
self:SetNextClientThink( CurTime() + 1 )
return true -- Note: You need to return true to override the default next think time
end
Output: Hello, World! every second the entity exists in the world.