Skip to content
BRABO CustomsBRABO CUSTOMS

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

ActionCommandDefault Key
Blue lightsblauwToggleNUMPAD 7
Traffic adviser leftdirectLinksNUMPAD 4
Traffic adviser centerdirectCenterNUMPAD 5
Traffic adviser rightdirectRechtsNUMPAD 6
Cruise lights (steady blue)steadyBlueNUMPAD 9
Work lights (steady white)steadyWhiteNUMPAD 2
Work lights leftsteadyWhiteLeftNUMPAD 1
Work lights rightsteadyWhiteRightNUMPAD 3

Sirens

ActionCommandDefault Key
Siren on/offsireneAanNUMPAD 8
Siren tone upsirenUpNUMPAD +
Siren tone downsirenDownNUMPAD -
Dual sirenDualsireneAanArrow UP
Rumbler sirenRumblesireneArrow DOWN

Other

ActionCommandDefault Key
Beacon (pitje)pitjeTogglePAGE UP
Water sprayswaterSpraysNUMPAD 3
Left indicatorindicatorLArrow LEFT
Right indicatorindicatorRArrow RIGHT
Hazard lightsindicatorHBACKSPACE

UI Commands

ActionCommandDefault Key
Hide/show UIhideUI(type in chat)
Open settingscp-settings(type in chat)
Drag modeCP-edit(type in chat)
Reset UI positionCP-reset(type in chat)

Changing Keybinds (Players)

Players can change any keybind through the GTA V settings:

  1. 1

    Open Pause Menu

    Open the Pause MenuSettingsKey Bindings

  2. 2

    Find FiveM section

    Scroll down to the FiveM section

  3. 3

    Locate command

    Find the command name (e.g., blauwToggle, sireneAan)

  4. 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 NameKeyboard Key
NUMPAD0NUMPAD9Numpad digits
ADDNumpad +
SUBTRACTNumpad -
UP, DOWN, LEFT, RIGHTArrow keys
PAGEUP, PAGEDOWNPage Up / Down
BACKBackspace
HOME, ENDHome / End
F1F12Function keys

For a full list, refer to the FiveM key mapping documentation.