Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Hi how can i make a blur screen GUI?

Asked by 3 years ago

So i want to make a blur apear on screen or on a model(a character) when i equip a tool

1 answer

Log in to vote
0
Answered by
CDXKIE 130
3 years ago
Edited 3 years ago

If you go to lighting and click the plus, there is a blur effect there. You can go to properties and change how blurry it is by changing the “size” property

If you want to make it local, still put a blur effect there in the lighting but set the size property to 0. Then do some script in a local script in the tool like:

local parent = script.Parent
local blur = game.Lighting.blur
parent.Equipped:Connect(function()
    blur.Size = 20
    --put whatever number you want there.
end)

0
ok but how can i make it localy like only for the one that's holding the tool? tutuninjago 4 — 3y
0
Thats how. I edited the thing. CDXKIE 130 — 3y
Ad

Answer this question