SetParent gameobject

Options
How can I set a parent in a transform for all players in the room using PUN?

public void istan()
{
GameObject bullet = PhotonNetwork.Instantiate(Bullet.name, Bulletpos.position, Quaternion.identity);
bullet.transform.SetParent(gameObject.transform);
}