NightOfHorror wrote: One, what does ++ do
++ increments a variable. So if var is equal to 0, it will increase var by 1. Essentially it is the same thing as doing var+=1; (there is a slight difference though, as it increases the variable after the line is processed).
NightOfHorror wrote: is there an automatic 30 frames a second in GE?
Not quite sure what you mean. gE sets the game to 30fps by default, but you can change it if you want.
NightOfHorror wrote:last question. Sometimes if I hit the ball, it goes out of the playing area, or it gos in this block that I made in each corner. What is wrong with it. Is it just how I put in physical response. Everything is 1.
This probably has to do with your ball moving at too high speeds, and causes it to move through the walls. You can usually limit this by either setting a max speed, or by increasing the size of your walls.