So, I'm looking to run a script on a players client that basically activates 2 -1 saturation color correction effects to invert the colors on their screen and their screen only, but I've only been scripting for a few months, and I'm not really ready to write complex code.
here is the code:
game.Workspace.Five.Touched:Connect(function(hit)
if hit.Parent == game.Players.LocalPlayer.Character then
game.Lighting.inverted1.Enabled = true
game.Lighting.inverted2.Enabled = true
end
end)