#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)

spark topaz
#

need help (horror game)

clever vine
#

what does.. censored eyes mean? 😟

#

do you mean blur?

timber dagger
#

billboard gui? 😭 what is censored eyes

tiny musk
#

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

spark topaz