Hwey Flashkit.

Alright, Im making an Overhead shooter in flash. (completely multiplayer)

So I have the movement, shooting, grenade throwing and wall collision down for player 1 and 2, but now I'm having trouble with the scoring/respawning script.

So heres the script I've come up with, but I know it doesnt work. Its in the movieclip char2 (this is all after the movement and shooting, so yes there is the onClipEvent (enterFrame) { function before this) :

if(_root.billetp1.hitTest(this)){
_root.score1 +=1;
unloadMovie(_root.billet);
_root.gotoAndPlay (6) //frame 6 is in the movieclip, its where he falls back
_root.reset // im looking for something to reset the frame but keep the score)
}
}