Network.Instantiate/Destroy vs Instantiate/Destroy on each client using [Command] and [ClientRpc]

Hello,

In my game I have objects that appear randomly at predefined positions when a player joins a game (from a random seed generated by the server). I currently have a system that allows me to add and destroy these objects: When a player picks the object, I call a method (Command) that calls another (ClientRpc) with the spawn point id (parameter) of the object. I then call another method (in ClientRpc) to destroy this object (locally) on each of the clients.

My question is: Would it be better to use Network.Instantiate and Network.Destroy? Which is the most economical (UNET) or the fastest?

Thank you!

Network.Instantiate and Network.Destroy are part of the legacy networking system (RakNet) and do not apply to UNet. UNet has an authoritative setup. Networked objects has to be created by the server and spawned by the server. You may want to look through the manual about spawning