I madede a gui that is supposed to only be seen by me, the problem is that when i respawn it is gone.
Can anyone help me here?
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function()
if plr.Name == "Faczki" then
script.ControlPanel.Parent = plr.PlayerGui
end
end)
end)
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function()
if plr.Name == "Faczki" then
local gui = script.ControlPanel:Clone()
gui.Parent = plr.PlayerGui
end
end)
end)