Quote: "I turned off the backdrop, it shows the score now, but it draws everything all weird if I turn or something."
You have 3D objects on your screen then right? The backdrop sort of clears the screen after every sync so if you turn it off then it would show what it rendered last frame and just render the next frame without clearing the screen. The backdrop also doesn't just clear 3d objects but text and images too so if you don't see the score then I'm guessing that means you didn't put print in the loop and instead outside of it?
If it is outside just put it on the inside but print makes a newline each time so I would also use text instead of print like WindowsKiller said.
Hope that helps.