Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

how do i fix this tween script making the colors flash?

Asked by 5 years ago

ive tried changing the settings but it seems to still be flashing random colors it is meant to fade to grey then to black

local TweenService = game:GetService("TweenService")
local LColor = workspace.Lobby.Detail.LColor.Color

local goal = {}
goal.Color = Color3.new(106, 57, 9)


local tweenInfo = TweenInfo.new(10, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, -1, true)

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

tween:Play()
0
I think I know what the problem is, but I need to know what LColor is RiskoZoSlovenska 378 — 5y
0
a object ForgotenR4 68 — 5y
0
i mean model ForgotenR4 68 — 5y

1 answer

Log in to vote
0
Answered by
rokedev 71
5 years ago

not sure but you might want to just change the goal to a variable instead of table

local goal = Color3.new(106, 57, 9)
0
no it needs to be a table ForgotenR4 68 — 5y
Ad

Answer this question