Im trying to make a camera Interpolate into a position, I tried it and it didn't work. Any solutions?
Here is what I did
print("this script is in StarterGui and is a LocalScript") local c = Workspace.CurrentCamera c.CameraType = "Scriptable" wait(0.01) c:Interpolate(CFrame.new(Vector3.new(0,0,0),Vector3.new(0,0,0))
Interpolate is composed by two CFrames and a float, like this:
camera:Interpolate(CFrame.new(), CFrame.new(), 1)