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

How to make a Blur For LocalPlayer?

Asked by 5 years ago

How to make a blur for local player but

kepex = Instance.new("BlurEffect",game.Workspace.CurrentCamera) kepex.Size = 24 game.Players.LocalPlayer.CurrentCamera.kepex.Size = 0

and currentcammera is not valid member of LocalPlayer I need help

0
Is this in a local script? turtle2004 167 — 5y
0
yes MachoPiggies 526 — 5y
0
Put it in lighting, not the camera. Garmadon455 0 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago
local kepex = Instance.new("BlurEffect")
kepex.Parent = workspace.CurrentCamera
kepex.Size = 24
workspace.CurrentCamera.kepex.Size = 0
0
The `parent` parameter of `Instance.new()` is deprecated. Zafirua 1348 — 5y
0
OH try now MachoPiggies 526 — 5y
0
shouldn't kepex.Parent come last? xxXTimeXxx 101 — 5y
Ad
Log in to vote
-2
Answered by 5 years ago
kepex = Instance.new("BlurEffect")
kepex.Parent = game.Lighting

Answer this question