I've seen some games where only the creator had a Gui and others not. How do I do that?
This is in fact very easy! All we need to do is add a player added event and check if the player is the owner!
Out this in a server script in worskapce or ServerScriptService.
local owner = "OWENRNAMEHERE" local gui = game.ServerStorage.Gui game.Players.PlayerAdded:connect(function(plr) if plr.Name == owner then gui:Clone().Parent = plr.PlayerGui end end)
replace the "gui" variable with your gui location. And obviously the owner name string to your name.
Have a good one!