nij55

FE Checker

Mar 20th, 2020
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.56 KB | None | 0 0
  1. wait(0.25) 
  2.     local main2 = Instance.new("ScreenGui")
  3. main2.Parent = game.Players.LocalPlayer.PlayerGui
  4. main2.Name = "HatGUI"
  5. main2.ResetOnSpawn = false
  6. local Frame = Instance.new("Frame")
  7. Frame.Parent = main2
  8. Frame.Name = "FEChecker"
  9. Frame.Size = UDim2.new(0.2, 0,0.15, 0)
  10. Frame.Position = UDim2.new(-1,0,-1,0)
  11. Frame.BackgroundColor3 = Color3.new(0.1,0.1,0.1)
  12. Frame.BorderSizePixel = 0
  13. Frame.Draggable = true
  14. Frame.Active = true
  15. Frame.Selectable = true
  16. Frame.ClipsDescendants = true
  17. Frame:TweenPosition(UDim2.new(0.5,0,0.2,0),'Out','Quart',2)
  18. local Exit2 = Instance.new("TextButton")
  19. Exit2.Parent = Frame
  20. Exit2.Name  = "Exit_Button"
  21. Exit2.Size = UDim2.new(0,20,0,20)
  22. Exit2.AnchorPoint = Vector2.new(0,0)
  23. Exit2.Position = UDim2.new(0, 0,0, 0)
  24. Exit2.BackgroundTransparency = 1
  25. Exit2.TextScaled = true
  26. Exit2.Font = "GothamBold"
  27. Exit2.Text = "X"
  28. Exit2.TextColor3 = Color3.new(1,1,1)
  29. Exit2.MouseButton1Click:Connect(function()
  30.     Frame:TweenPosition(UDim2.new(-1,0,-1,0),'Out','Quart',3)
  31.     wait(4)
  32.     main2:Destroy()
  33. end)
  34. local info = Instance.new("TextLabel")
  35. info.Parent = Frame
  36. info.Size = UDim2.new(0.8,0,0.7,0)
  37. info.Position = UDim2.new(0.1,0,0.15,0)
  38. info.BorderSizePixel = 1
  39. info.BorderColor3 = Color3.new(1,1,1)
  40. info.BackgroundColor3 = Color3.new(0.15,0.15,0.15)
  41. info.TextScaled = true
  42. info.TextColor3 = Color3.new(1,1,1)
  43. info.Font = "GothamBold"
  44. info.Text = "FE"
  45. if game.Workspace.FilteringEnabled == true then
  46. info.Text = "FE is enabled on this game..."
  47. end
  48. if game.Workspace.FilteringEnabled == false then
  49. info.Text = "FE is disabled on this game!"
  50. end
Advertisement
Add Comment
Please, Sign In to add comment