#How do i make it so specifically one person (in this case me) has censored eyes but no one else?
9 messages · Page 1 of 1 (latest)
billboard gui? 😭 what is censored eyes
do you have the player name or userid?
or do u have something that gets the player
if u do, u can loop through players and add an effect or a blur
for _,players in ipairs(game.Players:GetPlayers()) do
if players.Name == "plr name" then -- if players.UserId == userid then
local effect = Instance.new("BlurEffect")
effect.Parent = game.Lighting
print('Yippe')
end
end
no