aot evolution script
--join to discord: https://discord.gg/AEuDTy6Mu5
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] = 5000
aot evolution script How to dowload it? aot evolution script
      return old(remote,unpack(args))
  end
  return old(remote,...)
end)
setreadonly(mt,true)
aot evolution script