Re: MovableMan:AddParticle() Quantity
You have to do it one at a time. Something like this would work for what you're thinking though.
Code:
for i = 0 to 10 do
local particle = new particle (pseudocode)
movableman.addparticle(particle)
end
I am unsure if for loops are done that way, but that's the general algorithm.