How to place items in the given position in Minecraft?
Emily Wong
I would like to place (drop) some items (or "destroyed" blocks) in the given position.
The fill command doesn't work here since it places blocks and a user will have to break it to pick up (but the user should be to collect it, see how collect command works). Probably the loot command would be ok, but it is not available at Bedrock Edition.
I can use commands only, command blocks shouldn't be used.
What else could I try?
2 Answers
Run the following two commands in order:
/fill x y z x y z your_block_here
/setblock x y z x y z air destroyIt's just the commands from Bilal Khalid's answer, except typed in the chat. All commands work in both command blocks AND in the chat.
If you want it all in one command, it may not be possible. Sorry.
2If you want to drop a block in a specific place; get two command blocks, one impulse and the other chain. Write the fill command in the impulse command block, and, in the chain command block, write fill (location) air 0 destroy. Be sure to chain the commands correctly like this: Image from: here
I hope this helps.