Intermediate · 3 blocks

Starter kit button

Press once to receive a stone sword, 16 bread, and 32 torches from three connected Command Blocks.

Choose in-game screen
Java Edition Bedrock Edition
Java Edition 1.21.5 and up

What you need

Before placing the blocks

  • 3 Command Blocks
  • 1 button
  • Align all three block arrows into one chain

Expected result

Test after setup

The nearest player receives 1 stone sword, 16 bread, and 32 torches in order.

Placement direction

Make every block arrow point in the same direction

1 Impulse 2 Chain 3 Chain

Configure one block at a time

Open the game and match these values

The copy button copies only Command Input. Choose every other value in the Command Block screen.

1

Block 1 — give a stone sword

Attach the button to the first Impulse Block.

Set Console Command for Block
give @p minecraft:stone_sword 1

@s = self · @p = nearest player · @a = all players · @e = all entities

Previous Output-
Impulse Unconditional Needs Redstone
2

Block 2 — give bread

Place a Chain Block where the first arrow points and set it to Conditional.

Set Console Command for Block
give @p minecraft:bread 16

@s = self · @p = nearest player · @a = all players · @e = all entities

Previous Output-
Chain Conditional Always Active
3

Block 3 — give torches

Place the final Chain Block in the same arrow direction and set it to Conditional.

Set Console Command for Block
give @p minecraft:torch 32

@s = self · @p = nearest player · @a = all players · @e = all entities

Previous Output-
Chain Conditional Always Active

If it does not work

Check these four things first

  1. Cheats are enabled and you have Operator permission
  2. Needs Redstone or Always Active matches the example
  3. Chain Block arrows face the same direction and follow the previous block
  4. Read Previous Output to find the command that failed
Read the Command Block basics