I am trying to use tween service to move my train but it doesn’t move it correctly. It doesn’t get to the set destination but instead moves a little, then gets lifted into the air and flips on its side, and falls all while not moving forward at all. Is there a way to fix this?
Script:
local TweenService = game:GetService("TweenService")
local part = script.Parent
local point = {}
point.Position = Vector3.new(150.293, 0.5, -224.694)
local tweenInfo = TweenInfo.new(10, Enum.EasingStyle.Linear)
local tween = TweenService:Create(part, tweenInfo, point)
tween:Play()