-
Notifications
You must be signed in to change notification settings - Fork 3
/
SteepStepsAntiCheatBypass.lua
45 lines (28 loc) · 1.48 KB
/
SteepStepsAntiCheatBypass.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--[[
╋╋╋╋╋╋┏┓╋╋╋╋╋╋╋╋┏┓╋╋╋╋╋╋╋┏┓╋╋╋╋╋┏┓
╋╋╋╋╋┏┛┗┓╋╋╋╋╋╋╋┃┃╋╋╋╋╋╋┏┛┗┓╋╋╋╋┃┃
┏━┓┏━┻┓┏╋━┳━━┳━━┫┃┏┳━━┳━┻┓┏╋━━┳━┛┃
┃┏┓┫┏┓┃┃┃┏┫┃━┫┏┓┃┃┣┫┏━┫┏┓┃┃┃┃━┫┏┓┃
┃┃┃┃┗┛┃┗┫┃┃┃━┫┗┛┃┗┫┃┗━┫┏┓┃┗┫┃━┫┗┛┃
┗┛┗┻━━┻━┻┛┗━━┫┏━┻━┻┻━━┻┛┗┻━┻━━┻━━┛
╋╋╋╋╋╋╋╋╋╋╋╋╋┃┃
╋╋╋╋╋╋╋╋╋╋╋╋╋┗┛
]]--
--[[
AC Bypass for Steep Steps
Put this script in your autoexe/auto execution folder
might break some stuff related to chat, but it should work normally if you just click the chatbox and write...?
works for most detected things in the game, easy...
]]--
repeat wait() until game:IsLoaded()
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local PlayerScripts = LocalPlayer:WaitForChild("PlayerScripts")
local AntiCheatScript_1 = PlayerScripts:WaitForChild("ChatScript")
local AntiCheatScript_2 = PlayerScripts:WaitForChild("BubbleChat")
getsenv(AntiCheatScript_1).bd = "bypassed ez"
getsenv(AntiCheatScript_2).bd = "bypassed ez"
task.wait()
AntiCheatScript_1:Destroy()
AntiCheatScript_2:Destroy()
warn("anti cheat successfully bypassed ez")