How do you make fog that obscures part of the map depending on where you are? A kind of eerie fog?
Under lighting there is a property for FogEnd, FogFtart and FogColor. You can use these properties to create fog. They can also be modified through a script.
It would look something like this:
1 | game.Lighting.FogEnd = 1000 |
2 | game.Lighting.FogStart = 1 |
3 | game.Lighting.FogColor = Color 3. new( 192 / 255 , 192 / 255 , 192 / 255 ) |
Go into lighting > Fogend > Set it to what ever value.
Dont increase fogstart as it will make the fog less opaque