For example, if I have a magicEffect, with a script attached to it, and the script keeps track of something, counting onHit() events for example, via a 'int counter' variable. If I apply this magicEffect to 5 different actors, does each actor have an 'instance' of my script, and their own independent 'counter' variable? Or do I need to define a list of Actors[5] and counter[5] in my script to keep track of this independently for each?
Thanks!