No title
0
September 27, 2024
lua: Pink And Purple Script
local player = game.Players.LocalPlayer
local camera = game.Workspace.CurrentCamera
-- Create the ColorCorrectionEffect
local colorCorrection = Instance.new("ColorCorrectionEffect")
colorCorrection.Name = "PurplePinkFilter"
-- Balanced purple-pink vibe settings
colorCorrection.Saturation = 1.0 -- Balanced saturation, still vibrant but not overpowering
colorCorrection.Contrast = 0.3 -- Moderate contrast to keep it bold but smooth
colorCorrection.Brightness = 0.05 -- Slight brightness for clarity
colorCorrection.TintColor = Color3.fromRGB(210, 130, 255) -- Balanced purple-pink tone
-- Parent the effect to the camera
colorCorrection.Parent = camera