Here is my script
01 | local Rain = game.Workspace.Weather.RainArea.ParticleEmitter |
02 | local Snow = game.Workspace.Weather.SnowArea.ParticleEmitter |
03 | local RainSky = game.ServerStorage.Rain |
04 | local Clone = RainSky:Clone() |
05 |
06 | function rainOn() |
07 | Rain.Enabled = true |
08 | game.Workspace.Sound:Play() |
09 | Clone.Parent = game.Lighting |
10 | print ( "Rain Turned On" ) |
11 | end |
12 |
13 | function rainOff() |
14 | Rain.Enabled = false |
15 | game.Workspace.Sound:Stop() |