Its a script in serverscriptservice so only i can see it. It works but when i reset or die then it deletes it self. CP is the GUI
local allowed = {"jakubiscool5", "Nobody"} game.Players.PlayerAdded:Connect(function(player) for i, v in pairs(allowed) do if player.Name ==v then script.CP:Clone().Parent = player:WaitForChild("PlayerGui") end end end)
local Players,gui=game.Players,script.CP local allowed = {"jakubiscool5", "Nobody"} gui.ResetOnSpawn=false local function onPlayerAdded(player) if table.find(allowed,tostring(player))then wait()gui:Clone().Parent=player.PlayerGui end end;Players.PlayerAdded:Connect(onPlayerAdded) for _,v in ipairs(Players:GetPlayers())do onPlayerAdded(v) end