I'm working on an assignment in which I have to make a sprite move. I've drawn each frame and I want to switch costumes to make it look like it's moving.
My block looks like this:
define walking
forever
switch costume to walk1
switch costume to walk2
And my code looks like this:
when *flag* clicked
forever
if key right arrow pressed? then
change x by 10
walking
But nothing is happening.