function toggleInvis (localPlayer) local accName = getAccountName ( getPlayerAccount ( localPlayer ) ) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Admin" ) ) then if (getElementAlpha(localPlayer)>0) then setElementAlpha ( localPlayer, 0 ) else setElementAlpha ( localPlayer, 255 ) end end end addCommandHandler ( "inv", toggleInvis )