For some reason my player wont collide with other objects. I have given the player a rigidbody component and put a box collider on my floor and on a box but it simply wont collide. If I turn gravity on the player just falls through the floor. PS The floor is a scaled box.
You need a collider on the player as well…
yeah, make sure everything you want to collide with each other has a collider
All objects you want to be able to collide with each other all need collider objects on them. The rigidbody component is only necessary if you want to be able to use the OnCollisonEnter function.