Problem with load variables

Options
Hi everyone, I have a problem inside Awake, I try to load the information of the variables of my character using:
void Awake ()
{
if (PhotonView.IsMine)
{
exObj = Instantiate (ex);
}
}

In this case the first Playerin the room can load the information of the variable exObj but the next players who enter the room can not load the information.
How fix it?