Tween not playing

local tween = tweenservice:Create(hrt,TweenInfo.new(2),{CFrame = cf})

hrt is a cumstom characters humanoidrootpart,

nothing happens at all, no errors

You’re creating the tween, are you actually :Play()ing it?

1 Like

Do the following:

local tween = tweenservice:Create(hrt,TweenInfo.new(2),{CFrame = cf})
tween:Play()
2 Likes

solved, was because of cf itself