SHOW:
|
|
- or go back to the newest paste.
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() |