#How do I make an item use animation play when right clicked?
6 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
for the use animation to play the item has to have a use duration and be useable which requires a couple extra steps js StartupEvents.registry('item', event => { event.create('roll_of_paper').useAnimation("crossbow") .use(c => true) .useDuration(i => 20) })