Im trying to tween a model using WeldConstraints and tweenservice, however its only tweening my rootpart.
This is my Model in explorer :
Here is my code:
local primary = script.Parent.Parent.PrimaryPart
local tweenservice = game:GetService("TweenService")
local tweeninfo = TweenInfo.new(3)
local tween = tweenservice:Create(primary,tweeninfo,{
Position = Vector3.new(46.948, -4.572, -242.383)
})
tween:Play()
Any help?