Helipad lights not blinking. (Looping issue)

I didn’t make the helipad heh so I assume @MasterRobloxer0112 will whenever he’s back.

Right, sorry.
im getting the people mixed up

1 Like

Did the code I provided a bit ago work?

local function alternate(status)
	for i, v in pairs(game.Workspace.HelipadLight:GetChildren()) do
		v.PointLight.Enabled = status
		if status then
			v.Color = Color3.fromRGB(255,90,90)
		else
			v.Color = Color3.fromRGB(70, 70 , 70)	
		end
			
	end
end

while true do
	alternate(false)
	wait(1)
	alternate(true)
	wait(0.1)
	alternate(false)
	wait(0.1)
	alternate(true)
	wait(0.1)
end