ok now i am good scripter watch this SS but how can FBI arrest people local Skinmarker = createMarker( 2771.7883300781, 1137.2025146484, 10.8203125, "cylinder", 1.0, 33, 33, 33, 255)
local theTeam = createTeam( "FBI", 31, 31, 31 )
addEventHandler("onMarkerHit", Skinmarker,
function(hitElement)
if(isPedInVehicle(hitElement)) then return end
if not(isFBI(hitElement)) then return end
setElementModel(hitElement, 286)
setPlayerTeam(hitElement, theTeam)
end)
function isFBI(thePlayer)
local accName = getAccountName ( getPlayerAccount ( thePlayer ) )
if isObjectInACLGroup ("user."..accName, aclGetGroup ( "FBI" ) ) then
return true;
else
return false;
end
end