ok ive got this movieclip "hitbox P2" right now its just on its own in the time line and its just told to move left until it hits the fighter's hurt box so,
Code:
onClipEvent(enterFrame) {
	
	if (attackActive == true )
		{
			this._x += 500;
		}
		
	
	
	if(this.hitTest(Object(this._parent).fighter.hurtBoxP1)){
		
		attackActive = false;

                }
Capture.PNG

it works fine but the only problem is im using more than one hitbox and thats confusing the hittest alot so it does nothing
so my problem is like is there a line of code that would like let the hit test know its going to be hitting mutiple of the same object or should i just make like 6 new movie clips and have 7 seprate hitboxes
thanks in advance to anyone who responds