i found this script by melba23 and its exactly what i wanted > link
#include <Misc.au3>
#include <MsgBoxConstants.au3>
Local $hDLL = DllOpen("user32.dll")
HotKeySet("{q}","_Start") ; Fire HotKey on q key
HotKeySet("{ESC}", "_Exit")
While 1
Sleep(10)
WEnd
Func _Start ()
; Look for w key
If _IsPressed("57", $hDLL) Then
; Only action if BOTH pressed
MsgBox($MB_SYSTEMMODAL, "", "Got it")
EndIf
EndFunc
Func _Exit()
DllClose