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

What is FilteringEnabled and how do I use it?

Asked by 4 years ago

I’ve seen a lot of tutorials and stuff that mention that they do work with filtering enabled, but I have no idea what it is! Could someone please explain filtering enabled and what it is used for?

0
roblox had an update so it's enabled on all servers. Basically, FE(Filtering Enabled) stops clients from making changes to scripts and other things and making them show in the server. Without this, hackers can manipulate scripts and objects in the game and other people will be able to see it. Here is a nice video explaining them: https://www.youtube.com/watch?v=_jTd4sfCh7Y KDarren12 705 — 4y

1 answer

Log in to vote
1
Answered by 4 years ago

When filtering enabled is turned on actions made by the client will no longer freely replicate to the server. For example, this means an exploiter who places a model in the game will see it, but no one else playing would.

Here's an article that goes into more depth: https://developer.roblox.com/en-us/api-reference/property/Workspace/FilteringEnabled

This means you will have to use remote events and functions in order to communicate from the client to the server. https://developer.roblox.com/en-us/articles/Remote-Functions-and-Events

This is a really basic explanation, but hopefully, it lets you access the topic, and the articles will fill out your understanding to a competent level.

0
Thank you so much! NickIsANuke 217 — 4y
Ad

Answer this question