Game Freak: Most people don't like it when you ask questions in their post; besides, you have your own thread, and as far as I can tell, its a different problem than what Nerd is having.
Nerd: what bolt said. Here's a sample code:
`load images
load image "image1.bmp",1
load image "image2.bmp",2
load image "image3.bmp",3
`this is just to slow it down some...
`in your code, you probably don't want a sync rate of 5 :D
sync on : sync rate 5
`set initial x
x=1
`main loop
do
`inc the image number, and make sure its not above 3
inc x
if x=4 then x=1
`sprite it
sprite 1,screen width()/2,screen height()/2,x
sync
loop
something