Hi, I am trying to make the game give a point everytime the ball touches the girl. I created a variable for score, and set a conditional to increase the score everytime the ball bounces of the girl, but when I test it in the debug, it does not change the score correctly. Thanks for any help you all can give, link is below.
I believe that bounceOff will cause the ball to bounce, but it isn’t an event you would put in a conditional block to detect the bounce. Instead, try the “isTouching” block.
I moved the “isTouching” block above the bounceOff block and the score works now. I think the ball was immediately bouncing and then before the isTouching block could run, the ball was no longer touching (milliseconds later).