how to hide and show objects using code Unity code example
Example: how to hide and show object in unity script
GameObject cat;
cat.SetActive(false); // false to hide, true to show
GameObject cat;
cat.SetActive(false); // false to hide, true to show