local size = 50
local blur = Instance.new("BlurEffect")
blur.enabled = true
blur.size = size
blur.parent = workspace.CurrentCamera
Hey, qu9090.
A couple things to note, if you're using a server script and trying to access CurrentCamera, I don't think that you can without access to the LocalPlayer or a Players.PlayerAdded event. Try using a LocalScript.
Also, you need to capitalize blur.Enabled, blur.Size, and blur.Parent! Those properties are CaSe sensitive.
Let me know how this works out in a LocalScript: ```lua local size = 50
local blur = Instance.new(“BlurEffect”)
blur.Enabled = true
blur.Size = size
blur.Parent = workspace.CurrentCamera ```