How do I use Click/Cursor over events in Topdown projects?

I was playing around with top down example and I can’t seem to make overlap/click events work.
I made a character blueprint, added event to the capsule component, but when I launch and try to click on it, nothing happens.
If I add overlap event and run into the object then it works fine, but have no luck with click events or mouse overlap.

I’ve run into this in a similar situation, so maybe what I experienced can help. The thing that you’re trying to have recognize a mouse over needs to have its collision mode set to block. Having it as overlap doesn’t fire the event. For example, BlockAllDynamic works for me. Hope this helps.