Meet-Your-Maker
player.meleeButtonPressed() == 1 player.adsButtonPressed() == 1 player.fragButtonPressed() == 1 player.secondaryOffhandButtonPressed() == 1 player.useButtonPressed() == 1as far as I know, then these functions check for pressing at a given time, and for checking you need to use a timer
setInterval(fun[player]() { if (player.useButtonPressed() == 1) { /* magic */ } }, 10);I think I understood the question correctly and was able to answer it 😊