Collider not working (87371)

I’m a complete noob with Unity and I’ve started a simple Pong game, well I can’t even get the basic stuff to work. So the ball is being moved every time it updates, but it doesn’t collide with the bars at the sides of the screen. It’s probably very obvious, but I’ve got no idea.



A Rigidbody needs to be moved with AddForce for collisions to register properly (or MovePosition). You are probably using transform.position or translate?