The particle emitter parts aren't working (Showing up and then disappearing, like a rain shower) Please help! Thanks
01 | while true do |
02 | wait( 3 ) |
03 | game.Lighting.OutdoorAmbient = Color 3. new(. 2 ,. 2 ,. 5 ) |
04 | game.lighting.Brightness(- 10 ) |
05 | wait( 15 ) |
06 | game.Workspace.Rain.ParticleEmitter.Enabled = true |
07 | wait( 120 ) |
08 | game.Workspace.Rain.ParticleEmitter.Enabled = false |
09 | wait( 10 ) |
10 | game.Lighting.Brightness( 1 ) |
11 | game.Lighting.OutdoorAmbient = Color 3. new( 125 , 125 , 125 ) |
12 | wait( 400 ) |
13 | end |
You're actually doing this properly, your error is on line 4.
lighting
does not exist, and Brightness
is a property, not a method:
1 | game.Lighting.Brightness = - 10 |
And again on line 10:
1 | game.Lighting.Brightness = 1 |