I Think have something wrong, something is missing?
local light = script.Parent.SpotLight while true do light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" Workspace.Lamp.LampLight.Particles.Enabled = true Workspace.Lamp.Particles1.Particles2.Enabled = true wait(8) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(8) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" Workspace.Lamp.LampLight.Particles.transparency = 1 wait(12)
The problem is that the t transparency is capital so this should work:
Workspace.Lamp.LampLight.Particles.Transparency = 1 wait(12)
Also you are missing an end at the bottom of all your code! So the full script would be:
local light = script.Parent.SpotLight while true do light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" Workspace.Lamp.LampLight.Particles.Enabled = true Workspace.Lamp.Particles1.Particles2.Enabled = true wait(8) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(8) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" wait(0) light.Brightness = 19 Workspace.Lamp.LampLight.Material = "Neon" wait(0) light.Brightness = 0 Workspace.Lamp.LampLight.Material = "Marble" Workspace.Lamp.LampLight.Particles.Transparency = 1 wait(12) end