timer.Exists
Example
Checks it the timer exists
if ( timer.Exists( "TimerName" ) ) then
-- The timer exists
print( "The timer exists" )
else
-- The timer doesn't exist
print( "The timer does not exist!" )
-- Create a timer
timer.Create( "TimerName", 1, 0, function() print( "I'm a Timer" ) end)
end
Output:
The timer does not exist!
I'm a Timer
I'm a Timer
I'm a Timer
I'm a Timer