Advertisement
gorlol

Untitled

Nov 15th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. -- it's best to put locals at the top
  2. local p = game:GetService("Players") -- finds the player
  3. local lp = p.LocalPlayer -- uses the player to find localplayer, which is you
  4. local whitelisted = "vudgor" -- put people here you like ^-^
  5. local blacklisted = "vudgortest" -- put anyone here you don't like >:(
  6. local special = "vudgor"
  7.  
  8. function whitelisted()
  9. loadstring("Nigger") -- here goes your loadstring
  10. end
  11.  
  12. function blacklisted()
  13. lp:Remove("Nigger blacklisted")
  14. end
  15.  
  16. function special()
  17. loadstring("Special") -- once again, here goes the special loadstring
  18. end
  19.  
  20. if whitelisted[tostring(lp)] then
  21. print("You are good to go!")
  22. whitelisted()
  23. else
  24. print("You are blacklisted.")
  25. end
  26.  
  27. if blacklisted[tostring(lp)] then
  28. blacklisted()
  29. else
  30. print("You are good to go!")
  31. end
  32.  
  33. if special[tostring(lp)] then
  34. print("You are special. Give me a second to load the special script.")
  35. else
  36. print("You are good to go!")
  37. end
  38.  
  39. if special then
  40. wait(1)
  41. special()
  42. print("Special script has loaded!")
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement