#i made admin panel but how do i make it so only i can see the gui

6 messages · Page 1 of 1 (latest)

snow prismBOT
#

studio** You are now Level 1! **studio

sterile ore
#

just make a playeradded event and there check with ur id if it is you then clone the gui into the player, if not just keep it in the serverstorage

#

yes like that

#

the function would look something like this:

#

thats easy exploitable, you can just make it visible and u got it in your screen

#
local creatorid = yourId
local guitocopy = YourDirectoryToTheGui -- (may be in server storage, buts your election)
game.Players.PlayerAdded:Connect(function(player)

  if player.UserId == creatorid then
    local guiCopy = guitocopy:Clone()
    -- more logic here  
  end
end)