How to Summon a Sheep in Minecraft
Summoning a sheep in Minecraft is super easy once you know the right command. Whether you need a quick sheep for a test world or want to fill your farm instantly, the /summon command does the job in seconds.
What You Need
To use game commands in Minecraft, cheats have to be enabled in your world. If you’re playing Survival mode, you can turn them on anytime without losing your achievements in newer versions.
The Summon Command
Java Edition 1.13+
For Minecraft Java Edition 1.13 and newer (1.14, 1.15, 1.16, 1.17, 1.18, 1.19, 1.20, etc.), use this syntax:
/summon sheep [pos] [nbt]
Java Edition 1.8 to 1.12
For older versions, the command is slightly different:
/summon Sheep [x] [y] [z] [dataTag]
Command Breakdown
- pos or x y z (optional): The coordinates where the sheep spawns. If you skip this, the sheep appears where you’re standing.
- nbt or dataTag (optional): Special properties like color, age, or custom name. Examples: {NoAI:1} makes the sheep frozen, {Age:-25000} makes it a baby.
Command Examples
Basic Summon (1.13+)
Summon a regular sheep right where you are:
/summon sheep
Named Baby Sheep (1.13+)
Create a baby sheep named Lambie:
/summon sheep ~ ~ ~ {CustomName:"\"Lambie\"",Age:-25000}
Named Sheep (1.11-1.12)
Summon a sheep called Wooly (older version syntax):
/summon sheep ~ ~ ~ {CustomName:Wooly,Age:-25000}
For 1.8-1.10
Regular sheep:
/summon Sheep
Named sheep:
/summon Sheep ~ ~ ~ {CustomName:Wooly}
Baby sheep:
/summon Sheep ~ ~ ~ {Age:-25000}
How to Enter the Command
Step 1: Open Chat
Press T on Java Edition (PC/Mac) to open the chat window. On consoles, the chat button is usually on the top of the screen or accessible through your controller.
Step 2: Type Your Command
Copy and paste the command you want into the chat. Press Enter to run it.
Step 3: Check the Result
You’ll see “Summoned new Sheep” pop up in the corner. Look around, the sheep might be right behind you.
Quick Tips
- Use
~ ~ ~to spawn the sheep at your exact position. - Use specific coordinates like
100 64 200to place sheep anywhere in your world. - Add
{Color:1}to make colored sheep (0-15 for different wool colors). - Combine multiple tags with commas, like
{CustomName:"Sheep",Color:3,Age:-25000}.