Mastering Minecraft Mob Elimination: A Comprehensive Guide to the /kill Command
There are many reasons why you might want to eliminate mobs in Minecraft. The most straightforward method involves using commands, specifically the /kill
command. However, this seemingly simple command has some nuances. This guide explains how to use it effectively.
Before You Begin: Enabling Cheats
The /kill
command requires a world with cheats enabled. If cheats aren't already enabled, follow these instructions:
Java Edition:
- Load your world.
- Press Esc.
- Select "Open to LAN."
- Toggle "Allow Cheats" to "On."
Remember, this enables cheats only for that session. To permanently enable cheats, create a copy of your world with cheats enabled during the world creation process.
Bedrock Edition:
- Navigate to your worlds.
- Select the world you want to modify.
- Click the pencil icon.
- In the settings menu, toggle "Cheats" to "On."
Using the /kill Command
The basic /kill
command, simply typing /kill
, will unfortunately kill your player character. To target specific entities, you need to add selectors.
-
Killing All Mobs:
/kill @e[type=!minecraft:player]
This targets all entities (@e
) except the player (type=!minecraft:player
). -
Killing Specific Mob Types:
/kill @e[type=minecraft:chicken]
This kills all chickens. Replaceminecraft:chicken
with the desired mob type. -
Killing Mobs Within a Radius:
- Java Edition:
/kill @e[distance=..15]
Kills all entities within 15 blocks. Adjust15
as needed. - Bedrock Edition:
/kill @e[r=10]
Kills all entities within a radius of 10 blocks. Adjust10
as needed.
- Java Edition:
-
Killing Specific Mobs Within a Radius:
- Java Edition:
/kill @e[distance=..15,type=minecraft:sheep]
Kills all sheep within 15 blocks. - Bedrock Edition:
/kill @e[r=10,type=minecraft:sheep]
Kills all sheep within a radius of 10 blocks.
- Java Edition:
The game will autocomplete commands, so you don't need to memorize the exact syntax.
Important Selectors:
@p
: Nearest player@r
: Random player@a
: All players@e
: All entities@s
: Yourself
Minecraft is available on PlayStation, Xbox, Nintendo Switch, PC, and mobile devices.