How to make a camera for each player using Photon in Unity 2D?

Hi
I’m working on a multiplayer game, and I’m trying to make each player have their own camera that follows them. I would love to get help.
Thanks

If each player has its own camera, you can just create it locally. There is no need to sync it over the network.

I don’t know the setup of your game, but it could work as follows: After a new player is spawned, create a game object with a camera and a script to follow the player.