Im trying to make a block and surface light change color within a script, but isnt working Here is the script light=script.Parent lightbulb = script.Parent.SurfaceLight while true do light.Color = Color3.new(255,0,0) lightbulb.Color = ################### ######### ########### = Color3.new(255,140,0) lightbulb.Color = ##################### ######### ########### = Color3.new(255,255,0) lightbulb.Color = ##################### ######### ########### = Color3.new(0,255,0) lightbulb.Color = ################### ######### ########### = Color3.new(0,0,255) lightbulb.Color = ################### ######### ########### = Color3.new(140,0,255) lightbulb.Color = ##################### ######### ########### = Color3.new(255,0,255) lightbulb.Color = Color3.new(255,0,255) wait(1.5) end it changes color from black->orange->black->green idk whats wrong |