using System.Collections; using System.Collections.Generic; using UnityEngine; public class Tips : MonoBehaviour { private void OnEnable() { Invoke("diethis",2); } void diethis() { gameObject.SetActive(false); } }