How To Decrease Brightness Of ColorCorrection With TweenService?

  1. What do you want to achieve? Decrease Brightness of ColorCorrection Using TweenService.

  2. What is the issue? I can’t decrease the brightness of ColorCorrecton.

  3. What solutions have you tried so far? I tried to look at DevHub and Youtube but i din’t found a solution.

My script:

local kills100s = game.ReplicatedStorage:WaitForChild("kills100s")

kills100s.OnClientEvent:Connect(function()
	local tween = game:GetService("TweenService")
	local twinfo = TweenInfo.new(9)
	local brightness = game.Lighting.kills100
	
	
	
	brightness.Enabled = true
	local tw = tween:Create(brightness, twinfo, {
		brightness.Brightness - 0 
	})
	
	tw:Play()
end)

Why this isn’t working?

local tw = tween:Create(brightness, twinfo, {
		brightness.Brightness - 0 
	})
local tw = tween:Create(brightness, twinfo, {
	Brightness = 0 
})