If FE is on, and you set up your game right, not really much else you need to worry about.
But if you wanted to:
local PresetScripts = {"HealthScript"}
...Backpack.DescendantAdded:connect(function(Instance)
if Instance.ClassName == "LocalScript" then
-- run through table
-- if not find, ban forever
end
end) |