RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a admin gui that works"
-- LocalScript in a ScreenGui local player = game.Players.LocalPlayer local isAdmin = false local adminList = {"Player1", "Player2"} -- Add admin names here for _, adminName in ipairs(adminList) do if player.Name == adminName then isAdmin = true break end end if isAdmin then local gui = script.Parent.AdminGui -- Replace with the name of your admin GUI gui.Enabled = true else local gui = script.Parent.AdminGui -- Replace with the name of your admin GUI gui.Enabled = false end