I want to be able to instantiate a prefab on all clients that has a shared network identity (so if one client moves or destroys it, it is moved/destroyed on all other clients). However, I can’t seem to find any resources on how to do this. Any suggestions?
To answer my own question - you need a script that extends NetworkBehaviour, on a class with a server-only network ID. The script can instantiate an object (which should also have a network ID), then pass it to NetworkServer.Spawn(object), which instantiates it on all the clients.