local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local function setupVisuals() local bloom = Lighting:FindFirstChild("GlowBloom") or Instance.new("BloomEffect") bloom.Name = "GlowBloom" bloom.Parent = Lighting bloom.Intensity = 2 bloom.Size = 24 bloom.Threshold = 0.7 local colorCorrection = Lighting:FindFirstChild("DarkenEffect") or Instance.new("ColorCorrectionEffect") colorCorrection.Name = "DarkenEffect" colorCorrection.Parent = Lighting colorCorrection.Brightness = -0.3 colorCorrection.Contrast = 0.2 colorCorrection.TintColor = Color3.new(0.7, 0.7, 0.8) end setupVisuals()