Jump to content

onClientElementColShapeHit [HELP]


Recommended Posts

Posted
Hello, I put a little Cholshape in one place and didn't write why it doesn't take place when the player enters the cholshape.
 
 
 
addEventHandler( "onClientElementColShapeLeave", resourceRoot,
    function (hitPlayer, mDim, hitElement)
		if (mDim) then
            if (hitPlayer == source) then
				if	(hitElement == TheSensor or hitElement == TheSensor1) then
                	GateMenu = false
				end
            end
        end
	end
);

 

Posted

Try this:

addEventHandler("onClientElementColShapeLeave",root,function(col,dim)
    if(source==localPlayer)then
        if(col==TheSensor)or(col==TheSensor1)then
            GateMenu=false
        end
    end
end)

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...