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

quick question - what is the classname of ParticleEmitter?

Asked by
14dark14 167
4 years ago

Made a script that didn't work was curious why.

( not full script )

for i, v in pairs(particle) do
    if v:IsA("ParticleEmitter") then
        v:Destroy()
    end
end

2 answers

Log in to vote
0
Answered by
herrtt 387 Moderation Voter
4 years ago

ParticleEmitter. The ClassName is literally ParticleEmitter.

https://developer.roblox.com/en-us/api-reference/class/ParticleEmitter

0
yeah, turns out my script was the issue 14dark14 167 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

It's just "ParticleEmitter", if you want to see just look at the properties of the Instance and find "ClassName"

Answer this question