How do I create camera filters?

I am making cut scene to add to my main game, however I would like to add visual Effects to the Players Camera but am not sure how to do so. By visual effects i mean things such as inverse colors, black and white, or saturation changing. I have seen some horror games do it before but am not sure what i have to do to achieve the same effect.

2 Likes

A simple search could have gotten you your answer, look at what the words on in this video did and alter their moves to make it satisfactory to you

2 Likes

To have camera “filters” applied to a player, you need to have certain objects parented to Lighting.

Stuff like:
ColorCorrectionEffect | Documentation - Roblox Creator Hub For brightness, saturation, contract, color tint
BloomEffect | Documentation - Roblox Creator Hub For bloom
BlurEffect | Documentation - Roblox Creator Hub For blur
SunRaysEffect | Documentation - Roblox Creator Hub For sun rays

If you want to change the “camera filter” to be unique for each player, you will need a local script to handle the “camera filter” objects parented to lighting.

3 Likes