Hello guys, I’m trying to move a part, to use as a camera for a cutscene, but it is playing automatically, and I would like to know if there’s any way that I could make it by playing the Tween from a localscript, or any other way than not by server.
script:
local TweenService = game:GetService("TweenService") local tweenPart = game.Workspace.Fall.CameraPart local info = TweenInfo.new( 80, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, 0, true, 0 ) local Goals = { Position = Vector3.new(-436.548, 253.709, 1926.019), } local PartTween = TweenService:Create(tweenPart, info, Goals) PartTween:Play()


