Speed of panning

I am working through a project and the attached image shows movement inputs that have been setup. At the moment when I am in play mode the movement inputs are slow. For instance when I am panning it is slow. How do I increase the speed in which I can pan up/down and left/right?

Probably fix the multiply float you have right before the “movement” input after you subtract the 2 vectors from touch location and move location. You multiply the X value difference by 0.001. That is probably what is killing the movement speed. Make that number 0.5 or 5, not sure what your scale is but I would adjust that number first.

Thanks for your reply. I will try this and get back to you.