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

How do you enable/disable something (Particle Emitter)?

Asked by 10 years ago

The particle emitter parts aren't working (Showing up and then disappearing, like a rain shower) Please help! Thanks

01while true do
02    wait(3)
03    game.Lighting.OutdoorAmbient = Color3.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 = Color3.new(125,125,125)
12    wait(400)
13end

1 answer

Log in to vote
3
Answered by
adark 5487 Badge of Merit Moderation Voter Community Moderator
10 years ago

You're actually doing this properly, your error is on line 4.

lighting does not exist, and Brightness is a property, not a method:

1game.Lighting.Brightness = -10

And again on line 10:

1game.Lighting.Brightness = 1
0
Ah, ok thank you branflakes1099 30 — 10y
Ad

Answer this question