of     1   

excellentAnarchy
#138870594Tuesday, July 01, 2014 4:40 PM GMT

Changing a light's colour would be: local lt = script.Parent.PointLight while true do lt.Color = BrickColor.new(math.random(0,255),255,math.random(0,255),255,math.random(0,255),255) wait(0.2) end -- im new and it seems fine to me :/
Bebee2
#138871545Tuesday, July 01, 2014 4:49 PM GMT

local lt = script.Parent.PointLight while true do lt.Color = BrickColor.new(math.random(0,255)/255,math.random(0,255)/255,math.random(0,255)/255) wait(0.2) end
excellentAnarchy
#138871937Tuesday, July 01, 2014 4:54 PM GMT

I thought of that myself, but it doesn't seem to be changing a PointLight to a different colour?
YeahNick
#138872278Tuesday, July 01, 2014 4:58 PM GMT

Use Color3.new BrickColor.new is used for bricks.
excellentAnarchy
#138875190Tuesday, July 01, 2014 5:28 PM GMT

Thank you :)

    of     1