-- Coloque em ServerScriptService local Lighting = game:GetService("Lighting") -- Deixa o ambiente avermelhado Lighting.Ambient = Color3.fromRGB(120, 0, 0) Lighting.OutdoorAmbient = Color3.fromRGB(180, 0, 0) Lighting.ColorShift_Top = Color3.fromRGB(255, 0, 0) Lighting.ColorShift_Bottom = Color3.fromRGB(100, 0, 0) Lighting.Brightness = 2 -- Cria efeito vermelho local cc = Instance.new("ColorCorrectionEffect") cc.Parent = Lighting cc.TintColor = Color3.fromRGB(255, 40, 40) cc.Saturation = -0.2 cc.Contrast = 0.3 print("Céu de sangue ativado")