Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a looped particle transparency script?

Asked by 2 years ago

Hello! I want to know how to make a looped particle transparency script, which modifies the particle transparency at moments when I run the script. This is what I came up with but it doesn't work. I would be glad if someone were to help me.

Thanks!

Code:

local particle = script.Parent.ParticleEmitter

while true do
    particle.Transparency = 0
    wait(24)
    particle.Transparency = 1
    wait(10)
end
0
Can you be more specific? Antelear 185 — 2y

Answer this question