Your sprite may be on a rotation mode. Click on your sprite. Up by the name and picture there should be three buttons. One is a full circle with an arrow on the end, the second is a line with two arrows, and the third is a point. Click on the first button. Try running your porogram again and it should work.
Hope that helps! Post if it doesn't.
Offline
Try this:
[blocks]
<point in direction( 0)
<move( 10 )steps>
^^ this moves it up
<point in direction( 90
<move( 10 )steps>
^^ this moves it right
<point in direction( -90
<move( 10 )steps>
^^ this moves it left
<point in direction( 180
<move( 10 )steps>
^^ this moves it down
[/blocks]
Or you could use this:
[blocks]
<change x by( 1)
This moves it right
<change x by( -1
This moves it left
<change y by( 1
this moves it up
<change y by( -1
this moves down
[/blocks]
Does this help you any?
Offline