is there a way to set the max value past 10 to make It bigger?
2 Likes
Enter a higher value in the size < numbersequence to increase the size of the particles.
i tried but it won’t work, when i enter the size past 10 it won’t aply to the particle and when i check it, it return back to 10
1 Like
sadly the limit is 10
even if you put in a box, it still doesn’t work
You should be able to make it bigger with a script. I did once, you need to use NumberSequences
I believe.
Code like this should work. Run this in the command bar while you have the particle emitter selected:
local theValueYouWantToBeAbove10 = 20
local particle = game:GetService("Selection"):Get()[1]
particle.Size = NumberSequence.new{
NumberSequenceKeypoint.new(0, theValueYouWantToBeAbove10),
NumberSequenceKeypoint.new(1,0)
}
-- NumberSequenceKeypoint.new(time: 0-1, value: 0-???)
To customize this code a bit more read the documentation here:
8 Likes
Download the plugin, Better particule. WIth thisplugin you can increase the max height value of you particule.
5 Likes