I want to make this color effect change like Jojo timestop effect but everything turned black
local Color = game.Lighting.ColorCorrection.TintColor
--Inverse Color's Components
local r, g, b = 255,255,255
r = 255 - (Color.R*255)
g = 255 - (Color.G*255)
b = 255 - (Color.B*255)
Color = Color3.fromRGB(r,g,b) -- I used Color3 but idk if that works cus TintColor's children are seperate R G B values 0-1
any help?