Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(0.25)
- local main2 = Instance.new("ScreenGui")
- main2.Parent = game.Players.LocalPlayer.PlayerGui
- main2.Name = "HatGUI"
- main2.ResetOnSpawn = false
- local Frame = Instance.new("Frame")
- Frame.Parent = main2
- Frame.Name = "FEChecker"
- Frame.Size = UDim2.new(0.2, 0,0.15, 0)
- Frame.Position = UDim2.new(-1,0,-1,0)
- Frame.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
- Frame.BorderSizePixel = 0
- Frame.Draggable = true
- Frame.Active = true
- Frame.Selectable = true
- Frame.ClipsDescendants = true
- Frame:TweenPosition(UDim2.new(0.5,0,0.2,0),'Out','Quart',2)
- local Exit2 = Instance.new("TextButton")
- Exit2.Parent = Frame
- Exit2.Name = "Exit_Button"
- Exit2.Size = UDim2.new(0,20,0,20)
- Exit2.AnchorPoint = Vector2.new(0,0)
- Exit2.Position = UDim2.new(0, 0,0, 0)
- Exit2.BackgroundTransparency = 1
- Exit2.TextScaled = true
- Exit2.Font = "GothamBold"
- Exit2.Text = "X"
- Exit2.TextColor3 = Color3.new(1,1,1)
- Exit2.MouseButton1Click:Connect(function()
- Frame:TweenPosition(UDim2.new(-1,0,-1,0),'Out','Quart',3)
- wait(4)
- main2:Destroy()
- end)
- local info = Instance.new("TextLabel")
- info.Parent = Frame
- info.Size = UDim2.new(0.8,0,0.7,0)
- info.Position = UDim2.new(0.1,0,0.15,0)
- info.BorderSizePixel = 1
- info.BorderColor3 = Color3.new(1,1,1)
- info.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
- info.TextScaled = true
- info.TextColor3 = Color3.new(1,1,1)
- info.Font = "GothamBold"
- info.Text = "FE"
- if game.Workspace.FilteringEnabled == true then
- info.Text = "FE is enabled on this game..."
- end
- if game.Workspace.FilteringEnabled == false then
- info.Text = "FE is disabled on this game!"
- end
Advertisement
Add Comment
Please, Sign In to add comment