Is it possible for exploiters to insert a Remote Event or Remote Function into the ReplicatedStorage of a Filtering Enabled game or is it possible for exploiters to get the server to directly communicate with a specific client without using roblox studio? And do all scripts have to be a Remote Event/ Remote Function for them to work in a Filtering Enabled game?
Hey there, I'm BlackOrange and I will be helping you with your problem today.
So there are a few concepts and key elements you have to understand. The most important element is that ANYTHING is exploitable. There is no such thing as"Impossible to exploit" or "Un-exploitable" games or websites. Therefor there is no way to make it "Un-exploitable".
So you understand that everything and anything is exploitable, so what should you do? Roblox provides a feature called FilteringEnabled
. Make sure this property is true
and make sure your scripts that are suppose to be server sided server sided and client sided client sided.
Next, regarding to your Remote Event / Remote Function problem. I personally have no experience of hacking or exploiting so I do NOT know whether hackers can add Remotes or not. One thing I do know is that NEVER send information from the client to the server.
Let's say that you were making a ability system and from the client you would send a signal to the server on what move this user is using.
RemoteEvent:FireServer('SMASH')
What you are doing is sending a ability called SMASH. This is a good way to keep everything to 1 Remote Event but this information can be CHANGED and MODIFIED. The hacker could easily hack the RemoteEvent and change the "SMASH" to the best move / ability in your game resulting the server to use the best move while the hacker only has "SMASH".
Now there are ways to buff your security. For one, under the OnServerEvent
event you can do a Conditional Statement
which will check if the player actually "OWNS" this ability.
RemoteEvent.OnServerEvent:Connect(function(plr, Ability) if plr... -- if player owns the ability then -- initiate ability else warn(plr.Name..' is hacking') end end)
In the end, anything and everything is exploitable. The only thing you can do is buff security and try to keep anything important checked on the server.
Best of luck developer!
You clearly don't understand how FE works, the anwser will be clear when you do. I'd recommend you to watch some videos/read the wiki regarding FE.
Short anwser: No, and no.