First of all you must get EconomyAPI Plugin PHP: /** @var Plugin $economy */public $economy;public function onEnable(){$this->economy = $this->getServer()->getPluginManager()->getPlugin("EconomyAPI");}[ To get money use following PHP: /** @var Player $player */$this->economy->myMoney($player); To add money you can use addMoney() function PHP: /** @var Player $player */$this->economy->addMoney($player, 100); For more information check this links: https://github.com/onebone/EconomyS...PI/src/onebone/economyapi/EconomyAPI.php#L213 https://github.com/onebone/EconomyS...PI/src/onebone/economyapi/EconomyAPI.php#L167