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

How do I add blur to a player locally?

Asked by
oliras3 15
7 years ago

im making a gui and i want to add blur to the background of the gui. i looked around google but could only make it blur globally

2 answers

Log in to vote
3
Answered by 7 years ago
local Camera = game.Workspace.CurrentCamera

local Blur = Instance.new(
    "BlurEffect"
    , Camera
)
Blur.Size = 56
1
Side-note: this should be done in a localscript. systack 123 — 7y
Ad
Log in to vote
0
Answered by 7 years ago
Edited 7 years ago

Have FE enabled then in a localscript in StarterGui Instance.new("BlurEffect", game.Lighting) or however the capitals work for BlurEffect.

0
Using FE to do things locally is fine, but since not everyone knows how to use FE, it's better to stick with traditional local methods. plasma_node 343 — 7y

Answer this question