addCommandHandler("takeaccmoney", function(player, cmd, account, moneyToTake)
if isObjectInACLGroup("user."..getAccountName(player), aclGetGroup("Admin")) then
local acc = getAccount(tostring(account));
if (acc) then
setAccountData(acc, "YOUR.KEY", getAccountData(acc, "YOUR.KEY")-tonumber(moneyToTake));
outputChatBox("Done!", player, 0, 255, 2);
end
end
end);
Replace "YOUR.KEY"!