Advertisement
xKyriie

Fe Checker (ROBLOX)

Mar 28th, 2017
4,313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.03 KB | None | 0 0
  1. --Created By TreyKing - JayCold - xKyriie
  2.  
  3. local plr = game.Players.LocalPlayer
  4. local gui = plr.PlayerGui
  5.  
  6. if gui:FindFirstChild('filtering') then
  7. gui.filtering:Destroy()
  8. end
  9.  
  10. local sc = Instance.new('ScreenGui',gui)
  11. sc.Name = "filtering"
  12. local fr = Instance.new('Frame',sc)
  13. fr.Size = UDim2.new(2,0,0.17,0)
  14. fr.Position = UDim2.new(-0.5,0,-1,0)
  15. fr.Style = 'DropShadow'
  16. local tx = Instance.new('TextLabel',fr)
  17. tx.Text = ""
  18. tx.Size = UDim2.new(1,0,0.4,0)
  19. tx.Position = UDim2.new(0,0,0.6,0)
  20. tx.TextScaled = true
  21. tx.BackgroundTransparency = 1
  22. tx.TextColor3 = Color3.new(1,1,1)
  23. fr:TweenPosition(UDim2.new(-0.5, 0, -0.1, 0), "Out", Enum.EasingStyle.Bounce, 2)
  24. wait(2)
  25. if game.Workspace.FilteringEnabled then
  26.     local String = "Filtering is enabled."
  27.     local Length = string.len(String)
  28.     for i=1,Length do
  29.         tx.Text = string.sub(String,1,i)
  30.         wait()
  31.     end
  32. else
  33.     local String = "Filtering is disabled."
  34.     local Length = string.len(String)
  35.     for i=1,Length do
  36.         tx.Text = string.sub(String,1,i)
  37.         wait()
  38.     end
  39. end
  40. wait(4)
  41. sc:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement