Created by Mommy#4406
Features:
- ALWAYS NAPE
- You will always hit Nape no matter which part of the titan’s body you hit, and it will do max damage you can do right now.
SCRIPT:
local mt = getrawmetatable(game);
local old = mt.__namecall
setreadonly(mt,false)
mt.__namecall = newcclosure(function(remote,...)
args = {...}
method = tostring(getnamecallmethod())
if method == "InvokeServer" and args[1] == "Slash" then
args[3] = "Nape"
args[4] = 69420
return old(remote,unpack(args))
end
return old(remote,...)
end)
setreadonly(mt,true)