// Jimmy Vegas Unity Tutorials // This script is for your credits using System.Collections; using System.Collections.Generic; using UnityEngine; public class CreditScript : MonoBehaviour { public GameObject execProd; public GameObject theCred; void Start () { StartCoroutine(RollCreds()); } IEnumerator RollCreds() { yield return new WaitForSeconds(0.5f); execProd.SetActive(true); yield return new WaitForSeconds(3); execProd.SetActive(false); theCred.SetActive(true); } }