Tweenservice makes "ONLY" primarypart move

local TweenService = game:GetService("TweenService")

local part = game.Workspace.MovingModel.PrimaryPart
local tweenInfo = TweenInfo.new(2, Enum.EasingStyle.Cubic, Enum.EasingDirection, -1, true)

local tween = TweenService:Create(part, tweenInfo, {
	CFrame = part.CFrame * CFrame.new(0, 0, -30)
})

tween:Play()

Script


imageimage

Model (‘begock’ is primarypart)

Result
.
.
.

Pls help

Are all the Parts welded to the PrimaryPart unanchored?

2 Likes

Thx I forgot it

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.