Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How to make an administrator gui for specific people?

Asked by 5 years ago

i already made some code but non of it works i would like someone to help me i dont care if its completely different aslong as it works.

The code i made:

01local AdminGUI = game.StarterGui.ADMINGUIDontTryMeHackersIGotALongNameSoYouAreTooLazyToTypeHAHA
02local script = game.ReplicatedStorage.CheckForAdmin
03 
04if player.Name == "EnzoTDZ_YT" or player.Name == "smifflar102" then
05    print("An Administrator Is In Your Game.")
06    wait(1)
07end
08else
09    AdminGUI:Destroy()
10    script:Destroy()
1
Naming your remote something difficult to type isn't good security. You should look at https://forum.scriptinghelpers.org/topic/112 for advice. hiimgoodpack 2009 — 5y
1
Thanks but I just put it in serverstorage and a script in serverscriptservice EnzoTDZ_YT 275 — 5y

1 answer

Log in to vote
1
Answered by
0msh 333 Moderation Voter
5 years ago

put this in ServerScriptService

1game:GetService("ServerStorage")
2local AdminGUI = game.ServerStorage.ADMINGUIDontTryMeHackersIGotALongNameSoYouAreTooLazyToTypeHAHA
3game.Players.PlayerAdded:Connect(function(player)
4if player.Name == "EnzoTDZ_YT" or player.Name == "smifflar102" then
5  local admin = AdminGUI:Clone()
6admin.Parent = player.PlayerGui
7end
8end)
1
Don't spoonfeed answers hiimgoodpack 2009 — 5y
Ad

Answer this question