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