I have a plugin i made to teleport players to coordinates written into the code. From what i can tell, it teleports you there fine, but thats useless because it crashes you with an Internal Server Error, and this: Code: 2019-05-27 [00:03:16] [Server thread/CRITICAL]: Error: "Class 'Clik\HogwartsWarps\Position' not found" (EXCEPTION) in "plugins/HogwartsWarps_dev-7.phar/src/Clik/HogwartsWarps/Main" at line 18 Lines 12-20: Code: if ($cmd->getname() == "gryffindor") { if ($sender instanceof Player) { $level = $this->getServer()->getLevelByName("Hogwarts"); $x = -1953; $y = 133; $z = 482; $pos = new Position($x, $y, $z, $level); $sender->teleport($pos); $sender->sendMessage($this->fts . TF::GREEN . "Teleported to Gryffindor common room!");