Hi
I am new to scratch and stuck building a space invaders game.
The ship works and can fire at a sprite.
But When it hits the sprite nothing happends.
I have tried more than one solution without any luck so far.
Any advise would be great:
This is the alien sprite page:
<when green flag clicked>
<go to x )y
<show>
<forever>
<if><touching[ sprite 2
<hide>
Offline
Mmhm
The if block checks straight away, for example
Green flag clicked
if bla bla bla
That means it would check if it happend straight away. Forever if checks over and over again.
If=Straight away
Forever if=Anytime during the program
Offline