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

Can somebody help me with my weather script? The rain sound effect won't play.

Asked by
kom297 -4
6 years ago
Edited 6 years ago

Here is my script

01local Rain = game.Workspace.Weather.RainArea.ParticleEmitter
02local Snow = game.Workspace.Weather.SnowArea.ParticleEmitter
03local RainSky = game.ServerStorage.Rain
04local Clone = RainSky:Clone()
05 
06function rainOn()
07    Rain.Enabled = true
08    game.Workspace.Sound:Play()
09    Clone.Parent = game.Lighting
10    print("Rain Turned On")
11end
12 
13function rainOff()
14    Rain.Enabled = false
15    game.Workspace.Sound:Stop()
View all 35 lines...
0
I think you need to play the sound on the client ... i think ForeverBrown 356 — 6y
0
Where is that? kom297 -4 — 6y
0
Why is the clone going in Lighting? Lighting is not meant for storage. User#24403 69 — 6y
0
Its a sky kom297 -4 — 6y
View all comments (5 more)
0
if your question is where is the client .. then my question to you is, do you know what filtering enabled is? ForeverBrown 356 — 6y
0
Just to clarify, this a normal script in workspace, correct? If it is, make sure your sounds are also in workspace. (They can be played across the server if called on the server) Lugical 425 — 6y
0
Yeah its in workspace kom297 -4 — 6y
0
And its a normal script kom297 -4 — 6y
0
I just updated what my script is now kom297 -4 — 6y

Answer this question