Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. if SERVER then
  2.  
  3. util.AddNetworkString("Spamming")
  4.  
  5. net.Receive("Spamming",function()
  6.  
  7. timer.Create( "spamway", 0.1, 0, function()
  8.  
  9. for k,v in pairs(player.GetAll()) do
  10.  
  11. v:SendLua([[chat.AddText( Color( 100, 0, 0 ), "Fucked By Bennett | Cipher")]])
  12.  
  13. end
  14.  
  15. end)
  16.  
  17. end)
  18.  
  19. end
  20.  
  21.  
  22.  
  23. if CLIENT then
  24.  
  25. surface.CreateFont( "Bouton3", {
  26. font = "Circular Std Medium", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
  27. extended = false,
  28. size = ScrW()/85,
  29. weight = 1000,
  30. blursize = 0,
  31. scanlines = 0,
  32. antialias = true,
  33. underline = false,
  34. italic = false,
  35. strikeout = false,
  36. symbol = false,
  37. rotary = false,
  38. shadow = false,
  39. additive = false,
  40. outline = false,
  41. } )
  42.  
  43. --Put your code here
  44. local frame = vgui.Create( "DFrame" )
  45. frame:SetSize( 300, 250 )
  46. frame:Center()
  47. frame:SetTitle( "BennettV1" )
  48. frame:MakePopup()
  49. frame.Paint = function(s,w,h)
  50.  
  51. draw.RoundedBox(0, 0, 0, w, h,Color(30, 30, 30, 200))
  52.  
  53. end
  54.  
  55. local DermaButton = vgui.Create( "DButton", frame )
  56. DermaButton:SetText( "" )
  57. DermaButton:SetPos( 25, 50 )
  58. DermaButton:SetSize( 250, 30 )
  59. DermaButton.DoClick = function()
  60.  
  61. net.Start("Spamming")
  62. net.SendToServer()
  63.  
  64. end
  65.  
  66. DermaButton.Paint = function(s,w,h)
  67.  
  68. local chroma = HSVToColor( CurTime() % 6 * 60, 1, 0.5 )
  69. draw.RoundedBox(0, 0, 0, w, h,chroma)
  70. draw.RoundedBox(0, 2, 2, w-4, h-4,Color(30, 30, 30, 200))
  71. draw.DrawText( "CHAT SPAM", "Bouton3", w * 0.5, h *0.1 , Color( 255, 255, 255, 255 ), TEXT_ALIGN_CENTER )
  72.  
  73. end
  74.  
  75. local DermaButton = vgui.Create( "DButton", frame )
  76. DermaButton:SetText( "" )
  77. DermaButton:SetPos( 25, 90 )
  78. DermaButton:SetSize( 250, 30 )
  79. DermaButton.DoClick = function()
  80.  
  81. for k,v in pairs(player.GetAll()) do
  82.  
  83. v:Kill()
  84.  
  85. end
  86.  
  87.  
  88. end
  89.  
  90. DermaButton.Paint = function(s,w,h)
  91.  
  92. local chroma = HSVToColor( CurTime() % 6 * 60, 1, 0.5 )
  93. draw.RoundedBox(0, 0, 0, w, h,chroma)
  94. draw.RoundedBox(0, 2, 2, w-4, h-4,Color(30, 30, 30, 200))
  95. draw.DrawText( "KILL", "Bouton3", w * 0.5, h *0.1 , Color( 255, 255, 255, 255 ), TEXT_ALIGN_CENTER )
  96.  
  97. end
  98.  
  99. local DermaButton = vgui.Create( "DButton", frame )
  100. DermaButton:SetText( "" )
  101. DermaButton:SetPos( 25, 130 )
  102. DermaButton:SetSize( 250, 30 )
  103. DermaButton.DoClick = function()
  104.  
  105. for k,v in pairs(player.GetAll()) do
  106. RunConsoleCommand("stip")
  107. end
  108.  
  109.  
  110. end
  111.  
  112. DermaButton.Paint = function(s,w,h)
  113.  
  114. local chroma = HSVToColor( CurTime() % 6 * 60, 1, 0.5 )
  115. draw.RoundedBox(0, 0, 0, w, h,chroma)
  116. draw.RoundedBox(0, 2, 2, w-4, h-4,Color(30, 30, 30, 200))
  117. draw.DrawText( "STRIP", "Bouton3", w * 0.5, h *0.1 , Color( 255, 255, 255, 255 ), TEXT_ALIGN_CENTER )
  118.  
  119. end
  120.  
  121. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement