Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Created by Xylzxxc
- This script disables all anticheat measures
- This script only works in Synapse X
- Use at your own risk
- --]]
- local function disableAnticheat()
- game:GetService("ScriptContext").ScriptsDisabled = false
- game:GetService("ScriptContext").ScriptTransmitterDisabled = false
- game:GetService("ScriptContext").ErrorOnAttemptedChildInjection = false
- game:GetService("ScriptContext").ErrorOnLuaError = false
- game:GetService("ScriptContext").ErrorOnLoadLocalScript = false
- game:GetService("ScriptContext").ErrorOnRequire = false
- game:GetService("ScriptContext").ErrorOnSignal = false
- game:GetService("ScriptContext").ErrorOnRemoteFunction = false
- game:GetService("ScriptContext").ErrorOnScriptInjection = false
- game:GetService("ScriptContext").ErrorOnScriptSecurityViolation = false
- game:GetService("ScriptContext").ErrorOnSleep = false
- game:GetService("ScriptContext").ErrorOnSyntheticYield = false
- game:GetService("ScriptContext").ErrorOnWorkspaceChanged = false
- game:GetService("ScriptContext").SyntheticWaitThreshold = math.huge
- game:GetService("ScriptContext").ScriptTimeout = math.huge
- end
- disableAnticheat()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement