Can I set a driver/expression in rotation starting after a specific frame?

Hey guys,
I have a camera animated on a path through constrains on empties. But after a specific frame/point of the travel I want it to start shaking. I would like to do that shaking with a wiggle expression on the rotation values of the empty with this code: #sin(frame*100)*1

Do you know how to influence the empty with coding on the frame 350 for example and not from the very beginning?

Simply multiply by frame condition:

#sin(frame*100)*(frame>=350)

2 Likes