-
What do you want to achieve? I want to make my boat that uses tween move players with it.
-
What is the issue? it doesnt move players.
-
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()