Visual effects for only one player?

I need a single client, or one player, for their screen to get blurred / darkened, but I don’t know how to get only their screen to have that effect.

If you have any suggestions, please let me know. All help appreciated.

You would simply do this in a LocalScript.
For example this script will only give you a blur effect.

local userId = 1822597612

local Players = game:GetService("Players")
local Lighting = game:GetService("Lighting")

local player = Players.LocalPlayer

if player.UserId == userId then
	local blur = Instance.new("BlurEffect")
	blur.Parent = Lighting
end

if you mean you want to add an effect to one player in the game you can use remote events
if its a specific player then do what Brambes suggested

1 Like

That would make it useless unless the blur effect’s parent is changed to the current camera workspace.CurrentCamera

1 Like

Thank you, I tried this and it worked

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.