This function can be used to set an element to collide with another element. An element with collisions disabled does not interact physically with the other element. ( from wiki https://wiki.multitheftauto.com/wiki/Set ... idableWith )
and example(client-side):
function setCol()
local x,y,z = getElementPosition(getLocalPlayer())
someped = createPed(0,x,y,z,120)
setElementCollidableWith(source,someped,false)
end
addEventHandler("onClientResourceStart", getRootElement(), setCol)
i not tested it