ColorSequence Help error

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
2 Likes
while true do 
	script.Parent.Color = Color3.fromRGB(math.random(1, 255), math.random(1, 255), math.random(1, 255))
	wait(.1) 

end
2 Likes

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.