Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you make fog?

Asked by 10 years ago

How do you make fog that obscures part of the map depending on where you are? A kind of eerie fog?

2 answers

Log in to vote
2
Answered by
Dom2d2 35
10 years ago

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:

game.Lighting.FogEnd = 1000
game.Lighting.FogStart = 1
game.Lighting.FogColor = Color3.new(192/255, 192/255, 192/255)
Ad
Log in to vote
1
Answered by 10 years ago

Go into lighting > Fogend > Set it to what ever value.

Dont increase fogstart as it will make the fog less opaque

Answer this question