Need assistance with robot control

I know I'm not too good at explaining myself

You got that right.

The simplest solution for your problem is the use the X value to determine the speed for both motors, assuming you want to move straight ahead at some speed. Then use the Y value to determine how much to increase the speed of one motor and decrease the speed of the other.

Suppose that you read 800 from X and 600 from Y. The 800 value is greater than the midpoint, so you want to go forward. It's beyond halfway to maximum, so you want to go just over half the maximum speed forward.

The 600 value is greater than the midpoint, so you want to steer to the right. It's only a little to the right of the midpoint, so you want the left motor to spin just a little faster, and the right motor to spin just a little slower. How much faster and slower will be something you experiment with.

Suppose that you read 600 from X and 1000 from Y. Now, you don't want to be traveling very fast, but you want a large difference between the left (faster) and right (slower) motors.

If you read 800 and 400, the turn is to the left, so the right motor goes faster (a little) and the left motor goes slower (a little).