How do you make a Imagelabel change colors?

Hi there. Apologies for being VERY late to the party, i was just looking at some posts regarding imagelabels and how I should code to change them. Im guessing you may have found out about this, but if not, youd use TweenService

You can also look at this as an example.

local TweenService = game:GetService("TweenService")

local part = Instance.new("Part")
part.Position = Vector3.new(0, 10, 0)
part.Color = Color3.new(1, 0, 0)
part.Anchored = true
part.Parent = game.Workspace

local goal = {}
goal.Position = Vector3.new(10, 10, 0)
goal.Color = Color3.new(0, 1, 0)

local tweenInfo = TweenInfo.new(5)

local tween = TweenService:Create(part, tweenInfo, goal)

tween:Play()

funny looking back at this since it was three years ago and this is something so simple to me nowadays, but I stopped laughing in my head once I saw the code. :moyai:

But yes, you’re right, tween service would be able to do this.