Include code for spawning the player and attaching the camera and it will be easier to help. It sounds like the camera attachment is potentially networked when it should be happening locally, thus player 2 is hijacking the camera from 1. Without code though, I can’t really give you a decent answer.
Attached is where I think this is happening. We are using Photon we didn’t write this code, but looking at it, it appears to do something with the “Main Camera”. This “Main Camera” is a child of the “PlayerController” Prefab.
I presume this function is a RPC function ; so every player connected will call this function.
Player 1 connects ; creates a character, turns on the camera and the controller
Player 2 connects ; creates a character, Player 1 also receives the RPC and turns on the camera of the new created character but still has the control of the first character. Do you understand what I mean ?
You have to check if the character is “my” character (isMine) ; if it is my character (I AM the one who instantiates the character), enable the camera and the controller. If not, disable the camera and the controller.
Edit: okay, I just saw you set “enable” to true. Let me re-check what you did D: Can you take a screenshot of the project hierarchy when you instantiated 2 characters ? With their children visible.