# Sleep
TIP
sleep(<time>)
- Pauses the command from running, then continues to run it again after a period of time has passed.
# Parameters
<time>
The time in seconds to pause the command as int or float
# Example
1: sendMessage($player$, 'See you in 1 minute.')
2: sleep(60)
3: sendMessage($player$, 'Hello, 1 minute has passed.')