Scoring System with Networking

My game is now good I can kill a player simply. But now I need a GUI Text object to display the ammount of players I killed. I know that I need a script that is the GUI script to desplay the text. And then the part of my player health has to be edited. If anyone need to see the networking player health script, tell me.

  • Felipe

SO if you have a working script that keeps track of kills then just use coding somthing like this.

`
function OnGUI () {

GUI.Label(Rect(10,20,100,50) "Kills: " + playerKills){ //playerKills being the var you set up like var playerKills : int = 0;
}
`

hope this helps :slight_smile:

}