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.JustinWe12723— 3y
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 muchzeyadtota37— 3y