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

what am i supposed to be doing...? (NumberSequence)

Asked by 8 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

i REALLY need someone to explain this to me,

workspace.Bubba.Torso.ParticleEmitter.Size = NumberSequence.new(.1,1.5)

im trying to make it so it starts small and gets bigger

EDIT: it only uses the last number, it doesnt transition it

2 answers

Log in to vote
0
Answered by 8 years ago

It doesn't only apply the last number, its just the sequence goes so fast. Heres a better way:

for i = 10,150 do   
--this for i statement repeats the code below over again
--until 10 through fifteen replace the variable i in the
--code below
Workspace.Bubba.Torso.ParticleEmitter.Size = i/100
wait(0.5) --change this to how ever long you want
end
Ad
Log in to vote
-2
Answered by
Vid_eo 126
8 years ago

****That means that the Particle emmiter's particle size starts at a size of .1, and proggresses to 1.5..

Ask me any questions!

0
it only uses the last number and applies is to thae size tho bubbaman73 143 — 8y

Answer this question