IsShiftPressed
From Onset Developer Wiki
Description
Check if the client has pressed the Shift key
Syntax
IsShiftPressed()
Parameters
- This function has no parameters.
Return Value
- Returns true if pressed, otherwise false
Example
AddEvent("OnKeyPress", function(key)
if IsShiftPressed() and key == 'R' then
AddPlayerChat("You have pressed Shift + R")
end
end)