Click, and make the moveclip play

i want it so when i shoot(click) a person, the MC plays the death clip.

Okay…

[AS]
if(_root.bullet.hitTest(_root.monster))
{
_root.monster.gotoAndPlay(“death”);
}
[/AS]

There you go. Just make the starting frame for the death scene have a name and make it death.

playamarz :player: