So I know that there is a instance called blur, but I have no idea how to use it. How can I make it temporarily blur the camera?
Well if you want to temporarily have it then create the blur via a script then when you want to disable it just set its size to zero via a script.
1 Like
Where would I put the blur effect? I want it to happen only when it a player joins, and only for that player. Should I do instance.new in a local script and parent it to game.workspace.Camera? Then just change it’s size to zero
Do it via a local script. That’s what I do.
Do game.Lightning since it’s a localscript it won’t affect other users:
Is it possible to change it for a specific person via a server script w/o a remote event? If not it’s fine, just wondering
Yes it is using :FireClient(PlayerInstanceHere)
No, you would just do…
local plr = game.Players.LocalPlayer
-- blur script
if plr.Name == "saouvs" then
-- changed blur script
You could do it both ways as @Cats767_99 said.