Help with TweenService (Moving part)

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()

I mean you could fireclient a remoteevent to a localscript then the localscript handles the tween from there.

Sorry, I’m kinda new at scripting, and I did that (that as you can imagine didn’t worked):
image
image
image
What’s the correct way to do that?

1 Like

I’m a bit confused, why couldn’t you just add a wait(5) in there for the script to wait 5 seconds then play the Tween afterwards? No need to use a RemoteEvent in the first place