RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a frame blur when its open after player clicks on part"
-- local script inside the part local part = script.Parent local Players = game:GetService("Players") local player = Players.LocalPlayer local gui = player.PlayerGui.YourGuiName -- Replace with the name of your GUI local frame = gui.Frame -- Replace with the name of the frame you want to blur local function blurFrame() local blur = Instance.new("BlurEffect", frame) blur.Size = 0 for i = 1, 20 do blur.Size = blur.Size + 1 wait(0.05) end end local function onClick() frame.Visible = not frame.Visible if frame.Visible then blurFrame() end end part.MouseClick:Connect(onClick)