ead789
(ead789)
January 23, 2022, 7:39pm
#1
Im trying to make it so I can only see this icon:
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:
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:
Do the icons even exist in the first place? Or are they inserted by something upon joining the game?
If the icons do exist: check their
transparency
toggle the visible value
ead789
(ead789)
January 23, 2022, 11:22pm
#4
they appear when you join the game
ead789
(ead789)
January 23, 2022, 11:23pm
#5
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)