Statue generator

Create posable player-statues for Minecraft

Enter a Username
OR
Upload a Skin
PNG, JPG
Name in Datapack Summon Command Status Remove
No statues added yet

Commands

Some commands to help you setup your statues.

Remove the nearest statue

mcfunction
/function statue:kill

Disable posing through scoreboards

( This way you can pose them with the Pose value in nbt )

mcfunction
/tag @e[sort=nearest,tag=main,limit=1] remove live

Rotate the entire statue

( Multiply the angle you want by 100 → 90° = 9000 )

mcfunction
/scoreboard players set @e[tag=statue,tag=main,sort=nearest,limit=1] statue_x 9000

Rotate specific limbs

All other limbs can be rotated in the same way, with the respective scoreboard names:

mcfunction
#head
statue_x_head
statue_y_head

#right arm
statue_x_ra
statue_y_ra

#left arm
statue_x_la
statue_y_la

#right leg
statue_x_rl
statue_y_rl

#left leg
statue_x_ll
statue_y_ll

Make statue hold items

mcfunction
/data merge entity @e[tag=statue,tag=main,limit=1,sort=nearest] {HandItems:[{id:"minecraft:stone_sword",Count:1b}]}

Make statue wear armor

mcfunction
/data merge entity @e[tag=statue,tag=main,limit=1,sort=nearest] {ArmorItems:[{},{},{id:"minecraft:diamond_chestplate",Count:1b},{}]}

Watch the full Tutorial

Appreciation

Thanks to Minotar for the mojang api. and Mineskin for the skin upload api.

Special Thanks to Logstone and Jespertheend who came up with the original concept of the player statue.