I'm curious on how to make a normal light object flicker randomly. I'm a new scripter and trying to understand this.
Use loops so it goes on forever. Then just change the light.enabled from true to false.
while wait() do script.Parent.PointLight.Enabled = false wait() script.Parent.PointLight.Enabled = true end
Make sure the script is in a brick with a light in it. If it doesn't work check to see if the light is named "PointLight".
Hope this helps.