unity gameobject.findobjectswith tag set active

Code Example - unity gameobject.findobjectswith tag set active

                
                        //ESEMPIO

public GameObject Player;

public void Start()
{
	Player = GameObject.FindGameObjectWithTag("PLAYER TAG").SetActive(false);
}