If you only want to know if it's Left, Right, Top, Bottom. You could use 'is overlapping at offset':
+ Goodie: Is overlapping Baddie at offset (1, 0)
-> DebugOut: Set text to "right"
+ System: Else
+ Goodie: Is overlapping Baddie at offset (-1, 0)
-> DebugOut: Set text to "Left"
+ System: Else
+ Goodie: Is overlapping Baddie at offset (0, 1)
-> DebugOut: Set text to "Bottom"
+ System: Else
+ Goodie: Is overlapping Baddie at offset (0, -1)
-> DebugOut: Set text to "Top"
+ System: Else
-> DebugOut: Set text to "No collision"