> For the complete documentation index, see [llms.txt](https://rpemotes-reborn.gitbook.io/rpemotes-reborn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rpemotes-reborn.gitbook.io/rpemotes-reborn/fundamentals/getting-set-up/hands-up.md).

# Hands Up

Hands up has multiple options that can be enabled in the `config.lua` file, these are as follows:

### Enabling Hands Up

To enable hands up change <mark style="color:red;">`false`</mark>

{% code title="config.lua" %}

```lua
HandsupEnabled = false,
```

{% endcode %}

to <mark style="color:green;">`true`</mark> in `config.lua`

***

### Changing Hands Up Keybind

By default the Hands Up keybind is set to **Y,** To change the keybind change the default **Y** value

{% code title="config.lua" %}

```lua
HandsupKeybind = 'Y',
```

{% endcode %}

to desired value in `config.lua`

{% hint style="warning" %}
Also set HandsupKeybindEnabled = <mark style="color:red;">false</mark>, to <mark style="color:green;">`true`</mark> in config.lua for the new set keybind to take effect.
{% endhint %}

Change <mark style="color:red;">`false`</mark> to <mark style="color:green;">`true`</mark> in `config.lua`.

{% code title="config.lua" %}

```lua
HandsupKeybindEnabled = false,
```

{% endcode %}

{% hint style="info" %}
Get the button string [here](https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/).
{% endhint %}

***

### Hands up in a vehicle.

To change whether or not players can perform Hands Up in a vehicle, change <mark style="color:red;">`false`</mark>&#x20;

{% code title="config.lua" %}

```lua
HandsupKeybindInCarEnabled = false,
```

{% endcode %}

to <mark style="color:green;">`true`</mark> in `config.lua`

***

### Extras

By default persistent emote after hands up is **Enabled**, this means the emote played previously before the handsup emote was played will continue after the handsup emote ends. To disable this change <mark style="color:green;">`true`</mark>

{% code title="config.lua" %}

```lua
PersistentEmoteAfterHandsup = true,
```

{% endcode %}

to <mark style="color:red;">`false`</mark> in `config.lua`&#x20;

***

| Keybind/Command | Action                 |
| --------------- | ---------------------- |
| Y               | Toggle hands up / down |
| /handsup        | Toggle hands up / down |

***
