Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to blind specific players (prevent him from seeing)?

Asked by 2 years ago

I have a tool that should blind all players except the one holding it, how can I do so?

 for _, player in pairs(game.Players:GetPlayers()) do
    if player ~= tool.Parent then
        -- What should I do here to blind the player?
    end
 end
0
Maybe you could just cover their entire screen with a blank gui or set their camera to look at a blank wall. JustinWe12 723 — 2y
0
I never new I can make the Gui look different for each player, sorry for that I'm new to roblox development, and thanks for helping so much zeyadtota3 7 — 2y

Answer this question