Quel est le script de changement de couleur pour Luaa

local part = script.Parent

while true do
    wait(.1)
    local timeoday = game.Lighting.ClockTime 
    if timeoday > 17.6 or timeoday < 6.4 then
         script.parent.BrickColor = BrickColor.new("Institutional white")
    else
        script.parent.BrickColor = BrickColor.new("Really black")
    end
end

--Script By Rigby#9052 on Discord
Undefined