diff --git a/Loader/Config/Settings.lua b/Loader/Config/Settings.lua index 2af3ee3a13..511947d9f9 100644 --- a/Loader/Config/Settings.lua +++ b/Loader/Config/Settings.lua @@ -324,15 +324,16 @@ local descs = {}; --// Contains settings descriptions settings.CheckClients = true -- Checks clients every minute or two to make sure they are still active settings.AENotifs = true -- Notify all moderators and higher ups when a player is kicked or crashed from the AntiExploit + settings.CharacterCheckLogs = false -- If the character checks appear in exploit logs and exploit notifications settings.AntiNoclip = false -- Attempts to detect noclipping and kills the player if found settings.AntiRootJointDeletion = false -- Attempts to detect paranoid and kills the player if found - settings.AntiHumanoidDeletion = false -- (Very important) Prevents invalid humanoid deletion. Un-does the deletion and kills the player - settings.AntiMultiTool = false -- Prevents multitooling and because of that many other exploits - settings.AntiGod = false -- If a player does not respawn when they should have they get respawned - settings.AntiSpeed = false -- (Client-Sided) Attempts to detect speed exploits + settings.AntiHumanoidDeletion = true -- (Very important) Prevents invalid humanoid deletion. Un-does the deletion and kills the player + settings.AntiMultiTool = true -- Prevents multitooling and because of that many other exploits + settings.AntiGod = true -- If a player does not respawn when they should have they get respawned + settings.AntiSpeed = true -- (Client-Sided) Attempts to detect speed exploits settings.AntiBuildingTools = false -- (Client-Sided) Attempts to detect any HopperBin(s)/Building Tools added to the client settings.AntiLeak = false -- (Client-Sided) Attempts to prevent place downloading/saving; Do not use if game saves - settings.ProtectHats = false -- Prevents hats from being un-welded from their characters through unnormal means. + settings.ProtectHats = true -- Prevents hats from being un-welded from their characters through unnormal means. --------------------- -- END OF SETTINGS -- @@ -433,6 +434,7 @@ local descs = {}; --// Contains settings descriptions descs.CheckClients = [[ Checks clients every minute or two to make sure they are still active ]] descs.AENotifs = [[ Notify all moderators and higher ups when a player is kicked or crashed from the AntiExploit ]] + descs.CharacterCheckLogs = [[If the character checks appear in exploit logs and exploit notifications]] descs.AntiNoclip = [[ Attempts to detect noclipping and kills the player if found ]] descs.AntiRootJointDeletion = [[ Attempts to detect paranoid and kills the player if found ]] descs.AntiHumanoidDeletion = [[ (Very important) Prevents invalid humanoid deletion. Un-does the deletion and kills the player ]] @@ -527,6 +529,7 @@ local descs = {}; --// Contains settings descriptions "CheckClients"; " "; "AENotifs"; + "CharacterCheckLogs"; "AntiNoclip"; "AntiRootJointDeletion"; "AntiHumanoidDeletion";