local bulb = script.Parent while true do bulb.Enabled = false wait(0.1) bulb.Enabled = false end
You're supposed to set one of them to true, not both of them to false.
local bulb = script.Parent while true do bulb.Enabled = false wait(0.1) bulb.Enabled = true wait(0.2) end
also added a wait for ya