#Chromatic/rgb effect on particles not working...

6 messages · Page 1 of 1 (latest)

tacit imp
#

Whenever I try to make a chromatic/rgb effect on particles it doesn't work

(the script goes inside the particles)
Here's a script EXAMPLE:
while true do
script.Parent.Color = Color3.new(255,0,0)
wait(1)
script.Parent.Color = Color3.new(0,255,0)
wait(1)
script.Parent.Color = Color3.new(0,0,255)
wait(1)
end)

thorny ravine
#

colorsequence

#
while true do
    script.Parent.Color = ColorSequence.new(Color3.new(255,0,0))
    wait(1)
    script.Parent.Color = ColorSequence.new(Color3.new(0,255,0))
    wait(1)
    script.Parent.Color = ColorSequence.new(Color3.new(0,0,255))
    wait(1)
end
tacit imp
#

thank you so much