> For the complete documentation index, see [llms.txt](https://hirzigamingyt.gitbook.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hirzigamingyt.gitbook.io/configuration/block-spawn-delay.md).

# Block Spawn Delay

Specify the amount of time, in seconds, to wait before spawning a block. You can set it to values such as `1` or `0.1`, etc. if you put negative number it will be set to `0.1`

```javascript
config.delay = 0.5
```

### Example

Changing to spawn block after 1 second

```javascript
config.delay = 1
```

Changing to spawn block after 0.75 second

```javascript
config.delay = 0.75
```
