Full photon player list

I know there is a PhotonNetwork.playerList but I want to be able to send a RPC to all the players and it is not letting me do that. Basically there is a game, and then when the game is over, the GameManager knows who wins and all that. The I want the game to restart. So to to do that, I want to send a RPC function to all photon players in the room to reset all the variables and to have them re-spawn. Is there a way to send an RPC to everybody in the whole room? Or is there a better way to do it?

By default an RPC goes to the other players in the room.
You can use the PhotonTargets.All (3rd paramerter of RPC()) to execute the RPC locally, too.