Upscalefanatic3

(Roblox) Simple FE Checker

Jan 26th, 2020
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. msg = Instance.new("Message", workspace)
  2. msg.Text = "just checking FE, ignore me"
  3. wait(3)
  4. msg:Destroy()
  5. wait(3)
  6.  
  7. local msgm = Instance.new("Message", workspace)
  8.  
  9. if workspace.FilteringEnabled == true then
  10. msgm.Text = "there is FE here so everything you will do here wont work lol"
  11. else
  12. msgm.Text = "yay there is no FE here so everything you do here will work :D"
  13. end
  14.  
  15. wait(5)
  16. msgm:Destroy()
Add Comment
Please, Sign In to add comment