Persatuan Pemicu Level Berikutnya

   //add "using UnityEngine.SceneManagement;" below the "using UnityEngine;" that automatically appears so you can access your scenes
   
   void OnTriggerEnter()
    {
        SceneManager.LoadScene("Nivel 2"); //whatever your level is called goes where I put "Nivel 2"
    }
Funny Bunny