script.Parent.Particle1.ParticleEmitter.Transparency = script.Parent.Particle1.ParticleEmitter.Transparency + 0.01
script.Parent.Particle2.ParticleEmitter.Transparency = script.Parent.Particle1.ParticleEmitter.Transparency + 0.01
I run that in a repeat loop and it stops there.
It prints something like, attempt to preform an (add) to a particle or something.
Thanks!
The transparency for particle emitters are a number sequence. So putting just a number wouldn’t work.
Do you know what I could do to slowly set it invisible?
You should read the article from the dev hub. I never used number sequence though
Ok, thank you!
(30 Words. yeah.)
KingJoseon
(ILikeBigBananas)
6
Also try to use a for loop instead of repeating the same code over again.