OnClientPaste

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This event triggers when user paste whatever (CTRL + V). This event isn't triggered if menu or console is visible or if any browser is focused, or if cursor is invisible.

Parameters

string clipboardText
  • clipboardText: a string representing the pasted value from clipboard.

Source

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

Example

Example show what player paste from clipboard.

addEventHandler("onClientPaste", root, function(text)
    outputChatBox("Clipboard value: "..text, 255,255,255)
end)

See Also

Client event functions