Advertisement
YourMain12

Best Anticheat Disabler

May 5th, 2023
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.16 KB | None | 0 0
  1. --[[
  2.   Created by Xylzxxc
  3.   This script disables all anticheat measures
  4.   This script only works in Synapse X
  5.   Use at your own risk
  6. --]]
  7.  
  8. local function disableAnticheat()
  9.   game:GetService("ScriptContext").ScriptsDisabled = false
  10.   game:GetService("ScriptContext").ScriptTransmitterDisabled = false
  11.   game:GetService("ScriptContext").ErrorOnAttemptedChildInjection = false
  12.   game:GetService("ScriptContext").ErrorOnLuaError = false
  13.   game:GetService("ScriptContext").ErrorOnLoadLocalScript = false
  14.   game:GetService("ScriptContext").ErrorOnRequire = false
  15.   game:GetService("ScriptContext").ErrorOnSignal = false
  16.   game:GetService("ScriptContext").ErrorOnRemoteFunction = false
  17.   game:GetService("ScriptContext").ErrorOnScriptInjection = false
  18.   game:GetService("ScriptContext").ErrorOnScriptSecurityViolation = false
  19.   game:GetService("ScriptContext").ErrorOnSleep = false
  20.   game:GetService("ScriptContext").ErrorOnSyntheticYield = false
  21.   game:GetService("ScriptContext").ErrorOnWorkspaceChanged = false
  22.   game:GetService("ScriptContext").SyntheticWaitThreshold = math.huge
  23.   game:GetService("ScriptContext").ScriptTimeout = math.huge
  24. end
  25.  
  26. disableAnticheat()
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement