Advertisement
Guest User

Untitled

a guest
Aug 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local admins = {'WateryDARKNINJA'}
  2.  
  3. --====================================--
  4. ----------------------------------------
  5. --= Don't change anything under this =--
  6. --____________________________________--
  7. --====================================--
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. local localplayer = game.Players.LocalPlayer
  15.  
  16. spawn(function()
  17. function adminsonly(name)
  18. for i = 1,#admins do
  19. if string.lower(name) == string.lower(admins[i]) then return true
  20. end
  21. return false
  22. end
  23. end
  24. end)
  25.  
  26. spawn(function()
  27. if adminsonly(localplayer.Name) or localplayer.userId == game.CreatorId then
  28. else
  29. script.Parent:remove()
  30. end
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement