Hi, I want to make a menu on player's inventory. so, when the player clicked a block, then it will run a command. Like in the image I curently using PlayerItemHeldEvent() PHP: public function onItemHeld(PlayerItemHeldEvent $event){ $player = $event->getPlayer(); if ($event->getItem()->getCustomName() == "TEST") { $player->sendTip(TextFormat::BOLD . TextFormat::DARK_RED . "Wow, You Choosed TEST"); }} But, how we know when the player clicked the item in the air, or clicked the item while opening inventory