Hello I’m having trouble with me code. When ever I run the script the parts do not change to neon and just stay as smooth plastic.
-- Locals --
local Frist = {"Part1","Part11","Part111"}
local Second = {"Part2","Part22","Part222"}
local Thrid = {"Part3","Part33","Part333"}
local Fourth = {"Part4","Part44","Part444"}
-- Light Change Script --
while true do
Second.Material = Enum.Material.SmoothPlastic
Frist.Material = Enum.Material.Neon
wait(2)
Frist.Material = Enum.Material.SmoothPlastic
Second.Material = Enum.Material.Neon
wait(2)
Second.Material = Enum.Material.SmoothPlastic
Thrid.Material = Enum.Material.Neon
wait(2)
Thrid.Material =Enum.Material.SmoothPlastic
Fourth.Material =Enum.Material.Neon
wait(2)
Fourth.Material = Enum.Material.SmoothPlastic
end