Advertisement
KodiZX

Untitled

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