Keys::isUp

From RAGE Multiplayer Wiki

Function to check if specific key is released.

Syntax

mp.keys.isUp(keyCode);

Required Argument

Return Value

  • Boolean - true if the key specified is released, otherwise false.

Example

An interval that runs every half-second and outputs the state of the F2 key (pressed or not).

Client-Side
setInterval(() => {
    if (mp.keys.isUp(113) === true) { // 113 is the key code for F2
        mp.gui.chat.push('F2 key is released!');
    } else {
        mp.gui.chat.push('F2 key is not released!');
    }
}, 500);

See also