IsAltPressed

From Onset Developer Wiki
Revision as of 16:11, 19 November 2019 by 28days (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
IsAltPressed

Type: Function
Context: Client
Introduced: v1.0

Description

Check if the client has pressed the Alt key

Syntax

IsAltPressed()

Parameters

  • This function has no parameters.

Return Value

  • Returns true if pressed, otherwise false

Example

AddEvent("OnKeyPress", function(key)
	if IsAltPressed() and key == 'R' then
		AddPlayerChat("You have pressed Alt + R")
	end
end)

See also