Why does my game window freeze after I click to change the scene?

Hi,
Try to comment this.scene.stop(“StartScene”);

//Click move to next scene
    this.input.on("pointerup", () => {
      // this.scene.stop("StartScene");
      this.scene.start("PlayScene");
    });
1 Like