What Does "Invisible Items" Look Like?
When we say items are "invisible," this can mean several things depending on the situation:
- Completely invisible — The item slot appears empty, but you can still interact with it (place blocks, attack, etc.)
- Black and purple checkerboard — The classic "missing texture" pattern, meaning Minecraft can't find the item's texture file
- Invisible in hand but visible in inventory — The 2D icon shows up, but the 3D model doesn't render when held
- Invisible blocks — You can place a custom block but it's invisible, though it still has collision
Each of these has a different cause, but the fixes overlap. Let's go through them all.
Cause #1: Resource Pack Not Activated
This is the #1 reason for invisible items and it's the easiest to fix. Every addon that adds custom items needs two packs working together:
- Behavior Pack — Tells Minecraft the item exists, what it does, its properties
- Resource Pack — Tells Minecraft what the item looks like — textures, models, animations
If only the behavior pack is active, Minecraft knows the item exists but has no idea how to render it. Result: invisible.
Open Your World Settings
Go to Play, tap the pencil icon next to your world to edit it.
Check Behavior Packs
Scroll to Behavior Packs. Confirm the addon's behavior pack is listed under "Active." Note its name.
Check Resource Packs
Now go to Resource Packs. Look for the companion resource pack with a similar name. If it's under "Available" instead of "Active," tap it and hit "Activate".
Restart the World
Exit to the main menu and re-enter your world. The items should now be visible.
Cause #2: Experimental Features Not Enabled
Some addons — especially those using scripting or newer APIs — still require experimental gameplay toggles to be enabled. Without them, script-powered features won't work and items may appear invisible.
How to enable experimental features:
Go to World Settings
Edit your world and scroll down in the left sidebar until you find the "Experiments" section.
Enable the Required Toggles
Turn on the experiments the addon requires. Current experiments include:
- Beta APIs — For script-based addons using @minecraft/server module. This is the most commonly needed experiment.
- Upcoming Creator Features — For addons using the latest, not-yet-stable block/item APIs
- Cameras — For addons with custom camera systems
If you're not sure which experiments the addon needs, check the addon's download page — most creators list the required experiments. If the addon only uses custom items/blocks without scripting, you likely don't need any experiments anymore.
Cause #3: Minecraft Version Mismatch
Addons are built for specific Minecraft versions. If you're running a newer or older version of Minecraft than what the addon was designed for, things can break — including item rendering.
This is especially common when:
- Minecraft releases a major update that changes how custom items work internally
- You're using a beta/preview version of Minecraft with an addon built for the stable release
- The addon hasn't been updated in a long time
What to do:
- Check the addon's download page for the supported Minecraft version
- If your version is newer, look for an updated version of the addon
- If you're on a beta/preview build, try the addon on the stable version instead
Cause #4: Addon Conflicts
Running multiple addons at the same time can cause conflicts. If two addons modify the same item namespace, texture path, or game component, one will override the other — potentially making items invisible.
How to identify a conflict:
Create a Test World
Create a brand new world with only the problematic addon active (both BP and RP). No other addons.
Test the Items
If the items are visible in the test world, then another addon is causing the conflict in your main world.
Find the Culprit
Go back to your main world and disable addons one at a time until the invisible items become visible. The last one you disabled was the conflicting addon.
Cause #5: Corrupted or Incomplete Download
Sometimes the addon file doesn't download completely — especially on slow connections or mobile data. A corrupted pack may import without errors but have missing texture definitions inside.
How to fix:
- Delete the current packs from your world
- Go to Settings > Storage in Minecraft and remove the cached pack files
- Re-download the addon from the original source on a stable connection
- Re-import and activate both packs
Cause #6: Render Dragon Compatibility
Minecraft Bedrock uses the Render Dragon engine on most platforms. Some older addons that use custom shader effects or non-standard rendering techniques may not be compatible with Render Dragon, causing visual glitches including invisible items.
Unfortunately, there's no user-side fix for this. The addon creator needs to update the pack to work with Render Dragon. Check the addon's page or community for updates.
It Worked Before but Now Items Are Invisible
If the addon was working fine and suddenly items became invisible, the cause is almost always one of these:
- Minecraft updated — A game update changed how addons work. Wait for the addon creator to release an update, or check if new experimental toggles need to be enabled.
- You accidentally removed the resource pack — Go to world settings and check if the RP is still active.
- Another addon was added — A new addon you installed might be conflicting. Try removing the most recent addon you added.
- Cache issue — Clear Minecraft's cache through Settings > Storage, restart the game, and re-enter the world.
Platform-Specific Tips
Windows 10/11
If items are invisible only on Windows, try clearing the resource pack cache. Navigate to the com.mojang folder and delete the contents of the resource_pack_cache folder, then restart Minecraft.
%AppData%\Minecraft Bedrock\Users\Shared\games\com.mojang\resource_pack_cache
Android
On Android, go to Settings > Apps > Minecraft > Storage > Clear Cache (not "Clear Data" — that deletes your worlds). Then restart Minecraft and check if items are visible.
iOS
iOS doesn't have a dedicated cache clear option. Try offloading the app (Settings > General > iPhone Storage > Minecraft > Offload App) and then reinstalling it. Your worlds and packs are preserved.
Xbox / Nintendo Switch
On consoles, make sure the addon was synced via Realms with both packs included. If items are invisible on console but visible on the PC/phone that uploaded the Realm, the resource pack may not have synced. Re-apply both packs to the Realm from the source device.