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

Tweening not working properly, help?

Asked by 5 years ago
Edited 5 years ago

I am trying to tween the lighting's ColorShift_Top seamlessly while also making time go by. I made this script:

01local Glows = {
02    ["Morning_Glow"] = Color3.fromRGB(255, 140, 35),
03    ["Noon_Glow"] = Color3.fromRGB(255, 255, 125),
04    ["Evening_Glow"] = Color3.fromRGB(175, 45, 5),
05    ["Night_Glow"] = Color3.fromRGB(15, 20, 75)
06}
07 
08local function GetGlow()
09    local CT = Lighting.ClockTime
10 
11    if CT > 6 and CT <= 8 then
12        return Glows.Morning_Glow
13    elseif CT > 8 and CT <= 16 then
14        return Glows.Noon_Glow
15    elseif CT > 16 and CT <= 18 then
View all 35 lines...

(Some parts not included.)

But when it tweens, it is vey slow. I know this is due to tweens overlapping, but how can I fix this? I need the tween to play in the "Background," with the rest of the script still running.

EDIT: The tweeninfo is:

1TweenInfo.new(1.5, Enum.EasingStyle.Quad, Enum.EasingDirection.In)

1 answer

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

Ok, here's how I fixed it. I first defined the colorTween as a filler tween in the start of the script:

1local colorTween = TS:Create(Lighting, TI, {ColorShift_Top = Color3.fromRGB(0,0,0)})

This does nothing until the ambient changes, at which point it would check the playback state:

1if Ambient == NewAmbient then
2    Lighting.ColorShift_Top = NewAmbient
3else
4    if colorTween.PlaybackState ~= Enum.PlaybackState.Playing then
5        colorTween = TS:Create(Lighting, TI, {ColorShift_Top = NewAmbient})
6        colorTween:Play()
7    end
8end

This prevents it from running while it's already running.

0
You deserve an upvote mate. Block_manvn 395 — 5y
Ad

Answer this question