skip to content

After Effects logoafter effects · HeyBraza shows you

how to add wiggle expression in after effects

HeyBraza points at the alt-click stopwatch that opens the expression field and shows exactly where wiggle() goes.

the wiggle expression adds natural random movement - handheld camera shake, jittery text, floating elements - without a single keyframe. the catch is knowing where to type it and getting the syntax right. here's both.

or do it yourself

  1. 1open the layer property you want to wiggle (e.g. position) in the timeline.
  2. 2hold alt (option on mac) and click the property's stopwatch icon - a red expression field opens to the right.
  3. 3type wiggle(2,30) - the first number is how many wiggles per second, the second is how far it moves.
  4. 4click anywhere off the field (or press enter on the number pad) to commit it, then press spacebar to preview.
  5. 5to wiggle only one axis (e.g. just up/down), wrap it like [transform.position[0], wiggle(2,30)[1]] so the x value stays put.

let HeyBraza do this with you

HeyBraza is a tiny on-screen guide that points at the right buttons and talks you through it, on windows and mac.

download

common questions

why does my wiggle expression show a yellow error?

usually a typo or a wrong dimension - wiggle on a 2d position returns two values, so wiggling a single axis needs the array form shown above.

how do i make the wiggle slower or smaller?

lower the first number for slower wiggles and the second for smaller movement - e.g. wiggle(1,10) is a slow, subtle drift.

more fixes