-- ANTI EFEITO ROSA PERMANENTE (GLINDA) -- Marvel Omega | Delta Executor local Lighting = game:GetService("Lighting") -- Função que limpa qualquer efeito rosa local function cleanEffects() for _,v in pairs(Lighting:GetChildren()) do if v:IsA("ColorCorrectionEffect") then v.Brightness = 0 v.Contrast = 0 v.Saturation = 0 v.TintColor = Color3.fromRGB(255,255,255) end if v:IsA("BloomEffect") then v.Intensity = 0 end end end -- Loop constante (leve, não pesa) task.spawn(function() while true do cleanEffects() task.wait(0.15) end end) print("✔ Anti tela rosa ativado permanentemente")