I'm trying to start a tick when a client spawns, but it doesn't let me spawn and it says "Unknown command onClientEnterGame"
This is the code:
package StartTick {
function GameConnection::onClientEnterGame(%this)
{
parent::onClientEnterGame(%this);
StartTick(%this);
}
};
activatePackage(StartTick);