senes how to make a movie

hey guys i want to know how to get my senes playing afther eachather how do i do this? i think by script but i dont know the codes do you?? thanks wezz

Take a look at this: http://unity3d.com/support/documentation/ScriptReference/Application.LoadLevel.html

You can also load by name.

If you want it timed, you could put a call to a function which calls 'yield' and wait for so many seconds before calling LoadLevel to load the next scene.

An easy way to use this is put the same script into each scene. If you'd rather use one instance of one script, you'd want to put it on an object that doesn't get destroyed when loading the next scene, as the docs say on that page.