#Chromatic/rgb effect on particles not working...
6 messages · Page 1 of 1 (latest)
6 messages · Page 1 of 1 (latest)
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)
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
thank you so much