Need help with making a blur script

Does anyone know how can I make something like an Aperiphobia blur effect when you click escape or on the core settings gui button? (aka the Roblox icon on the top left on every game)

There should be blur available as an object in a screen gui, failing that you can create a gui and change its transparency as a whole

1 Like

I actually used MenuOpened and MenuClosed functions instead. your method is still kinda right though, it just took me awhile to figure it out. thanks for the help anyway.

For anyone wondering, here is the full script. I hope this helped anyone else who wanted to know how to make this.

Note: Add it in a local script under starter GUI, Feel free to customize it

local GuiService = game:GetService("GuiService")
local blur = game.Lighting.Blur

GuiService.MenuOpened:Connect(function()
	blur.Enabled = true
end)

GuiService.MenuClosed:Connect(function()
	blur.Enabled = false
end)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.