OnClientKey

From Multi Theft Auto: Wiki

Jump to: navigation, search

This event triggers whenever the user presses a button on their keyboard.

Parameters

string button, bool pressOrRelease
  • button: This refers the button pressed.
  • pressOrRelease: This refers to whether they were pressing or releasing the key, true when pressing, false when releasing.

Source

The source of this event is the client's root element.

Example

This example will say in chatbox every time the user presses down a a key.

function playerPressedKey(button, press)
    if (press) then -- Only output when they press it down
        outputChatBox("You pressed the "..button.." key!")
    end
end
addEventHandler("onClientKey", root, playerPressedKey)

See Also

GUI events

Client event functions

FROM VERSION 1.3.1 ONWARDS