Custom Player Heads

After Minecraft version 1.8.4, getting custom player heads was made far more cumbersome – but it is still possible. Here’s how to do it:

  1. Make sure you have a backup of your skin. If you don’t, get one by downloading your skin file here, for instance.
  2. Go here.
  3. Log in (upper right-hand corner).
  4. Click the profile link in the top navigation bar.
  5. Upload the skin file you want to make a custom player head from.
  6. Type your minecraft name into this box and hit the button.

function guid() {
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + ‘-‘ + s4() + ‘-‘ + s4() + ‘-‘ + s4() + ‘-‘ + s4() + s4() + s4();
}
function getPlayerHead(form) {
var name = form.name.value;
jQuery.ajax({
url: “/util/getskin.cgi?username=” + name,
success: function( data ) {
jQuery( “#mccommand” ).html( “/give @p minecraft:skull 1 3 {SkullOwner:{Id:” + guid() + “,Properties:{textures:[{Value:” + data + “}]}}}” );
}
});
return false;
}

Copy this command:

It gives you a custom player head with your current skin texture. That head will always look the same, even if you change your skin! Note that due to Mojang server restrictions, this utility can only be used once per 30 seconds.

To make more than one head, just change your skin and hit the Submit button again.

Don’t forget to change your skin back when you’re done!

If you’re unsure what to do – check out the Video Tutorial.