To understand your problem, I think we need more information on how the rest of the code is structured. For example, is this timed sequence inside teleop? Or are you trying to program autonomous (which might make more sense since it's timed sequence).
The way timed sequence works, they execute left to right. So if you have another frame to the right of the drive code and that is the kicker, then the drive portion will execute first, then move onto the next frame for the kicker. But obviously if you only have the kicker in that second frame, then the drive will not execute. You can place another drive VI in the kicker frame (such that they will execute in parallel), but that is awfully inefficient way of programing.
You might want to revisit
www.frcmastery.com and look over the video tutorials. In particular, review the walkthroughs and state machines. State machines are your friend.