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

Only FilteringEnabled and LoadStringEnabled to stop exploits?

Asked by
lomo0987 250 Moderation Voter
9 years ago

If you set these both to true, would that prevent exploiters 100% or is there more that you would still need to do?

0
No, it wouldn't prevent exploiters completely. People would still be able to manipulate their client's physics, meaning it wouldn't prevent people from "noclipping" or "speedhacking", for example. DataStore 530 — 9y
0
Well, you can stop speedhacking with merely's script :D I just don't know if it would still work with them enabled.. But if I only have to deal with Noclipping and Speed Exploiting.. Then there really isn't anything you have to worry about :D lomo0987 250 — 9y

2 answers

Log in to vote
0
Answered by 3 years ago

You can use flare to disable most of the things exploiters use https://www.roblox.com/library/4786344298/Flare-Anti-Exploit-Re-Written

Ad
Log in to vote
0
Answered by 3 years ago

If you enable loadstring() , exploiters can hook onto any on-line scripts etc. FliteringEnabled doesn't make a big impact. If you are looking to destroy explosions, use this:

local explosion = game.Workspace:WaitForChild("Explosion") local explosion2 = game.Workspace:WaitForClone("ModelExplosion") --in ReplicatedStorage, put your own explosion. They may see it and clone it to avoid creating new explosions, but they will still get caught local player = game.Players.LocalPlayer

if explosion = true then player:Kick("Exploit found!") end

if explosion2 = true then player:Kick("Clone found!") end

Answer this question