Unity 2d circle collider not stopping after collision with box collider 2d

Hello, I’m using unity circle collider 2d and rigid body 2d but when it hits the box it doesn’t stop there but instead just pass through and fall. Can someone help?

Circle Collider and rigid body 2d setting

Box Collider Settings

Game output

alt text

As you can see in game output my circle instead of stopping at collision it is getting passed by box. I’m new to unity will be grateful if someone helps.

Uncheck “IsTrigger” on the box collider, or add a second box collider with “IsTrigger” unchecked if you need to use the first collider as a trigger for something else. Colliders with “IsTrigger” checked will only register OnTrigger events, and not OnCollission