# Weird ghost sprite is haunting my projects

**URL:** https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023
**Category:** Help
**Created:** [July 4, 2023, 9:39pm UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023 "2023-07-04T21:39:05Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Luke](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/luke/32/32519_2.png) [@Luke](https://forum.makecode.com/u/Luke)
#### Post date: [July 4, 2023, 9:39pm UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023/1 "2023-07-04T21:39:05Z")

</div>

![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/2X/1/17454591471e801db87243d2d606943bc0ba00c1.png)

 ![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/2X/4/4527fbf236bccdc21e5bd2c84ae434bba5293fa5.jpeg)

 ![image](https://us1.discourse-cdn.com/flex020/uploads/makecode/original/2X/1/19d3245718ddb7f524a7dddf40a327fd4d5c3716.jpeg)

The strange thing is that I drew this sprite in a random project as I wanted to test out abilities and now it keeps appearing whenever I download the shader extension. Can someone help I’m very confused. As you can see from the first project there is no code but its still there.

---

<div class="post-metadata">

### Author: ![YuHayate](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/yuhayate/32/8275_2.png) [@YuHayate](https://forum.makecode.com/u/YuHayate)
#### Post date: [July 5, 2023, 3:31am UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023/2 "2023-07-05T03:31:28Z")

</div>

can you send the code?

---

<div class="post-metadata">

### Author: ![danger\_kitty](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/danger_kitty/32/32006_2.png) [@danger\_kitty](https://forum.makecode.com/u/danger_kitty)
#### Post date: [July 5, 2023, 3:32am UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023/3 "2023-07-05T03:32:07Z")

</div>

It’s cloud sync bug it’s cloud sync bug are you using cloud synic

---

<div class="post-metadata">

### Author: ![BlastBoxGames](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/blastboxgames/32/11727_2.png) [@BlastBoxGames](https://forum.makecode.com/u/BlastBoxGames)
#### Post date: [July 5, 2023, 3:35am UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023/4 "2023-07-05T03:35:49Z")

</div>

That’s Really Creepy

---

<div class="post-metadata">

### Author: ![Sarge](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/sarge/32/19590_2.png) [@Sarge](https://forum.makecode.com/u/Sarge)
#### Post date: [July 5, 2023, 4:35pm UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023/5 "2023-07-05T16:35:39Z")

</div>

Hmm… you say it appears with the shader extension, however the shader extension in your toolbar doesn’t have the usual icon… It’s possible you have defined this sprite in the code of that extension you’re importing, so it appears anywhere you import the extension.

Look for a definition somewhere in the code of the extension, like this

```auto
let mySprite = sprites.create(img`...`, SpriteKind.Player)
// That image should be in the img slot

```

Once you find it, remove it and it should function normally (just make sure to remove the old extension from your projects and add the new one)

---

<div class="post-metadata">

### Author: ![Luke](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/luke/32/32519_2.png) [@Luke](https://forum.makecode.com/u/Luke)
#### Post date: [July 5, 2023, 9:13pm UTC](https://forum.makecode.com/t/weird-ghost-sprite-is-haunting-my-projects/21023/6 "2023-07-05T21:13:33Z")

</div>

Yeah I found it thanks!
