# Game Not Working? Orange spinning wheel

**URL:** https://forum.makecode.com/t/game-not-working-orange-spinning-wheel/7002
**Category:** Help
**Created:** [March 25, 2021, 5:40pm UTC](https://forum.makecode.com/t/game-not-working-orange-spinning-wheel/7002 "2021-03-25T17:40:27Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![nmyersnm1](https://avatars.discourse-cdn.com/v4/letter/n/bcef8e/32.png) [@nmyersnm1](https://forum.makecode.com/u/nmyersnm1)
#### Post date: [March 25, 2021, 5:40pm UTC](https://forum.makecode.com/t/game-not-working-orange-spinning-wheel/7002/1 "2021-03-25T17:40:27Z")

</div>

Hi all,  
A student of mine create a pretty simple game. The code looks correct to me, but MakeCode Arcade keeps saying there is an error. It won’t even let us publish the project with the share button. The simulator just keeps showing an orange spinning wheel on the screen. Weirdly, we rebuilt the game in a new project using the EXACT same code and it worked just fine.

Any advice on what might have caused the problem?

 ![Code](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/2X/1/1a1d38e6918b1f8bd4677b30a876928003a264d1.png) ![arcade-Not-Working](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/2X/6/6e889fc440d3a2374704c7da0a30f97e208da131.png)

---

<div class="post-metadata">

### Author: ![richard](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/richard/32/5417_2.png) [@richard](https://forum.makecode.com/u/richard)
#### Post date: [March 25, 2021, 5:42pm UTC](https://forum.makecode.com/t/game-not-working-orange-spinning-wheel/7002/2 "2021-03-25T17:42:58Z")

</div>

This is a MakeCode bug; thanks for reporting it!

It looks like you created a sprite kind with the name “catch”, which is a JavaScript keyword and caused the JavaScript code we create to be invalid. The bug is that our blocks to JS compiler should have caught that and either changed the name or not allowed it.

---

<div class="post-metadata">

### Author: ![richard](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/richard/32/5417_2.png) [@richard](https://forum.makecode.com/u/richard)
#### Post date: [March 25, 2021, 5:46pm UTC](https://forum.makecode.com/t/game-not-working-orange-spinning-wheel/7002/3 "2021-03-25T17:46:47Z")

</div>

Here’s the issue on GitHub: [https://github.com/microsoft/pxt-arcade/issues/3363](https://github.com/microsoft/pxt-arcade/issues/3363)

---

<div class="post-metadata">

### Author: ![nmyersnm1](https://avatars.discourse-cdn.com/v4/letter/n/bcef8e/32.png) [@nmyersnm1](https://forum.makecode.com/u/nmyersnm1)
#### Post date: [March 25, 2021, 8:10pm UTC](https://forum.makecode.com/t/game-not-working-orange-spinning-wheel/7002/4 "2021-03-25T20:10:10Z")

</div>

Thank you so much! This helps a lot!
