Stop Pong pabbles from moving at the same time

I’m working on a simple two-player 2D Pong Game. I made two pabbles by creating one and right-clicking “duplicate” to save me time making them twice because I have the paddles designed a specific way.
Here’s the code I wrote for the gameplay so far:

The problem I’m having is that every time I move one of the paddles, the other one moves at the same time as well. The paddles have a top-down movement behavior by the way. Is it because I duplicated the paddles, or is there way to make them stop moving at the same time?

is it that you need to disable default controls?

1 Like

Yep, that solved it. Thanks a lot.

2 Likes