I'm trying to tween a color3 of my TextLabel's BorderColor3 from Color3.RGB(0,0,0) to Color3.RGB(0,200,0). I've been checking tutorials but none of them are helping me.
--First, we get the TweenService local TweenService = game:GetService("TweenService") --Second, we get our TextLabel and set out goal local TextLabel = script.Parent local Goal = {BorderColor3 = Color3.fromRGB(190,150,20)} --And lastly,we create our Tween local TweenSetting = TweenInfo.new(1) local Tween = TweenService:Create(TextLabel,TweenSetting,Goal) --Now we can play our Tween Tween:play()