Skip to content

Commit

Permalink
Update Settings.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
ccuser44 authored Nov 26, 2021
1 parent 458b6e8 commit 42973fe
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Loader/Config/Settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 --
Expand Down Expand Up @@ -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 ]]
Expand Down Expand Up @@ -527,6 +529,7 @@ local descs = {}; --// Contains settings descriptions
"CheckClients";
" ";
"AENotifs";
"CharacterCheckLogs";
"AntiNoclip";
"AntiRootJointDeletion";
"AntiHumanoidDeletion";
Expand Down

0 comments on commit 42973fe

Please sign in to comment.