How can I create character model using Photon

I have this function to create new player using photon

PhotonLoadBalancingPlayCanvas.prototype.createOtherPlayerEntity = function (actor) {
    var app=this.app;
    const { actorNr } = actor;
    const entity = app.root.findByName("Player TPC");
    entity.enabled=true;
    entity.setLocalScale(1,1,1);
    entity.setLocalPosition(0,0.903,0);
    entity.name = actorNr;
    this.app.root.children[0].addChild(entity);
};

Problem is that player joined the room but are not visible

Player TPC is my player model .I want other players to look same like my model

It would be a great help If someone can resolve this issue .

Hi @Lew_Drago!

Have you already seen the manual page below?

https://developer.playcanvas.com/en/tutorials/real-time-multiplayer-photon/