Fill Jungle Sign Command
Copy the /fill command for Jungle Sign in Minecraft Java 26.2 and Bedrock 26.32. Commands use relative coordinates (~ ~ ~) so they work from any position. Adjust the offsets in the builder below.
Fill 11×6×11 area
/fill ~ ~ ~ ~10 ~5 ~10 minecraft:jungle_sign/fill ~ ~ ~ ~10 ~5 ~10 jungle_signHollow structure
Fills only the outer shell — interior air is preserved.
/fill ~ ~ ~ ~10 ~5 ~10 minecraft:jungle_sign hollow/fill ~ ~ ~ ~10 ~5 ~10 jungle_sign hollowFill only air (keep)
Fills empty space without overwriting existing blocks.
/fill ~ ~ ~ ~10 ~5 ~10 minecraft:jungle_sign keep/fill ~ ~ ~ ~10 ~5 ~10 jungle_sign keepClear the same area
Removes all blocks and drops their items. Useful for undoing a fill.
/fill ~ ~ ~ ~10 ~5 ~10 air destroy/fill ~ ~ ~ ~10 ~5 ~10 air destroyCustomize in the builder
Quick templates
Coordinates
From
To
Use ~ for relative, ^ for local (facing) coordinates. Diagonally opposite corners — order doesn't matter.
Use any valid block ID. Add states with brackets: oak_stairs[facing=north]
Replaces every block in the region
E.g. dirt — only those blocks inside the region will be swapped.
/fill ~ ~ ~ ~10 ~5 ~10 stoneJava and modern Bedrock (1.20+) share the same /fill syntax. Bedrock caps fill volume at 32,768 blocks per command — split large regions into separate fills.
Frequently asked questions
- How do I fill an area with Jungle Sign in Minecraft?
- Enable cheats or use OP, open chat with T or /, and run /fill ~ ~ ~ ~10 ~5 ~10 minecraft:jungle_sign (Java) or /fill ~ ~ ~ ~10 ~5 ~10 jungle_sign (Bedrock). The command fills from your position to 10 blocks east, 5 up, and 10 south. Change the offsets to match your desired size.
- What are the fill modes in Minecraft?
- The /fill command supports four modes: the default replaces everything; hollow fills only the outer shell; keep only fills air blocks (preserves existing blocks); destroy fills and drops items from any replaced blocks; replace lets you target a specific block type to overwrite.
- What is the /fill block limit in Minecraft?
- Both Java and Bedrock cap /fill at 32,768 blocks per command. For an 11×6×11 region that is 726 blocks — well within the limit. For larger builds, run multiple /fill commands or use a command block chain.
- Does the /fill command work on Bedrock Edition?
- Yes — use /fill ~ ~ ~ ~10 ~5 ~10 jungle_sign. Bedrock omits the "minecraft:" namespace prefix. The fill modes (hollow, keep, destroy, replace) work the same way on both editions.