I want to create rainbow particles coming out of a particle emitter and I think it has something to do with a color sequence because I can’t use a color3.HSV for it
“Unable to assign property Color. ColorSequence expected, got Color3”
Any help is appreciated!
Code:
local emitter = script.Parent
local hue = 0.01
emitter.Enabled = false
while true do
emitter.Color = Color3.fromHSV(hue,1,1) -- part I want to figure out
if hue < 1 then
hue += 0.01
else
hue = 0.01
end
wait(0.05)
end