local light = script.Parent.PointLight while true do wait(.5) script.Parent.BrickColor = BrickColor.new("Really red") wait(.001) light.Color = Color3.new(255/255, 0/255, 0/255) wait(.5) script.Parent.BrickColor = BrickColor.new("Lime green") wait(.001) light.Color = Color3.new(0/255, 255/255, 0/255) wait(.5) end
"try
script.Parent:WaitForChild("PointLight")
if it still has that error, then PointLight is not a child of script.Parent" ~Answered by Azarth in the comments