local Marker = createMarker ( x, y, z, "type", size, 0, 0, 0, 0 )
function element ( player )
if ( getElementType(player) == ('player') ) then
local accName = getAccountName ( getPlayerAccount ( player ) )
if isObjectInACLGroup ( "user." .. accName, aclGetGroup ( "Admin" ) ) then
if ( isPedInVehicle(player) ) then
setElementPosition ( element, x, y, z )
else
outputChatBox("You Moust Be in Group Admin !",player)
end
end
end
end
addEventHandler("onMarkerHit",Marker, element )
?