Yes, you’ll just need an among us guy that’s just standing in its first frame, and walking in every other frame while facing the right side, and plugin this code:
var speed = 19 //Speed set to 19
if(isKeyDown('right'){
this.x+=speed;
this.scaleX=1;
this.play();
}
if(isKeyDown('left'){
this.x-=speed;
this.scaleX=-1;
this.play();
}
if(isKeyDown('up'){
this.y-=speed;
this.play();
}
if(isKeyDown('down'){
this.y+=speed;
this.play();
}
if(isKeyDown('right')||isKeyDown('left')isKeyDown('up')isKeyDown('down')){}else{
this.gotoAndStop(1);
}
If you need an example, I can provide you with an Among Us example (I never drew among us guys on wick before), but you’ll have to wait sometime cause it’s night in my timezone