Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Can someone Help with Filtering Enabled?

Asked by 8 years ago

I need a script that will make my game Filter Enabled.... That means their can't be exploits in my games and hacks can't be used.

Thanks, Tredicle

2 answers

Log in to vote
2
Answered by 8 years ago

As said by Kryddan, FilteringEnabled is a property of Workspace. All you do is check the box and your game will now be using FilteringEnabled.

However, I think you may not understand what it really does due to you not knowing how to turn it on. Filtering enable will cause you to script a game differently than what you would do without FilteringEnabled on (Also called FE).

  • So, what does FE really do?

FE stops LocalScripts on everyone's client from replicating to the server. So an example given on the wiki is a player inserting a LocalScript that makes a dragon appear. That person who created the dragon will see it while no one else in the server will because the dragon never replicated to the server and back to another's client.

  • How does this affect scripting?

Any LocalScript made in your game will most likely break because it cannot do anything that will affect others beside a persons client. So you would need to use RemoteEvents and RemoteFunctions to allow scripts to communicate between server and client (if needed).

1
^ Wow. This answer is very informative. Thank you so much, I appreciate it. Tredicle 30 — 8y
0
No problem alphawolvess 1784 — 8y
Ad
Log in to vote
0
Answered by
Kryddan 261 Moderation Voter
8 years ago

Just click on workspace in you're explorer then in the properties you can check in FilteringEnabled.

Workspace.FilteringEnabled

Answer this question