Elimde böyle bir script var fakat bunu objeyi yok etme değilde yükleme yapmasını istiyorum. Örnek; bir süre geçtikten sonra kodu hangi objeye eklersem o obje ortaya çıksın istiyorum. Bu konuyla ılgılı alttaki kodu güncelleyip yazabilicek olursa çok sevinirim.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class uzunyok : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        Destroy(this.gameObject, 10);
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}