Changing default keybinds

How to change keybinds.

We know that you may use some of the default keybinds by default so here's some explanation how to do it.

Firstly visit /shared/config.lua file. Find:

Config.KeyBinds = {
    ['menu'] = {
        description = 'UI Menu',
        key = 'F9'
    }, ['cancel_progressbar'] = {
        description = 'Cancel Progressbar',
        key = 'X'
    }, ['aio_menu'] = {
        description = 'AIO Menu',
        key = 'F1'
    }, ['seatbelt'] = {
        description = 'Seatbelt',
        key = 'B'
    }, ['cinematic_mode'] = {
        description = 'Open Cinematic Mode',
        key = 'F6'
    }, ['cinematic_focus'] = {
        description = 'Click to focus on Cinematic Mode',
        key = 'LSHIFT'
    }
}

And here's the whole keybinds. Make sure to change description along with key!

Last updated