RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"change all lighting every 5 seconds"
-- local script (StarterScript) local Lighting = game:GetService("Lighting") while true do wait(5) local randomColor = Color3.new(math.random(), math.random(), math.random()) Lighting.Ambient = randomColor Lighting.OutdoorAmbient = randomColor Lighting.FogColor = randomColor end