Player Head icon

Player Head Give Command Generator

  • Item id: minecraft:player_head
  • Command: /give

A player head that stores only a profile name resolves its skin when the item first loads: the game queries the skin service for that username's textures and paints the head with whatever the account wears at that moment. That makes the profileName field the whole trick — type any valid username into the generator and the /give output produces a head wearing that player's face, no texture URLs or base64 blobs required.

Beyond trophies, heads are a block palette of their own. Mojang maintains a set of MHF_ utility accounts whose skins exist purely for builders — MHF_Cake, MHF_Chest, MHF_TNT and MHF_Melon among them — so a head can stand in as a miniature cake on a shelf or a half-scale TNT prop in a bluff trap. Placed heads snap to sixteen rotations on the floor and mount flat against walls.

The item names itself after the profile by default, so a head for Notch reads as Notch's Head in the tooltip. For award ceremonies and boss drops, override that with a customName and a few lore lines: the skin stays bound to the profile while the tooltip carries whatever the trophy actually commemorates.

Example commands

Cake prop for a kitchen build

/give @p minecraft:player_head[profile={name:"MHF_Cake"}] 1

MHF_Cake is one of Mojang's utility accounts; the head reads as a miniature cake, ideal for cluttered shelves where a full cake block would look oversized.

Gold-named champion trophy

/give @p minecraft:player_head[custom_name={text:"Founder's Trophy",color:"gold"},lore=["First place, anniversary build contest"],profile={name:"Notch"},rarity=epic] 1

Pairs a real profile skin with an overriding custom name, epic rarity and lore, so the tooltip reads as an award rather than Notch's Head.

TNT decoy caps

/give @p minecraft:player_head[custom_name={text:"Dud Charge",color:"red"},profile={name:"MHF_TNT"}] 4

Half-scale TNT lookalikes for trap rooms — placed heads never detonate, which sells the bluff while the real explosives sit somewhere else entirely.

The same build across versions

Rows appear only where the output actually changes -- copy the one that matches your world.

Java 1.16

/give @p minecraft:player_head{display:{Name:'{"text":"Founder\'s Trophy","color":"gold"}',Lore:['{"text":"First place, anniversary build contest"}']},SkullOwner:{Name:"Notch"}} 1

Java 1.21.4

/give @p minecraft:player_head[custom_name='{"text":"Founder\'s Trophy","color":"gold"}',lore=['{"text":"First place, anniversary build contest"}'],profile={name:"Notch"},rarity=epic] 1

Java 26.2

/give @p minecraft:player_head[custom_name={text:"Founder's Trophy",color:"gold"},lore=["First place, anniversary build contest"],profile={name:"Notch"},rarity=epic] 1

Bedrock 26.x

# Omitted Java-only item data for Bedrock: custom_name, lore, rarity, profile.
/give @p player_head 1
  • Omitted Java-only item data for Bedrock: custom_name, lore, rarity, profile.

Worth knowing

  • A head created with only a username is resolved against the skin service the first time it loads, and the fetched texture data is then stored on the item — the head keeps the skin the account wore at that moment.
  • Placed on the ground a head offers sixteen rotation positions and mounts flat on walls; both forms render at half the size of a full block.
  • Any head fits the helmet slot with zero armor points, and mobs given one through their head equipment slot render it as well.
  • Mojang's MHF_ accounts exist specifically so builders can pull prop skins — cake, chest, melon, TNT — without borrowing a real player's face.
  • A player head can carry a note_block_sound value; placed on top of a note block, the block plays the referenced sound event instead of a normal note.

FAQ

Whose skin does a player head show if I only enter a username?

The skin that account wears when the head first loads. The game fetches the textures once, stores them on the item, and the head keeps that look even if the player later changes skins.

Can mobs or other players wear a player head?

Yes — any head fits the helmet slot with no armor value. Map makers equip summoned mobs with a specific head to put a recognizable face on a boss or NPC.

What happens if the username behind a player head does not exist?

The lookup returns nothing and the head falls back to the default Steve-style texture. Double-check spelling before shipping the command in a map download.