Keybinds
All controls in ControlPaneel V3 use FiveM's native RegisterKeyMapping system. This means keybinds can be changed by each player individually through their GTA V settings menu.
Default Keybinds
Emergency Lighting
| Action | Command | Default Key |
|---|---|---|
| Blue lights | blauwToggle | NUMPAD 7 |
| Traffic adviser left | directLinks | NUMPAD 4 |
| Traffic adviser center | directCenter | NUMPAD 5 |
| Traffic adviser right | directRechts | NUMPAD 6 |
| Cruise lights (steady blue) | steadyBlue | NUMPAD 9 |
| Work lights (steady white) | steadyWhite | NUMPAD 2 |
| Work lights left | steadyWhiteLeft | NUMPAD 1 |
| Work lights right | steadyWhiteRight | NUMPAD 3 |
Sirens
| Action | Command | Default Key |
|---|---|---|
| Siren on/off | sireneAan | NUMPAD 8 |
| Siren tone up | sirenUp | NUMPAD + |
| Siren tone down | sirenDown | NUMPAD - |
| Dual siren | DualsireneAan | Arrow UP |
| Rumbler siren | Rumblesirene | Arrow DOWN |
Other
| Action | Command | Default Key |
|---|---|---|
| Beacon (pitje) | pitjeToggle | PAGE UP |
| Water sprays | waterSprays | NUMPAD 3 |
| Left indicator | indicatorL | Arrow LEFT |
| Right indicator | indicatorR | Arrow RIGHT |
| Hazard lights | indicatorH | BACKSPACE |
UI Commands
| Action | Command | Default Key |
|---|---|---|
| Hide/show UI | hideUI | (type in chat) |
| Open settings | cp-settings | (type in chat) |
| Drag mode | CP-edit | (type in chat) |
| Reset UI position | CP-reset | (type in chat) |
Changing Keybinds (Players)
Players can change any keybind through the GTA V settings:
- 1
Open Pause Menu
Open the Pause Menu → Settings → Key Bindings
- 2
Find FiveM section
Scroll down to the FiveM section
- 3
Locate command
Find the command name (e.g.,
blauwToggle,sireneAan) - 4
Assign new key
Assign a new key
These changes are saved per-player and persist across sessions.
Changing Default Keybinds (Server Admin)
To change the default keybind that new players start with, edit shared/config.lua under Config.Keys. Change the key value for any entry:
Config.Keys = {
blauw = {
key = 'NUMPAD7', -- Change this to a different key
command = 'blauwToggle',
description = 'blauwToggle',
permission = 'lights',
light = 'blauw'
},
-- ...
}
Changing the default key in the config only affects new players who haven't yet used the keybind. Players who have already used or changed the keybind will keep their stored preference. This is a FiveM limitation of RegisterKeyMapping.
Key Name Reference
FiveM uses specific key names for RegisterKeyMapping. Common ones:
| Key Name | Keyboard Key |
|---|---|
NUMPAD0 – NUMPAD9 | Numpad digits |
ADD | Numpad + |
SUBTRACT | Numpad - |
UP, DOWN, LEFT, RIGHT | Arrow keys |
PAGEUP, PAGEDOWN | Page Up / Down |
BACK | Backspace |
HOME, END | Home / End |
F1 – F12 | Function keys |
For a full list, refer to the FiveM key mapping documentation.