copy

Copy all the blocks in the space from the builder’s mark to the current position.

builder.copy();

This copies the blocks in a cube shaped space which starts from the mark position and goes to where the builder is now. New blocks aren’t created until ||builder:paste|| is used.

Example

Create a ceiling above the player by copying the floor beneath the player.

builder.teleportTo(pos(2, -1, 2));
builder.mark();
builder.teleportTo(pos(-2, -1, -2));
builder.copy();
builder.teleportTo(pos(-2, 2, -2));
builder.paste();

See Also

||builder:paste||

Here’s an example project that uses the builder: Build a house.