Minecraft Java EditionMinecraft Java Edition

WorldEdit on Minecraft: install the plugin and import a schematic

Complete WorldEdit guide for a Minecraft server - install the plugin on Paper/Spigot, import a schematic (.schem), paste a build and create your own from your Pterodactyl panel.

🧩 What is WorldEdit?

WorldEdit is THE go-to world-editing plugin on Minecraft Java. It lets you build, copy, paste, fill or delete thousands of blocks with a single command, where doing it by hand would take hours. Whether you want to import a downloaded map, duplicate a PvP arena or level a mountain, WorldEdit does it all from inside the game.

It's also the tool that lets you import a schematic (a .schem file that holds an entire build) onto your server. That's the number 1 reason server owners install it.

In short

WorldEdit = editing the world in bulk and pasting ready-made builds (schematics) onto your server, without building anything by hand.

WorldEdit installs in just a few minutes on our servers: check out our Minecraft server hosting plans with plugin support, from 3.99€/month.

📋 Contents


⚡ WorldEdit or FastAsyncWorldEdit (FAWE)?

Two plugins do the same job, with one important nuance:

WorldEditFastAsyncWorldEdit (FAWE)
SpeedGoodExcellent (multi-threaded, asynchronous)
Large buildsCan lag / time outBuilt for huge pastes
CompatibilityStandard, rock solidCompatible with WorldEdit commands
Best forGetting started, small/medium buildsBusy servers, giant schematics
Only install one of the two

FAWE replaces WorldEdit. Never put both .jar files in plugins/ at the same time, or your server will crash on startup. Choose one OR the other.

Our recommendation: start with WorldEdit (simpler). Switch to FAWE only if you're pasting very large builds or you notice lag during operations.


✅ Prerequisites

To use WorldEdit, you need:

  • ✅ A Java Minecraft server running Paper or Spigot (WorldEdit is a plugin, not compatible with a pure Vanilla server)
  • ✅ Access to your Pterodactyl panel
  • ✅ Java 17 for Minecraft 1.18-1.20.4, Java 21 for 1.20.5 and 1.21.x
  • ✅ The OP role on your server, or the WorldEdit permissions
Running Vanilla?

WorldEdit only works on a Bukkit/Spigot/Paper server. If you're on Vanilla, switch to Paper first: see our comparison of Minecraft frameworks. A mod version (Fabric/Forge) of WorldEdit also exists, but the plugin version is by far the most widely used.


🚀 Install WorldEdit on your server

Step 1: Download WorldEdit

  1. Go to Modrinth - WorldEdit (official and safe source)
  2. Click "Versions"
  3. Filter by platform: choose Bukkit / Paper / Spigot
  4. Select the version compatible with your Minecraft
  5. Download the worldedit-bukkit-x.x.x.jar file
Always the official source

Download WorldEdit only from Modrinth or EngineHub (the official developers). Avoid reupload sites: they sometimes distribute infected .jar files.

Step 2: Upload the plugin

  1. Log in to game.lordhosting.fr
  2. Select your Minecraft server
  3. Go to the "Files" tab
  4. Open the plugins folder (created automatically on the first startup of a Paper/Spigot server)
  5. Click "Upload" in the top right
  6. Select the worldedit-bukkit-x.x.x.jar file

The plugins folder with WorldEdit uploaded

No plugins folder?

It only appears after the first startup of a Paper or Spigot server. Start the server once, then go back to "Files".

Step 3: Restart the server

  1. Go back to the "Console" tab
  2. Click "Restart"
  3. Wait 30 seconds to 1 minute

In the console, you should see:

[Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.3.x
[Server thread/INFO]: [WorldEdit] Enabled WorldEdit

Console at startup: WorldEdit Enabled

:::success WorldEdit is installed! If you see Enabled WorldEdit, the plugin is active. 🎉 :::

Step 4: Check in-game

Connect to the server and type:

//limit

If a value appears (and not "unknown command"), WorldEdit is working.

The double slash //

Almost all WorldEdit commands start with two slashes //. It's not a typo: that's what sets them apart from regular Minecraft commands.


🪄 The basics: select and edit a region

WorldEdit works in 2 steps: you select a region, then you act on it.

1. Select with the wand

  1. Type //wand: you receive a wooden axe (the selection tool)
  2. Left-click on a block = position 1 (corner 1)
  3. Right-click on a block = position 2 (corner 2)

You've just defined a rectangular region between these two points. Without the wand, you can also use //pos1 and //pos2 wherever you're standing.

2. Act on the selection

A few essential commands:

//set stone        → fills the region with stone
//set air          → clears everything (removes the blocks)
//replace dirt grass_block  → replaces dirt with grass
//walls stone      → builds only the walls
//sphere glass 10  → generates a glass sphere of radius 10
//cyl water 5 20   → a water cylinder (radius 5, height 20)

3. Copy, paste, undo

//copy     → copies the selection (stand where the "origin point" will be)
//paste    → pastes at your position
//undo     → undoes the last action (an absolute must!)
//redo     → redoes it
The most important command

//undo undoes your last operation. Always keep it in mind: a mistaken //set air over a large area can be fixed with a single command.


📥 Import a schematic on your server

This is WorldEdit's number 1 use: pasting an entire build (an arena, a spawn, a hub, a house) downloaded as a .schem file.

Step 1: Get the schematic file

Download a file in .schem format (modern) or .schematic (the old MCEdit format). WorldEdit reads both. See where to download them below.

Step 2: Upload the schematic to the server

  1. In your panel, go to "Files"
  2. Open the plugins/WorldEdit/schematics/ folder
  3. Click "Upload" and drop in your .schem file

The schematics folder with a .schem file

No schematics folder?

It's created automatically on the first startup after WorldEdit is installed. If it's missing, restart the server once, or create it manually (plugins/WorldEdit/schematics/). With FAWE, the folder is plugins/FastAsyncWorldEdit/schematics/.

Step 3: Load and paste in-game

  1. Stand at the exact spot where you want the build to appear
  2. Load the file (without the extension):
//schem load filename
  1. Paste:
//paste

Done! The build appears at your position.

Useful //paste options
  • //paste -a: pastes without air blocks (handy for placing a structure without erasing the surrounding scenery)
  • //paste -o: pastes at the schematic's original coordinates (instead of your position)
  • //paste -s: automatically selects the pasted region (convenient for adjusting it afterwards)

To see the list of available schematics:

//schem list

Step 4: Adjust the orientation

//rotate and //flip act on the clipboard, not on blocks already pasted. So use them before //paste (or undo, rotate, then paste again):

//rotate 90    → rotates the clipboard by 90° (do this before //paste)
//flip         → mirrors the clipboard
//undo         → undoes the last paste
Placement tip

To reorient a build already placed: //undo, then //rotate 90 (or //flip), then //paste again. Do a first paste, look at the result, adjust, and paste again: it's the easiest way to line up a large build perfectly.


🌍 Where to download schematics

Thousands of free builds exist in .schem:

SourceContentLink
Minecraft-SchematicsSpawns, hubs, houses, arenasminecraft-schematics.com
Planet MinecraftHuge community libraryplanetminecraft.com
Modrinth (data packs / maps)Verified contentmodrinth.com
Check the format

A schematic must be a .schem or .schematic file. If you download a map (world folder) or a .litematic file, that's not the same thing: .litematic is used with the Litematica client mod, not with WorldEdit on the server side.


💾 Create and save your own schematic

The reverse is just as useful: saving a build to reuse or share it.

  1. Select the region with the wand (//wand, left-click + right-click)
  2. Stand at the reference point (where you'll stand during the future //paste) and type:
//copy
  1. Save:
//schem save myspawn

The myspawn.schem file appears in plugins/WorldEdit/schematics/. You can download it from "Files", back it up or import it onto another server.

Copy point = paste point

The block you're standing on at the moment of //copy becomes the reference point for //paste. Always copy while standing at an identifiable corner (e.g. the front-left corner of the build).


🔑 Manage permissions

By default, only OP players can use WorldEdit. To give access to staff without making them OP, use a permissions plugin like LuckPerms:

/lp user StaffName permission set worldedit.* true

A few useful nodes:

PermissionGrants access to
worldedit.*All WorldEdit commands
worldedit.wandThe selection wand
worldedit.region.*//set, //replace, //walls...
worldedit.clipboard.*//copy, //paste
worldedit.schematic.*//schem load, //schem save
Reserve it for staff

WorldEdit can destroy a world with a single command. Only give worldedit.* to people you trust, never to all players.


🧰 Essential WorldEdit commands

CommandEffect
//wandGet the selection wand
//pos1 / //pos2Set the corners at your position
//set <block>Fill the selection
//replace <a> <b>Replace one block with another
//walls <block>Build the walls
//sphere <block> <radius>Generate a sphere
//copy / //pasteCopy / paste
//schem load <name>Load a schematic
//schem save <name>Save a schematic
//schem listList schematics
//rotate / //flipRotate / flip
//undo / //redoUndo / redo
//limit <n>Limit the number of blocks per action
//count <block>Count blocks in the selection

To go further, find all the Minecraft Java commands in our dedicated guide.


❌ Common problems and solutions

"Schematic not found" / "Unknown schematic"

Cause: the file name or location is incorrect.

Solutions:

  • Type //schem list to see the exact name
  • Load without the extension: //schem load myspawn (not myspawn.schem)
  • Check that the file is indeed in plugins/WorldEdit/schematics/ (or plugins/FastAsyncWorldEdit/schematics/ with FAWE)

"You are not permitted to do that"

Cause: you don't have the permissions.

Solutions:

  • Make yourself OP from the console: op YourName
  • Or grant the permission via LuckPerms: /lp user YourName permission set worldedit.* true

Unsupported format

Cause: the file isn't a real schematic (e.g. .litematic, or a map).

Solutions:

  • Use //schem formats to see the recognized formats
  • Check that the file is indeed a .schem or .schematic
  • .litematic files require the Litematica client mod, not WorldEdit

Lag or timeout on a large paste

Symptoms: the server freezes during the //paste, TPS drops.

Solutions:

  • Switch to FastAsyncWorldEdit (asynchronous, built for this)
  • Increase your server's RAM: see our guide how much RAM for a Minecraft server
  • Split the paste into several smaller regions

The plugin doesn't load

Symptoms: no Enabled WorldEdit in the console.

Solutions:

  • Check that you're really on Paper/Spigot (not Vanilla)
  • Check that the WorldEdit version matches your Minecraft version
  • Check your Java version (Java 17 for 1.18-1.20.4, Java 21 for 1.20.5 and 1.21.x): see which version of Java for Minecraft
  • Look for [ERROR] lines in the console

❓ Frequently asked questions (FAQ)

Does WorldEdit work on Minecraft Bedrock?

No. WorldEdit is a Java Edition plugin/mod only. On Bedrock, there are behavior packs and different tools, but no WorldEdit. This guide therefore concerns Java Minecraft servers (Paper/Spigot).

What's the difference between .schem and .schematic?
  • .schematic: old format (MCEdit), used up to Minecraft 1.12
  • .schem: modern format (Sponge), which handles recent blocks

WorldEdit reads both automatically with //schem load. For new builds, prefer .schem.

Do players need to install anything?

No. WorldEdit runs server-side only. Your players have nothing to install, everything is done with the in-game commands. (The WorldEdit CUI client mod is optional: it just shows a visual outline of your selection.)

Can I undo a failed //paste?

Yes, with //undo. It's the command you absolutely need to remember. It undoes your last operation, even a huge paste.

WorldEdit and FAWE at the same time?

No, never. FAWE replaces WorldEdit. Putting both .jar files in plugins/ crashes the server on startup. Choose only one.

How do I move a schematic from one server to another?

Download the .schem file from "Files" (plugins/WorldEdit/schematics/) to your PC, then upload it into the same folder on the other server. A //schem load + //paste and it's in place.


🎉 Conclusion

You now know all the essentials of WorldEdit: how to install it on your server, edit the world in bulk, and above all import a schematic to paste entire builds in a few seconds. Enough to set up a professional spawn or hub without spending weeks building.

✅ Installation in a few minutes from the panel
✅ Import .schem schematics in 3 commands
✅ Copy, paste and save your own builds
✅ FAWE available for large projects

Need help?

Our support team is available 24/7 on Discord or through our ticket system. Don't hesitate!

Don't have a server yet? Discover our Minecraft server hosting plans compatible with Paper, Spigot and WorldEdit, from 3.99€/month.

Last updated: September 2026
Compatible with: Minecraft Java 1.20.x - 1.21.x | WorldEdit 7.3.x | Paper / Spigot | LordHosting Pterodactyl Panel

Back to Minecraft Java Edition
Was this article helpful?
Welcome Offer

Sign up now and enjoy 10% off on your first order by entering the promo code: WELCOME

Logo LordHostingLordhosting is a SASU with a share capital of €1,000. SIREN 105 383 988 RCS Paris.
Copyright © 2026 LordHosting.