# Tutorial not showing icons option

**URL:** https://forum.makecode.com/t/tutorial-not-showing-icons-option/7117
**Category:** micro:bit
**Created:** [March 31, 2021, 3:52pm UTC](https://forum.makecode.com/t/tutorial-not-showing-icons-option/7117 "2021-03-31T15:52:50Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ExploratekCat](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/exploratekcat/32/3751_2.png) [@ExploratekCat](https://forum.makecode.com/u/ExploratekCat)
#### Post date: [March 31, 2021, 3:52pm UTC](https://forum.makecode.com/t/tutorial-not-showing-icons-option/7117/1 "2021-03-31T15:52:50Z")

</div>

Hi,

I’ve written a micro:bit tutorials for participants, and some of the blocs cited in my tutorial don’t appear in the selection. Specifically the ShowIcon and Clear Screen… any idea why? did I mistype it? The hint displays the right thing, but the block selection just doesn’t include them… I tried changing ShowIcon with Show Dels, and it still isn’t showing…

Any ideas of how I can fix it?

Here is my code:

## Step 6:

\*\*Add display symbols- _continued_ \*\*

1. Select the `||basic: showIcon||` block from Basics, and add it underneath the first `||logic: if potato = 0||` block. Choose the Skull icon.
2. Drag in `||basic: clear screen||` block from Basics under the second `||Logic:if then||` block
3. In the third `||logic: if then||` block, change the `||logic: ""=""||` symbol for the `||logic: "">""||`symbol
4. Drag a `||basic: showIcon||` block from basic below the third `||logic: if-then||` and select an image that reminds you of a potato
5. From the variable tab, add a `||variables: change potato by 1||` block, and modify the number to -1

```blocks
basic.forever(function () {
    if (Potato == 0) {
        basic.showIcon(IconNames.Skull)
    }
    if (Potato == -1) {
        basic.clearScreen()
        if (Potato > 0) {
            basic.showIcon(IconNames.Target)
            Potato += -1
        }
    }
})

```
