How do you set a key to held down , not just pressed once but held down for an amount of time because i dont want to have to spam my script with keydown(38) keyup(38)
or
could someone tell me how to ake a loop that spams that button only because i have more keys in my script and i dont want to spam them all btw here is the key spamming part of the script
SCAR Code:
KeyDown(9);
KeyUp(9);
wait(500);
KeyDown(32);
KeyUp(32);
wait(500);
KeyDown(9);
KeyUP(9);
KeyDown(38);
KeyUp(38);
KeyDown(38);
KeyUp(38);
KeyDown(38);
KeyUp(38);;
but i only want to spam this part
SCAR Code:
KeyDown(38);
KeyUp(38);
KeyDown(38);
KeyUp(38);
KeyDown(38);
KeyUp(38);
(im using for a game where you need to hold down certain keys)
All Help Appreciated !