Hi, I have a script that the particle plays when a boolean is false then it will switch to true when the particle is played but when instantiates another clone the particle doesn’t play because the boolean is true so is there a way that makes every clone has its own boolean variable.
bool played = false;
if (!played)
{
particles.Play();
played = true;
}