Can someone help find a way to attach my main file to my plugin? I am new to this and I couldn't find any other posts on here with the same issue. Edit: I forgot to attach the code in Main.php so here you go: PHP: <?phpnamespace TestPlugin;use pocketmine\plugin\PluginBase;class MainClass extends PluginBase { public function onLoad() : void{ $this->getLogger()->info("Plugin Loading"); }}