local Staff = createTeam ( "Staff", 113, 0, 188 )
function StaffTeam ( source, command )
local playerName = getPlayerAccount(source)
if isObjectInACLGroup ( "user." .. playerName, aclGetGroup ( "Admin" ) ) then
setPlayerTeam (source, "Staff")
else
cancelEvent(true, "You're not allowed to use this command!")
end
end
addCommandHandler("admin", StaffTeam)
?