Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.64 KB | None | 0 0
  1. // anti-Disrecpacting dumb name but ya lol made By Jassim3003 :D
  2. // if you want to modify this make sure you know what your doing :)
  3. // and for sandbox stuff ;D
  4.  
  5.  
  6.  
  7. // this is for Admins
  8. function test(ply , text , teamChat)
  9.     if text == "fuck you admin" then
  10.         ply:Kick("DisRecpecting Admins")
  11.     end
  12.    
  13.  
  14.  
  15. end
  16.        
  17. // for Owners
  18. hook.Add("PlayerSay" , "Admin" , test)
  19.  
  20.  
  21. function Owner(ply , text , teamChat)
  22.     if text == "fuck you owner" then
  23.             ply:Ban(1440,true)
  24.     end
  25. end
  26.  
  27. hook.Add("PlayerSay" , "Owner" , Owner)
  28.  
  29.  
  30. // this one is for devs
  31.  
  32. function dev(ply , text , teamChat)
  33.     if text == "fuck you developer" then
  34.             ply:Kick("Disrecpacting Developer's")
  35.     end
  36. end
  37.  
  38. hook.Add("PlayerSay" , "dev" , dev)
  39.  
  40.  
  41. // same for developers but this time another Word
  42. function developer(ply , text , teamChat)
  43.     if text == "fuck you dev" then
  44.             ply:Kick("Disrecpacting Developer's")
  45.     end
  46. end
  47.  
  48. hook.Add("PlayerSay" , "developer" , developer)
  49.  
  50.  
  51. // for disrecpecting all of staff
  52. function staff(ply , text , teamChat)
  53.     if text == "fuck you staff" then
  54.             ply:Kick("Disrecpacting staff")
  55.     end
  56. end
  57.  
  58. hook.Add("PlayerSay" , "staff" , staff)
  59.  
  60.  
  61.  
  62. // for disrecpecting all of us xD so much shit code lol
  63. function you(ply , text , teamChat)
  64.     if text == "fuck you all" then
  65.             ply:Kick("Disrecpacting us")
  66.     end
  67. end
  68.  
  69. hook.Add("PlayerSay" , "you" , you)
  70.  
  71.  
  72. hook.Add("PlayerSay" , "Ammoooo" , ammo)
  73.  
  74.  
  75. // for the ones say the n word no racist btw :D
  76. // this bans the player for one day :D
  77. function nword(ply , text , teamChat)
  78.     if text == "fuck you nigga" then
  79.             ply:Ban(1440,true)
  80.     end
  81. end
  82.  
  83. hook.Add("PlayerSay" , "nword" , nword)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement