Hello! I am Domderp999. a Live Event Creator. I am wondering, how can I make particles… Spin? Spinning particles is something that is completely possible on roblox. I have seen it before. How can I make particles spin?
I mean what you can do is make a part have a spin script (sadly I do not script so I don’t know the code, but you can find it in here, devforum or youtube) and then on top of that, add a particle. Run the game and see what happens!
1 Like
Alrighty,
Start with a spinning part script like this,
(Script inside the part you want to use.)
while true do
script.Parent.CFrame = script.Parent.CFrame * CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 00.1, 0)
wait()
end
(You can mess with the code part if the orientation of the part is different.)
Then open your particle’s properties and find “Lock to part”
Turn that on.
Then BAM! Spinning particle.
1 Like
A video example would be helpful, as I’m not exactly sure what you mean.
If you are referring to the individual particles themselves spinning, then you can just mess with the .RotSpeed property of your ParticleEmitter.