# Client

{% hint style="success" %}
Exports are used to sync the zone script with the addon script
{% endhint %}

## StartCrawl

Player starts crawling

{% code title="Usage" %}

```lua
exports['highqez_crawldead']:StartCrawl()
```

{% endcode %}

***

## EndCrawl

Player stops crawling

{% code title="Usage" %}

```lua
exports['highqez_crawldead']:EndCrawl()
```

{% endcode %}

***

## IsCrawling

Check if the player is crawling

Return:

* Boolean:
  * `true`: the player is crawling
  * `false`: the player is not crawling

{% code title="Usage" %}

```lua
exports['highqez_crawldead']:IsCrawling()
```

{% endcode %}

***

## IsDead

Check if the player is dead

Return:

* Boolean:
  * `true`: the player is dead
  * `false`: the player is not dead

{% code title="Usage" %}

```lua
exports['highqez_crawldead']:IsDead()
```

{% endcode %}

***

## PauseAnim

Pause and Resume the crawling animation of the player

Attribute:

* Boolean:
  * `true`: pause the crawling animation
  * `false`: resume the crawling animation

<pre class="language-lua" data-title="Usage"><code class="lang-lua"><strong>exports['highqez_crawldead']:PauseAnim(true)
</strong></code></pre>

***
