This is a repaired project for BlueClayman1 Actually, I got a bit carried away and pretty much rewrote 80% of the scripts. Sorry about that. The root problem was that the Bombbot explosion, when the Ghost effect was applied, was matching the color of the base and triggering Penetration damage on the Guy. I cured this by making the base it's own sprite called Base and getting rid of the color test entirely. I also found problems with the gun and the bullets. The bullet number was being set by Guy but also being set by the bullets themselves (in some cases) which was confusing things. I put all the bullet control in the gun scripts. There was also a lot of duplication of scripts. In general, you should try not to duplicate code, it just gives you more code for there to be errors in. Defining some messages allowed me to reduce the code amount significantly. Finally, I found that the addition of the Bombbots actually made the game too easy as they can be used to kill lots of robots. To cure this problem, I made all the robots speed up every 20 seconds up to a maximum speed of 3X normal speed. This is being set in the scripts for the gun. Hopefully you find this version useful.... Paddle2See