Advertisement
BrandonTheGod06

Untitled

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