If you want a table of the color values with ColorSequence.new()
You need to do sequence.Keypoints
Keypoints will create a table containing all of your properties in ColorSequence.new()
I printed mine into the output to see the values:
sequence = ColorSequence.new(Color3.new(math.random(),math.random(),math.random()),Color3.new(math.random(),math.random(),math.random()))
print("First Color:")
print(sequence.Keypoints[1]) --This would be your first color
print("Second Color:")
print(sequence.Keypoints[2]) --This would be your second color
Output:
I’m not sure if this is what you’re trying to get exactly or if you want the individual RGB values. Just let me know.