Okay heres a script for a blinking light. script is in part
wait(1) while true do script.Parent.PointLight.Brightness = 0 wait(2) script.Parent.PointLight.Brightness = 30 end
Any helpers?
As Tempestatem's comment said, it should work just fine. I don't think you need the first line however.