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.
I thought that whatever i place into lightning effects all the clients?
Only if a server script do that.
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")
Yep! Just checked it again and it work fine(30 charsssssss)
Indeed, you can also stack frames with different Transparency number to make it look like it’s also blurry.
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.