Can i make a blur effect like on a frame so only that player sees it?

The lightning is always replicated to other clients so i can’t put the blur effect there i only want the blur to be for that player only using BlurEffect

Well you could add a BlurEffect into Lighting service LOCALLY so only one person can see it.

2 Likes

I thought that whatever i place into lightning effects all the clients?

Only if a server script do that.

1 Like

So i can make a local script and Instance.new(“BlurEffect”) in the lightning

yes,

you can do the following:

--this is a localscript
local blurEffect = Instance.new("BlurEffect")
--change some properties of the blurEffect if needed..
blurEffect.Parent = game:GetService("Lighting")
1 Like

Yep! Just checked it again and it work fine(30 charsssssss)

1 Like

Indeed, you can also stack frames with different Transparency number to make it look like it’s also blurry.

1 Like

Alright thank you guys i will try the blur and the frame method thanks!!

Anything you want to be done for the player can be done on the client (through LocalScripts). Similar to what people mentioned above, you can just do:

LocalScript

BlurEffect.Enabled = true // change BlurEffect to your blur object

And as far as I know, I thought that BlurEffects had to be in Lighting to be visible anyways: so doing so wouldn’t have an impact on whether only 1 person could see it (or everyone) as it’s dependent on whether you do it on the client or server, as opposed to what container you put it in.

1 Like