Skip to content
Guides

Minecraft models without Blockbench

3 min read

Blockbench is a free and genuinely good editor for Minecraft models. The problem is not the tool's quality: to make one chair you have to learn modelling, UV mapping, texture painting and a plugin's config format at the same time. Running a server should not require becoming a modeller. Here is what Blockbench does, and what your options are if you would rather not open it.

What Blockbench actually does

A Minecraft model is a JSON file listing boxes and their coordinates. Blockbench lets you build that file by dragging instead of typing. Its real work is the part you never see: reserving space on the texture atlas for all six faces of every box and computing the uv coordinates.

For a simple three-part chair that is 18 faces. Not impossible by hand, but a single wrong number shows up in game as a texture stretched across the wrong place, and finding which number takes a while.

Where the curve gets steep

  • Scale. In Minecraft, 16 units is one block. A first model made without knowing that comes out either enormous or toy-sized.
  • UV mapping. The model looks right but the texture is flipped, offset or on the wrong face. This is the most abstract part of the interface.
  • Plugin format. Blockbench gives you the model but not ItemsAdder's yml, the folder tree or the hitbox. That is a separate thing to learn.
  • Furniture scale. Plugins render furniture in an armor stand's head slot, which changes the scale; without compensating, your model floats or sinks into the ground.

Option 1 — buy a ready-made pack

There are marketplaces selling ItemsAdder and Oraxen packs, usually themed: medieval furniture, a café set, weapons. It is the fastest route and the quality is generally high.

The limit: if the exact object you want is not in the pack, it does not exist. What gives a server its identity is often the one object nobody else has, and that is precisely where ready-made packs run out. The popular packs also turn up on hundreds of servers.

Option 2 — commission a modeller

The way to get exactly what you want. The cost is a fee and a wait per model, plus another round of back-and-forth for every small change. Sensible for a small number of important objects.

Option 3 — describe it

This is what MineModel AI does. You describe the object in a sentence; the system produces the geometry, the texture and the plugin config.

text
A three-tier stone fountain with moss on it. The lower basin
is two blocks wide with chiselled stone edges. The centre
column is copper-clad and gone green. Two and a half blocks tall.

The pack contains the model JSON, the texture atlas, a filled-in config file and the hitbox measurements. The same run gives you ItemsAdder, Nexo, Oraxen, CraftEngine, Blockbench and plain resource pack versions at once.

If one detail is wrong you do not describe the whole thing again: you say "make the wings a bit bigger" and everything else stays put. The first two changes on any model are free.

How to write a good description

How close the result lands depends mostly on how concrete the description is. Three habits that help:

  1. Give size in blocks: "two blocks tall", "one block wide". Models described without a size usually come out bigger than expected.
  2. Name the material: oak, chiselled stone, copper, glass, iron. Not "a nice table" but "a dark oak table with iron legs".
  3. Say how it sits: on the floor, on a wall, held in the hand. Its stance directly determines how the model is built.

What comes out is still a standard Minecraft model: you can open it in Blockbench and edit it by hand if you want. One of the output formats is .bbmodel already.