> For the complete documentation index, see [llms.txt](https://docs.novarietygames.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.novarietygames.com/websitecreator/luascript/delay.md).

# delay

Delay is just LUA native wait

Delay takes **1** numeric argument called seconds. Delay yields the entire thread until the time is completed.

```lua
print("Hello!")
delay(1) -- wait 1 second
print("Hello after 1 second") -- Prints after 1 second
```
