Until the compiling of your scenario is resolved, it is best not to have your scenario uploaded on the Greenfoot site. The first thing I noticed upon inspection of your code, is that in the world class constructor, you have some code that should probably be in the act() method of the world, not in the constructor. The code I am refering to is:EDIT: I do not know why this posted 3 times!?!?
if(ball.getY() > paddle.getY()) { count++; } if(count == 1) { removeObject(life3); } if(count == 2) { removeObject(life2); } if(count == 3) { removeObject(life); }