unity gameObject.findobjectswith tag Conjunto ativo
//ESEMPIO
public GameObject Player;
public void Start()
{
Player = GameObject.FindGameObjectWithTag("PLAYER TAG").SetActive(false);
}
FilippoCaio_italy