Message 2
Message 2
LocalPlayer
local functions = {
getgc = typeof(getgc) == "function",
hookfunction = typeof(hookfunction) == "function",
getconnections = typeof(getconnections) == "function",
getrawmetatable = typeof(getrawmetatable) == "function",
setreadonly = typeof(setreadonly) == "function" or typeof(make_writeable) ==
"function",
}
hum:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
if hum.WalkSpeed > 23 then hum.WalkSpeed = 23 end
end)
hum:GetPropertyChangedSignal("JumpPower"):Connect(function()
if hum.JumpPower > 50 then hum.JumpPower = 50 end
end)
hum:GetPropertyChangedSignal("AutoJumpEnabled"):Connect(function()
hum.AutoJumpEnabled = false
end)
plr.CharacterAdded:Connect(function()
task.wait(1)
spoof()
end)
local mt = getrawmetatable(game)
setreadonly(mt, false)
local oldIndex = mt.__index
mt.__index = newcclosure(function(t, k)
if t == workspace and k == "GetRealPhysicsFPS" then
return function() return 60 end
end
return oldIndex(t, k)
end)
for _, v in pairs(getgc(true)) do
if typeof(v) == "function" and islclosure(v) and debug.getinfo(v).name == "Ban"
then
hookfunction(v, function() end)
end
end