This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-02-09 10:34:43

Maynardca
New Scratcher
Registered: 2012-02-09
Posts: 1

I Need Help!!

I am working on a project that I want to look like Minesearch 2 but its like football. Instead of diamonds, i want him to pick up footballs. I dont know how to fix his movement to where he goes by himself and you just need to hit the left and right arrow keys to move him.

PLEASE HELP!



if someone could send me the right script to where when he hits the outside he dies.

Offline

 

#2 2012-02-09 23:22:26

Jonathanpb
Scratcher
Registered: 2008-07-25
Posts: 1000+

Re: I Need Help!!

You mean something like this?

when flag clicked
forever
 move (5) steps
 if <key [left arrow v] pressed?>
  turn ccw (3) degrees
 end
 if <key [right arrow v] pressed?>
  turn cw (3) degrees
 end
 if <touching [Border sprite v]?>
  broadcast [You lose v]
  stop script
 end
end

Last edited by Jonathanpb (2012-02-09 23:24:24)


"Human beings... must have action; and they will make it if they cannot find it.
-Charlotte Brontë

Offline

 

Board footer