(line 21 is local auxOff = colorsub(aux.Color, alpha)
)
Developer hub solutions are either ones using rgb (inaccurate), unrelated (“similar” to my problem) or ones I have already tried.
local alarms = script.Parent
local alarmValues = game:GetService('ServerStorage'):WaitForChild('Alarms')
local ts = game:GetService('TweenService')
local tiin = TweenInfo.new(0.4, Enum.EasingStyle.Exponential, Enum.EasingDirection.In)
local tiout = TweenInfo.new(0.4, Enum.EasingStyle.Exponential, Enum.EasingDirection.Out)
function colorsub(color:Color3, alpha:number)
return color:Lerp(Color3.new(0,0,0), alpha)
end
task.wait(2)
local aux = alarms.Auxilliary
local warning = alarms.Warning
local master = alarms.Master
local mute = alarms.Mute
local sec = alarms.Security
local alpha = 0.3
local auxOff = colorsub(aux.Color, alpha)