How to use more than one prefab for players?

Hello,
I’m using the NetworkManager and as you know we have to register the prefab of the Player to be Spawn. My question is if I want to use different prefabs for the player ? what I have to do?

Thanks in advance.

Yep. You can.
You need register “other prefab” with ClientScene: you can see here: https://docs.unity3d.com/ScriptReference/Networking.ClientScene.RegisterPrefab.html
Then, NetworkManager.Singleton.playPrefab = “other prefab”

1 Like

Thanks!