Hi, I am new to scratch and I am making a project at school and I am basing it on Toss the turtle another flash game, I want to make it so if script 1 touches a colour it will move script 2 PLEASE HELP ME!
Lith.
Offline
Hi Lith_decim!
It looks like what you want is the
<touching color [#6A0B18]?>to sense when one is touching. After that, you should use a broadcast.
Offline
First of all, it's Sprite, not Script. Sprites are the moving images, scripts are the blocks stacked, the code.
What you want to do would be accomplished by:
when gf clicked// in sprite 1 forever if <touching color [#00FF00]?> broadcast [move it! v] when I receive [move it! v]// in sprite 2 move (10) steps//or whatever motion you need
Offline
When gf clicked forever if <touching color [#00FF00]?> broadcast [move] and wait end end
When I Recieve [move] move (10) steps
Last edited by 162597 (2012-03-07 11:49:30)
Offline
162597 wrote:
When gf clicked forever if <touching color [#00FF00]?> broadcast [move] and wait end endWhen I Recieve [move] move (10) steps
This one is right
Offline
Thanks guys
Offline