Minecraft – Cloning command Xbox One

minecraft-bedrock-editionminecraft-commands

I'm trying to clone a square from original coordinates [(-666, 15, -339)(-671, 10, -335)] along the x-axis by 6 spaces each time. I want the y- and z-axis to remain the same each time.

My thought was /clone -666 15 -339 -671 10 -335 -6 ~ ~ replace. However it keeps trying to clone it out of the loaded chunk.

I'm trying to create a command block that once activated will just copy the space around it over and over in a straight line.

Best Answer

So the command to copy a location relative to the execution location (command blocks location or yours if you use command window) is as follows: /clone ~x ~y ~z ~x ~y ~z ~x ~y ~z. Count the number of blocks from your execution location and use that for your x, y, and z coordinates.