using UnityEngine; using UnityEngine.SceneManagement; public class splash : MonoBehaviour { public float delay = 3f; // Waktu tampilan splash dalam detik void Start() { Invoke("LoadMateriScene", delay); } void LoadMateriScene() { SceneManager.LoadScene("Materi2"); // Ganti dengan nama scene materi } }