Working on a kewl new intro that involves lerping but it doesn't work for some reason.. any ideas?
local FB = game.Workspace.CurrentCamera:FindFirstChild("firstblack") if FB then local start = Vector3.new(-80.094, 15.182, -39.601) local endit = Vector3.new(-73.914, 15.182, -39.601) wait(1) for i = 0, 1, .009 do wait(0.001) FB.Position = start:Lerp(endit, i) end end