How to change particle emitter properties

I wanted to change the particle emitters properties but when i tried it i couldn’t get it to work, i read some posts it needs two numbers? what? i don’t understand this

ive tried:

workspace.part.ParticleEmitter.rate = 5

it didn’t work

and i wanted to loop it

while task.wait(1) do
workspace.part.ParticleEmitter.rate += 1
end

or

repeat
workspace.part.ParticleEmitter.rate +=1
until workspace.part.ParticleEmitter.rate == 100

but that did also not work, now can someone explain me why they don’t work? why can’t i change the properties like i can change in a sound? i mean properties can be changed if you change the value right? but why doesn’t it work on Particle emitters?

The documentation tells you everything you need to know.

It does work on particle emitters. Did you mean ParticleEmitter.Rate instead of ParticleEmitter.rate?

1 Like

Thank you so much! now i understand particle emitters

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.