Help with advanced camera manipulation? [ANSWERED]
I am making a script for my game so that after 2 seconds it will slowly rotate from facing up then slowly go round to the left hand side like looking at your bedside table in the morning. But no matter how hard I try I can't figure out how to create the effect. Here is the code so far:
1 | local cam = workspace.CurrentCamera |
2 | cam.CameraSubject = workspace.Intro |
3 | cam.CameraType = "Scriptable" |
4 | cam.CoordinateFrame = CFrame.new(workspace.Intro.Position) |
5 | * CFrame.Angles( 90 , 0 , 0 ) |
the effect i'm trying to create is lying on your back in your bed. then tilting your head to the left looking at your clock then the right.