local mt = getrawmetatable(game) local old = mt.__namecall setreadonly(mt, false) mt.__namecall = newcclosure(function(self, ...) local args = {...} if getnamecallmethod() == "InvokeServer" and tostring(self) == "pickaxeMine" then args[2] = 1 return old(self, unpack(args)) end return old(self, ...) end)