I just tried to upload my game with 24 scripts and 8 sprites. When I try playing game online I can see only 3 sprites, while others are invisible. Game works just fine on my PC. Are there any things I should do before upload?
Offline
Just took a look at your game...you have a lot of things working off of the X scroll value using IF X Scroll = (some value). That's a little risky as your project might change the value of X Scroll right over the target value so fast that the other parts of the project don't catch it. Even if that is not the case, trying for an exact match on a number can sometimes backfire because of the way that computers store numbers. A safer method would be to use the inequality operators...something like IF X Scroll > (some value). Give that a try and see if it helps.
Offline