I need a script like
1 | while true do |
2 | game.lighting.fogend = + 1 |
but actually with thought
No, use this:
1 | for i = 1 , 25 , 1 do |
2 | game.Lighting.FogEnd = game.Lighting.FogEnd+ 1 |
3 | end |
Well tried,@EDLLT
There you go bud I prefer using repeat wait() since it uses less memory.
1 | repeat wait() |
2 | game.Lighting.FogEnd = game.Lighting.FogEnd+ 1 |
3 | until nil -- Change it to something if you wanted to be limited |