Particle.Orientation = VelocityParallel not working?

Hi!

I could not find any information in regards on how to script a change in the Particle Orientation.

Problem: creating a particle instance and scripting the orientation to “VelocityParallel”

Failed Attempt:

local particleEmitter = Instance.new("ParticleEmitter")
particleEmitter.Enabled = false
particleEmitter.Orientation = VelocityParallel -- this is not recognized 

I try to find if it was an enum property or if it was under another category without luck.

Thank you for your help.

Space

It is an enum property

particleEmitter.Orientation = Enum.ParticleOrientation.VelocityParallel
1 Like