How to check if key is pressed

So I need to check if a the left control key is pressed, here is how I am going about it…

Code - function checkKeyPress() { if(Event.current.type == EventType.KeyDown) { if - Pastebin.com

I would really lvoe to know how to do this… Any suggestions?

if ( Input.GetKeyDown(KeyCode.LeftControl) == true )

Look at the documentation for Input class methods.