#how to give items with custom names

1 messages · Page 1 of 1 (latest)

real ginkgo
#

this is what i got so far

case '!gui':
                const equ = player.getComponent("equippable");
                const compass = new ItemStack("compass", 1);
                system.run(() => {
                    compass.setLore([
                        '§d§lGui Menu§r',
                        '§7§o(right click)§r'
                        ]);
                    equ.setEquipment(EquipmentSlot.Mainhand, compass);
                });
                break;```
bold falcon
real ginkgo
real ginkgo
bold falcon
bold falcon
#

So: let compass = new ItemStack

real ginkgo
#

this is why i use python