Tween Move issue

  1. What do you want to achieve? I want to make my boat that uses tween move players with it.

  2. What is the issue? it doesnt move players.

  3. What solutions have you tried so far? Youtube.

Here is my script

local root = script.Parent
local tweenservice = game:GetService("TweenService")
local Time = 450
local tweenInfo = TweenInfo.new(
	Time,
	Enum.EasingStyle.Linear,
	Enum.EasingDirection.Out,
	0,
	false,
	0
)

local properties = {Position = Vector3.new(7.572, 77.884, 8594.644)}

local tween = tweenservice:Create(root,tweenInfo,properties)

tween:Play()
1 Like

I would tween a BodyGyro’s CFrame or a BodyPosition’s Position.

1 Like

Unless you use some type of way to connect the boat to the player so it moves when they move then idk what to do. I’m not much of a physics guy so you should probably invest into what the guy above me said.