Advertisement
SpiritualDonut

Untitled

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