Theres gonna be multiple players in your hierarchy, how do I find my player in the hierarchy?
You could store “your player” when you Instantiate it. Instantiate returns the GO which is created.
Or you can cycle through all objects and figure out which one is the type you look for and controlled by your client. Check PhotonView.IsMine, e.g…