How do I make it so only I can see this image?

Im trying to make it so I can only see this icon:
Screenshot 2022-01-23 133515

But I have no clue how to do that and there is no information I can find on this can someone help me?

Also, The icons only appear when you join the game they don’t show up in studio:
Screenshot 2022-01-23 133444

So can someone help me with this?

1 Like

Maybe doing this will work

if player.Name == --[[your name here]] then
     icon.Visible = true
end

Because this will make it so that it only appears when you are the person in the client

Here are some troubleshooting steps to see the icons in studio:

  1. Do the icons even exist in the first place? Or are they inserted by something upon joining the game?

  2. If the icons do exist: check their

  • transparency
  • toggle the visible value

they appear when you join the game

how will I manage to put the script in while im in the game?

You don’t have to, try this

game.Players.PlayerAdded:Connect(function(player)
    local GUI = player.PlayerGui:WaitForChild("GuiName").pathToImagesFromGui

    if GUI then
        if player.Name == "Your name" then
            GUI.Visible = true
        end
    end 
end)