Emotes Script up for grab if anyone want, nothing interessting but easy to understand

Use it if you feel like you need it.
//#CLIENTSIDE
function onKeypressed(){
hideimg(1);
if (keydown2(17, true)&&keydown2(keycode(KEY YOU WANT HERE for exemple 1), true)) {
showimg( 1, "yourimage.png", player.x+2, player.y-5);
changeimgvis( 1, 1);
}
else {
hideimg(1);
if (keydown2(17, true)&&keydown2(keycode(KEY YOU WANT HERE for exemple 2), true)) {
showimg( 1, "anotherimage.png", player.x+2, player.y-5);
changeimgvis( 1, 1);
}
}
}
RESULT EXEMPLE:
//#CLIENTSIDE
function onKeypressed(){
hideimg(1);
if (keydown2(17, true)&&keydown2(keycode(1), true)) {
showimg( 1, "emotions_noob.png", player.x+2, player.y-5);
changeimgvis( 1, 1);
}
else {
hideimg(1);
if (keydown2(17, true)&&keydown2(keycode(2), true)) {
showimg( 1, "emotions_yay.png", player.x+2, player.y-5);
changeimgvis( 1, 1);
}
}
}