Question: How to make domination-like zone that adds points to plays inside of it.

Hello forums, I am trying to create a zone in my environment that will add points to the team that has the most players inside of it. My main issue is that I do not know how I would execute this idea. Any support would be very much appreciated and thank you in advance!

Create collision component
add test to component’s OnOverlap event: # team X overlapping > # team Y overlapping? Increment team X score variable, else increment team Y.
Otherwise if you want accumulation over time, then add the test to the zone actor’s tick function.