Advertisement
TheoDev_

block spam

Jan 3rd, 2018
2,641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.35 KB | None | 0 0
  1. -- https://pastebin.com/raw/5dkdhCEi
  2. -- Start Script
  3. -- Objects
  4. -- Uploaded on Pastebin by TheoDev_
  5.  
  6. warn("FilteringEnabled GUI is now loading... Please wait! - Made By Sleep")
  7. local FEGui = Instance.new("ScreenGui")
  8. local Open = Instance.new("TextButton")
  9. local Frame = Instance.new("Frame")
  10. local Title = Instance.new("TextLabel")
  11. local FEKill = Instance.new("TextButton")
  12. local FEKillAll = Instance.new("TextButton")
  13. local FEPunish = Instance.new("TextButton")
  14. local Destroy = Instance.new("TextButton")
  15. local PlayerName = Instance.new("TextBox")
  16. local Players = game:GetService("Players")
  17. local FE = Workspace.FilteringEnabled
  18.  
  19. -- Properties
  20.  
  21. FEGui.Name = "FEGui"
  22. FEGui.Parent = game.CoreGui
  23.  
  24. Open.Name = "Open"
  25. Open.Parent = FEGui
  26. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Open.Position = UDim2.new(0, 0, 0, 350)
  28. Open.Size = UDim2.new(0, 100, 0, 25)
  29. Open.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  30. Open.Font = Enum.Font.Cartoon
  31. Open.FontSize = Enum.FontSize.Size18
  32. Open.Text = "Open/Close"
  33. Open.TextSize = 14
  34.  
  35. Destroy.Name = "Destroy"
  36. Destroy.Parent = FEGui
  37. Destroy.BackgroundColor3 = Color3.new(1, 1, 1)
  38. Destroy.Position = UDim2.new(0, 0, 0, 400)
  39. Destroy.Size = UDim2.new(0, 100, 0, 25)
  40. Destroy.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  41. Destroy.Font = Enum.Font.Cartoon
  42. Destroy.FontSize = Enum.FontSize.Size18
  43. Destroy.Text = "Destroy"
  44. Destroy.TextSize = 14
  45.  
  46. Frame.Parent = FEGui
  47. Frame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1)
  48. Frame.Position = UDim2.new(0, 400, 0, 200)
  49. Frame.Size = UDim2.new(0, 300, 0, 200)
  50. Frame.Visible = false
  51. Frame.Draggable = true
  52. Frame.Active = true
  53.  
  54. Title.Name = "Title"
  55. Title.Parent = Frame
  56. Title.BackgroundColor3 = Color3.new(0.25, 0.25, 0.80)
  57. Title.Size = UDim2.new(0, 300, 0, 30)
  58. Title.Font = Enum.Font.Cartoon
  59. Title.FontSize = Enum.FontSize.Size18
  60. Title.TextColor3 = Color3.new(1, 1, 1)
  61. Title.Text = "FilteringEnabled GUI"
  62. Title.TextSize = 14
  63.  
  64. FEKill.Name = "FEKill"
  65. FEKill.Parent = Frame
  66. FEKill.BackgroundColor3 = Color3.new(0.25, 0.25, 0.80)
  67. FEKill.Position = UDim2.new(0, 25, 0, 100)
  68. FEKill.Size = UDim2.new(0, 100, 0, 30)
  69. FEKill.Font = Enum.Font.SciFi
  70. FEKill.FontSize = Enum.FontSize.Size18
  71. FEKill.Text = "FE Kill"
  72. FEKill.TextColor3 = Color3.new(1, 1, 1)
  73. FEKill.TextSize = 18
  74.  
  75. FEKillAll.Name = "FEKillAll"
  76. FEKillAll.Parent = Frame
  77. FEKillAll.BackgroundColor3 = Color3.new(0.25, 0.25, 0.80)
  78. FEKillAll.Position = UDim2.new(0, 175, 0, 100)
  79. FEKillAll.Size = UDim2.new(0, 100, 0, 30)
  80. FEKillAll.Font = Enum.Font.SciFi
  81. FEKillAll.FontSize = Enum.FontSize.Size18
  82. FEKillAll.Text = "FE Kill All"
  83. FEKillAll.TextColor3 = Color3.new(1, 1, 1)
  84. FEKillAll.TextSize = 16
  85.  
  86. FEPunish.Name = "FEPunish"
  87. FEPunish.Parent = Frame
  88. FEPunish.BackgroundColor3 = Color3.new(0.25, 0.25, 0.80)
  89. FEPunish.Position = UDim2.new(0, 100, 0, 150)
  90. FEPunish.Size = UDim2.new(0, 100, 0, 30)
  91. FEPunish.Font = Enum.Font.SciFi
  92. FEPunish.FontSize = Enum.FontSize.Size18
  93. FEPunish.Text = "FE Punish"
  94. FEPunish.TextColor3 = Color3.new(1, 1, 1)
  95. FEPunish.TextSize = 18
  96.  
  97. PlayerName.Name = "PlayerName"
  98. PlayerName.Parent = Frame
  99. PlayerName.BackgroundColor3 = Color3.new(0.25, 0.25, 0.80)
  100. PlayerName.Position = UDim2.new(0, 75, 0, 50)
  101. PlayerName.Size = UDim2.new(0, 150, 0, 30)
  102. PlayerName.Font = Enum.Font.SciFi
  103. PlayerName.FontSize = Enum.FontSize.Size18
  104. PlayerName.Text = ""
  105. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  106. PlayerName.TextSize = 18
  107. PlayerName.ClearTextOnFocus = false
  108.  
  109. FEKill.MouseButton1Down:connect(function()
  110.     local target = Players[PlayerName.Text]
  111.     repeat
  112.     wait()
  113.     target:Move(Vector3.new(math.huge*0))
  114.     until not target:FindFirstChild("Head")
  115. end)
  116.  
  117. FEKillAll.MouseButton1Down:connect(function()
  118.     for i, v in next, Players:GetPlayers() do
  119.         v:Move(Vector3.new(math.huge*0))
  120.     end
  121. end)
  122.  
  123. FEPunish.MouseButton1Down:connect(function()
  124.     FEPunish.Text = "N/A"
  125.     wait(10)
  126.     FEPunish.Text = "FE Punish"
  127. end)
  128.  
  129. Open.MouseButton1Click:connect(function()
  130.     if Frame.Visible == false then
  131.         Frame.Visible = true
  132.     else
  133.         Frame.Visible = false
  134.     end
  135. end)
  136.  
  137. Destroy.MouseButton1Click:connect(function()
  138.     FEGui:Destroy()
  139.     warn("Thank you for using Sleep's FE Gui!")
  140. end)
  141.  
  142. if FE == true then
  143.     Title.Text = "FilteringEnabled GUI - FE Is Enabled"
  144. elseif FE == false then
  145.     Title.Text = "FilteringEnabled GUI - FE Is Disabled"
  146. end
  147.  
  148. -- End Of Script ( Made By StayBlue )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement