You could use the sleep[] function to wait a given number of frames. "sleep[60]" would delay for approximately one second.
A different approach for timing (which could be more accurate over longer time periods) would be to use `sys.now` or `sys.ms` to record a starting time and then consult them periodically to determine how much time has passed, possibly using "sleep[]" to delay between checks. (See: the System interface)