ADVERTISEMENTREMOVE ADS
Game icon

Bypass [I WAS BORED]

Script preview thumbnail
Script Preview

Description

A script that bypasses the anti-cheat on this game lol

I was bored and decided to decompile this game and create an anti-cheat bypass script that works

Features:

  • AntiCheat-Bypass
  • bypasser
  • anticheat
ADVERTISEMENTREMOVE ADS
75 Lines • 1.66 KiB
Verified
Raw
local function baseplateBypass()
local oldGetGc = getgc
local oldGetUpvalue = debug.getupvalue
local oldSetUpvalue = debug.setupvalue
local bypassSettings = {
kickReason = "",
maxSpeed = math.huge,
maxJumpPower = math.huge,
canSeat = true,
canFly = true,
allowRootAnchor = true,
canNoclip = true,
allowGyro = true
}
local function hookSettings()
for _, v in pairs(getgc(true)) do
if type(v) == "table" then
if rawget(v, "kickReason") and rawget(v, "maxSpeed") then
for key, value in pairs(bypassSettings) do
v[key] = value
end
return true
end
end
end
return false
end
local mt = getrawmetatable(game)
local oldNamecall = mt.__namecall
setreadonly(mt, false)
mt.__namecall = newcclosure(function(self, ...)
local method = getnamecallmethod()
local args = {...}
if method == "Kick" then
return nil
end
return oldNamecall(self, ...)
end)
setreadonly(mt, true)
if hookSettings() then
if syn then
print("Baseplate Bypass: All restrictions removed!")
else
print("Baseplate Bypass: All restrictions removed!")
end
end
end
baseplateBypass()
spawn(function()
while wait(1) do
baseplateBypass()
end
end)
return true
ADVERTISEMENTREMOVE ADS

Comments

4 comments
to add a comment
Du

what does it mean when its raw?

0
0
Ya

@DustinDo 💀

0
0
Du

@Uhm what im just asking?

0
0
Ar

@DustinDo bro

0
0
ADVERTISEMENTREMOVE ADS