Okay, I need a game where the main character (MAIN) has a gun he carries around. When the "F" key is pressed, I want him to fire it. The problem is getting the bullet from point A to B. What I want if for when the F key is pressed, an animation is run showing the character pointing the gun right, then a bullet shooting from it and traveling right across the screen, always at the same Y position. I thought I could do this by altering the bullet character's (BULLET) "x" position by +1 then wait(1) in repeatedly execute, so that the bullet would travel right across the screen at a decent speed. The main problem is that I cannot figure out how to get the bullet right on the main character's sprite and beside his gun to make the bullet appear to come out of the gun. I cannot get the bullet to the character's gun's position. Any suggestions or a different way to do this???