A little late but this script works fine all you gotta do is make a text mesh and assign it.
public TextMesh text;
// Use this for initialization
void Start () {
text.text = photonView.owner.name;
}
// Update is called once per frame
void Update () {
}
↧