trying to script a color changer for a beam but error Color.Sequence.new() :table expected
while true do
script.Parent.Color = ColorSequence.new(math.random(), math.random(), math.random())
wait(.1)
end
trying to script a color changer for a beam but error Color.Sequence.new() :table expected
while true do
script.Parent.Color = ColorSequence.new(math.random(), math.random(), math.random())
wait(.1)
end
while true do
script.Parent.Color = Color3.fromRGB(math.random(1, 255), math.random(1, 255), math.random(1, 255))
wait(.1)
end
thats not going to work as Beam uses ColorSequence not Color3
perfect thanks! i just dint know how to make a table
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.