I have screen scrolling working but i want to have text scroll with the screen. because at the moment my player moves and the screen scrolls but the text doesn't.
You can set the position of the text relative to the view, then.
Assuming you have your RenderTarget and a Text object to draw, just something like:
1 2 3
// set to very top left of the view
text.setPostion(target.getView().getCenter().x - target.getView().getSize().x/2,
target.getView().getCenter().y - target.getView().getSize().y/2);