Build Wall

A wall with stone blocks

Build a stone wall straight up.

Try the code:

player.onChat("wall", function () {
    for (let i = 0; i < 10; i++) {
        builder.move(FORWARD, 5)
        builder.move(UP, 1)
        builder.turn(TurnDirection.Left)
        builder.turn(TurnDirection.Left)
    }
    builder.tracePath(MOSSY_STONE_BRICKS)
})