try this
addEventHandler('onMarkerHit',SpawnveicleRcLr01, function ( element )
if ( not isPedInVehicle ( element ) ) then
local Pos = { getElementPosition ( element ) }
Vehicle = createVehicle ( 503 , Pos[1] +5,Pos[2],Pos[3] )
setElementDimension ( Vehicle , 110 )
warpPedIntoVehicle ( element , Vehicle )
outputChatBox("#ffff00[ #ff0000LOS RED #ffff00] #00ff00Você Obteve o Carro Do Evento com Sucesso, #ff0000Não Utilize Handling#ffff00.", element, 255, 255, 255, true)
else
outputChatBox("#ffff00[ #ff0000LOS RED #ffff00] #ff0000Você Já Esta Dirigindo um Veiculo Tente Novamente Sem Veiculo em Posse.", element, 255, 255, 255, true)
end
end
)