paste

Paste the blocks copied earlier using ||builder:copy||. The blocks are pasted at the builder’s current position.

builder.paste();

Example

Create a ceiling above the player by pasting blocks copied from 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:copy||

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