After updating to version 95.1.6, I noticed synchronization issues. Through multiple debugging sessions, I found the problem was caused by my repeated calls to AddPlayerForConnection. Within AddPlayerForConnection, it calls SetClientReady(conn), and multiple calls to SetClientReady(conn) will clear pendingSpawns. I suggest adding "if (conn.isReady) return;" in the SetClientReady function.