Is it possible to use different lighting for each player?

(Sorry if I choosed the wrong category)
Is it possible to make the “lighting” different on each player? I think I should do something with FilteringEnabled, but I am not sure.

1 Like

Well, yes nothing is impossible and whenever the player loads in the game just put all the possible lightings in replicated or server storage and put them in a table and use math.random on this table for each player but, I think that would be serversided I’m not sure wait unless your talking about the skybox?

Just manipulate the Lighting on their client, since the changes on their client won’t replicate in respect to FilteringEnabled

1 Like

Use a client sided localscript and some math.random, you could also try storing colors in a table maybe and randomly pull the colors and once the player has been detected upon joining, change their lighting, the setting is somewhere in properties. I guess this’d be the structure of the code.
You can research at anytime!

Change the properties of the lighting in a localscript (the way how we do it on a server script)
(with FilteringEnabled)

2 Likes

How can I do that?
(30 Characters)

Ok I will try this

any local scripts inside the player wont replicate to the server (others)

Thanks It worked