Custom player heads

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

NONAMEBRO

Member
Apr 2, 2024
4
0
1
19
so i want to get a custom player head with a command but i dont know how to do it
i saw this code on another forum but you need mundosk for it and its not suported for 1.20.4
can someone please help me?
command /head-test:
trigger:
set {_value} to "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGM4YTgyNGI5Yjk0OTM5YWYyZThjZTE4ODQ4MjYxOGRhZDkzM2FlNWRkNjcxYTdiOWFjOTk5ZDNhM2I2MWE1In19fQ=="
set {_skull} to skull from skin with value {_value} signature ""
set data value of {_skull} to 3
give {_skull} to player
 
so i want to get a custom player head with a command but i dont know how to do it
i saw this code on another forum but you need mundosk for it and its not suported for 1.20.4
can someone please help me?
Not sure if this would be helpful, but you can modify NBT data of items using SkBee, so maybe you could use SkBee to modify the NBT data of a skull to get it to be a custom one?
 
Not sure if this would be helpful, but you can modify NBT data of items using SkBee, so maybe you could use SkBee to modify the NBT data of a skull to get it to be a custom one?
i have skbee installed but how do i set the NBT of the player head right?
 
set {_d} to player head set nbt of {_d} to nbt compound from {insertNBThere}
1712217173268.png
 
if you use skbee then you can you minecraft heads for the nbt:
Code:
player head with nbt from "{SkullOwner:{Id:[I;533246720,204227316,-1194454426,-163463090],Properties:{textures:[{Value:""eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDcxY2JkNjZjNzBhYmEyMDU0NzI3ZTc0YmJjODg4NzcxYmFhNzgwZDdmMmJmMTE0MzNlYzY4YjZiZjUxNmZkMiJ9fX0=""}]}}}"
 
if you use skbee then you can you minecraft heads for the nbt:
Code:
player head with nbt from "{SkullOwner:{Id:[I;533246720,204227316,-1194454426,-163463090],Properties:{textures:[{Value:""eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDcxY2JkNjZjNzBhYmEyMDU0NzI3ZTc0YmJjODg4NzcxYmFhNzgwZDdmMmJmMTE0MzNlYzY4YjZiZjUxNmZkMiJ9fX0=""}]}}}"
nbt compound from

uses Skbee