SÅDAN LAVER DU EN KUN OWNER GUI

1, LAV DIN GUI

2, put en script i serverScriptService

3, put gui i scripten

4, paste den her kode i scripten

5, ændre script navnet til Admins

local admins = {275424214214} --change this to your userid

game.Players.PlayerAdded:Connect(function(plr) -- When a player joins
	for i,v in pairs(admins) do -- Go through the values in the table called admins
		if v == plr.UserId then -- if the id in the table
			local cl = script.BanGUI:Clone() -- change Bangui to gui's name
			cl.Parent = plr.PlayerGui 
		end
	end
end)