Bear in mind that I have no scripting experience, so I may need extra help.
I want to make a VHS tape type game where the camera teleports INTO a part after some time has passed (to go from frame to frame). But, I do not know about cameera manipulation, I do not know how to script the camera, and I need help, so here I am.
What should I do?
Videos, pictures, etc would be greatly appreciated with you comment!
The player’s camera can only be changed/moved from a LocalScript, to move it you have to use its CFrame property and change its CameraType to Scriptable so that it stays
local Camera = workspace.Camera
local Target = workspace.Part.CFrame
local Info = TweenInfo.new(2)
Camera.CameraType = Enum.CameraType.Scriptable
local T = game:GetService("TweenService"):Create(Camera, Info, {["CFrame"] = Target})
T:Play()
It works like its supposed to, but 3 questions.
-How can I remove the animation and make the transition instant
-How can I make it so it moves to other parts?
-How can I make it so it DOESN’T go back to the player?
Quick Question (sorry for the inconvience)
But how do I label the positions? Do I rename a part? Do I fill the Position one two and three with coordnates?