# Neeed help

**URL:** https://forum.kirupa.com/t/neeed-help/55977
**Category:** Uncategorized
**Created:** [June 29, 2004, 4:08pm UTC](https://forum.kirupa.com/t/neeed-help/55977 "2004-06-29T16:08:20Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Moopers](https://avatars.discourse-cdn.com/v4/letter/m/b782af/32.png) [@Moopers](https://forum.kirupa.com/u/Moopers)
#### Post date: [June 29, 2004, 4:08pm UTC](https://forum.kirupa.com/t/neeed-help/55977/1 "2004-06-29T16:08:20Z")

</div>

i’m new to flash and i’m just wondering if this hittest is correct cause it doesn’t work.

Basically my game is a guy who can move 8 directions and can fire a laser, but i can’t get it so that when the laser hits the enemy, he disappears

onClipEvent (enterFrame) {  
if (\_root.laser, hitTest(\_root.enemy)) {  
\_root.laser.removeMovieClip();  
\_root.enemy.removeMovieClip();  
}  
}
