How do i invert screen colors?

I want the screen to have inverted colors. There’s a community tutorials post on this, but when you follow what it says, all it does is turns your screen grey. I know I will have to use a ColorCorrectionEffect but I’m not sure how.

Any help would be appreciated!

4 Likes

This will only invert the colors of the world, not the GUIs

local invert = Instance.new('ColorCorrectionEffect')
invert.Parent = game:GetService('Lighting')
invert.Saturation = -2
2 Likes

Hi, thanks for your script but all it did was make my game black and white.

1 Like

They put -1 saturation, But It inverts in -2 saturation.

1 Like

Here is the picture of the script I ran.


It may look like a -1, But zoom in to see if it’s actually -2.

1 Like

I see no black and white, They are color inverted.

3 Likes

i still see black and white, but thank you anyway

1 Like

Did you do -2 saturation? If not, change it to -2

1 Like

also, this is what it looks like without color correction

1 Like

Is Thing a ColorCorrection effect?

I think it’s the instance ‘Thing’ in the Lighting Service, making it not inverted. Try deleting it, And see if that works.

1 Like

OOOOOOHHH. I get it now. Thing was just some contrast and saturation… I see now, thank you

2 Likes