WinslowMau

Untitled

May 17th, 2017
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. whoownit = game.Players.LocalPlayer
  2. gui = Instance.new("ScreenGui")
  3. gui.Parent = whoownit.PlayerGui
  4. gui.Name = "Lag"
  5.  
  6. pos = 135
  7. pos2 = 10
  8. pos3 = 0
  9.  
  10. enabled = false
  11.  
  12. button = Instance.new("TextButton")
  13. button.Parent = gui
  14. button.Size = UDim2.new(0, 100, 0, 30)
  15. button.Position = UDim2.new(0, 8, 0, pos)
  16. button.Text = "Lag"
  17. button.MouseButton1Click:connect(function()
  18. if enabled == false then
  19. enabled = true
  20. local a = game.Players:GetChildren()
  21. red = 0
  22. green = 0.5
  23. blue = 0
  24. for i=1, #a do
  25. wait()
  26. pos2 = pos2 + 23
  27. if pos2 >= 450 then
  28. pos3 = pos3 + 103
  29. pos2 = 33
  30. end
  31. if green <= 0.9 then
  32. green = green + 0.46
  33. elseif green >= 0.9 then
  34. green = green - 0.46
  35. end
  36. local bu = Instance.new("TextButton")
  37. bu.Parent = button
  38. bu.Size = UDim2.new(0, 100, 0, 20)
  39. bu.Position = UDim2.new(0, pos3, 0, pos2)
  40. bu.Text = a[i].Name
  41. bu.BackgroundTransparency = 1
  42. bu.TextTransparency = 1
  43. bu.BackgroundColor3 = Color3.new(red,green,blue)
  44. coroutine.resume(coroutine.create(function()
  45. for i=1, 3 do
  46. wait()
  47. bu.BackgroundTransparency = bu.BackgroundTransparency - 0.34
  48. bu.TextTransparency = bu.BackgroundTransparency
  49. end
  50. end))
  51. bu.MouseButton1Down:connect(function()
  52. local play = game.Players:findFirstChild(bu.Text)
  53. if play ~= nil then
  54. for i=1,3600 do
  55. Instance.new("HopperBin",play.Backpack).Name = "f u c k u"
  56. end
  57. wait()
  58. for i=1,3600 do
  59. Instance.new("HopperBin",play.Backpack).Name = "f u c k u"
  60. end
  61. wait()
  62. for i=1,3600 do
  63. Instance.new("HopperBin",play.Backpack).Name = "f u c k u"
  64. end
  65. wait()
  66. for i=1,13000 do
  67. Instance.new("HopperBin",play.Backpack).Name = "f u c k u"
  68. end
  69. wait()
  70. for i=1,3600 do
  71. Instance.new("HopperBin",play.Backpack).Name = "fuck u"
  72. end
  73. bu.Text = "Lagged!"
  74. end
  75. end)
  76. end
  77. elseif enabled == true then
  78. enabled = false
  79. pos2 = 10
  80. pos3 = 0
  81. local o = button:GetChildren()
  82. for i=1, #o do
  83. wait()
  84. o[i]:remove()
  85. end
  86. end
  87. end)
  88. end)
  89. --
Add Comment
Please, Sign In to add comment