Why is my project just a black screen this is infuriating

it wont load https://arcade.makecode.com/S52792-57325-13858-90699

2 Likes

It’s because of your enemy spawning script, there are so many rats that the simulation won’t even be able to run, so that’s why it’s a black screen. To fix this, rewrite your enemy spawning script so we don’t get a rat overdose.

2 Likes

Oh, I see what the problem is, arrays (lists) start at 0, not 1. All the 1s need to be 0s and the 2s need to be 1s, except in the repeat blocks of course.
It should look something like this:

2 Likes

Thats weird, i guess ill fix it.

1 Like