RGB to Color sequence problem

Hello there, what im trying to achieve is to convert RGB to Color sequence

I’m making a trail where it colors it as the handle of the tool

-- For example
        local Trail = game.ServerStorage.KnifeTrail:Clone()
		Trail.Parent = FlyingHandle
		Trail.Attachment0 = Attachment0	
		Trail.Attachment1 = Attachment1
		Trail.Color = Handle.Color -- Here is the problem

Any help would be appreciated!

One of the constructors takes a single Color3 and uses that color for both of the endpoints.

game.ServerStorage.KnifeTrail.Color = ColorSequence.new(Handle.Color)
1 Like