I have this script working for one light and its working, but how can i use it for a empty that contains many lights without applying it to every light individualy inside the empty
public Light Light;
void OnTriggerEnter(Collider other) {
if (other.gameObject.tag == "Player")
Light.enabled = true;
Thanks in advance – my first question