ID:150031
 
Ok I have an area/Goal
Also when the object that is suppose to go into the goal goes in it does an Entered().
What I need to do is somehow make sure the object is in the goal for 5 secs, then give a point. Also the object must be allowed to exit if not being blocked.

LJR
Give the object a variable that'll check to see if it is inside the goal or not. When it enters the goal area, set that variable to one, when it leaves, set it to zero. Then, when the object enters the goal, start a spawn(50) check() proc that'll check to see if the ball's in-goal variable is 1, if so, you get a point, if not, do nothing.