Color3 to ColorSequence

I have a trail but it uses ColorSequence and thought that it would be easier to convert my Color3 value to ColorSequence

2 Likes

Easy

Just simply do this

local Colors = Color3.fromRGB(0,0,0)

local Colored = ColorSequence.new(Colors)

Trail.Color = Colored
15 Likes