Is there a way for me to find the owner of a gameobject so I can send RPC to that owner to destroy that gameobject using PhotonNetwork?
Yes, the PhotonView.Controller is who you want to send the RPC to.
It can be used as second parameter of RPC(string methodName, Player targetPlayer, params object[ ] parameters)
.
Amazing! That What I needed ! thank you so much!