kk, im having trouble getting my score system to work.
here is my code for my coins:
Code:
onClipEvent(enterFrame){
	if(this.hitTest(_root.char)){
		_root.score +=1;
		this.swapDepths(666);
		this.removeMovieClip();
	}
}
and so the problem is that when i test my game it says: _level
and doesnt change even if i get a coin, another thing is that flash won't let me type in: root.score in my instances bar for the dynamic text box.