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:
01 | local AdminGUI = game.StarterGui.ADMINGUIDontTryMeHackersIGotALongNameSoYouAreTooLazyToTypeHAHA |
02 | local script = game.ReplicatedStorage.CheckForAdmin |
03 |
04 | if player.Name = = "EnzoTDZ_YT" or player.Name = = "smifflar102" then |
05 | print ( "An Administrator Is In Your Game." ) |
06 | wait( 1 ) |
07 | end |
08 | else |
09 | AdminGUI:Destroy() |
10 | script:Destroy() |
put this in ServerScriptService
1 | game:GetService( "ServerStorage" ) |
2 | local AdminGUI = game.ServerStorage.ADMINGUIDontTryMeHackersIGotALongNameSoYouAreTooLazyToTypeHAHA |
3 | game.Players.PlayerAdded:Connect( function (player) |
4 | if player.Name = = "EnzoTDZ_YT" or player.Name = = "smifflar102" then |
5 | local admin = AdminGUI:Clone() |
6 | admin.Parent = player.PlayerGui |
7 | end |
8 | end ) |