How to display player coins on multiplayer

Hi,
I have an doubt that how to display player coins on photon multiplayer.
Can you give me some suggestions or give some guidance to workout this.

Hi,
Thanks for your responses.
I have found some Stuff on PunTutorial Package.
Here having three Methods for score.

  1. PhotonNetwork.player.GetScore(int);
  2. PhotonNetwork.player.SetScore(int);
  3. PhotonNetwork.player.AddScore(int);
    Through this we can send our score to all players in who are in room.
    Thanks.