I think he means he wants to move the pop-up to other places on the screen, not just stand on top of the hotbar
Use spaces and "\n" with tasks PHP: <?phpnamespace your\name\space;use pocketmine\Player;use pocketmine\plugin\Plugin;use pocletmine\scheduler\PluginTask;class pop-up-task extends PluginTask{ public $turn = 0; public function __construct(Plugin $main, Player $player){ $this->player = $player; $this->plugin = $main; parent::__construct($main, $player); } public function onRun($tick){ $this->turn++; //add 1 to $turn if($this->turn == 1){ $player->sendPopup("Ho"); } if($this->turn == 2){ $player->sendPopup("Ho".str_repeat("\n", 10)); } if($this->turn == 3){ // or any number u want $this->plugin->getServer()->getScheduler()->cancelTask($this->getTaskId()); // cancel the task }} And describe your problem more detailed next time