Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. -- Script by me, gui is not. (i don't know who's it is at this point)
  2.  
  3. local allowed_players = {"AlphaBanners","name2"} -- replace name1 and name2 with your usernames ;)
  4.  
  5. game.Players.PlayerAdded:Connect(function(player)
  6.  
  7. for i, v in pairs(allowed_players) do
  8.  
  9. if player.Name == v then
  10.  
  11. game.ReplicatedStorage.AccessUI:Clone().Parent = player.PlayerGui
  12.  
  13. end
  14.  
  15. end
  16.  
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement