I want this script to go directly to another color, not slowly Please help me with this, Thanks!
-- Again, LocalScript in StarterPlayer.StarterPlayerScripts local RS = game:GetService('RunService') local tweenService = game:GetService('TweenService') local waitTime = 0.25 local easingStyle = Enum.EasingStyle.Linear local easingDirection = Enum.EasingDirection.In local colorTweenInfo = TweenInfo.new(waitTime, easingStyle, easingDirection, 0, false, 0) local soundie = game.Workspace.Sound local part = game.Workspace.T local function getNewColor() local pLoudness = soundie.PlaybackLoudness local randX = math.random(0, pLoudness) / 800 local randY = math.random(0, pLoudness) / 800 local randZ = math.random(0, pLoudness) / 800 local newColor = Color3.new(randX, randY, randZ) return newColor end local function createColorTween() local newColor = getNewColor() local tween = tweenService:Create(part, colorTweenInfo, {Color = newColor}) return tween end while true do wait(0.1) if soundie.IsPlaying then local tween = createColorTween() tween:Play() tween.Completed:Wait() end end