#Anchored HRP now animation glitches
1 messages · Page 1 of 1 (latest)
how are you tweening it?
im tweening the humanoidrootpart position
how to fix: don't tween the position. tween the cframe instead if you want to move it around.
moving the position is only going to move the hrp completely out of alignment with the rest of the character and make it rather glitchy.
ohh aight bet
you can also do pivotto
yeah but can i tween a pivotto
bc its a method
ive ultimately decided not to tween and instead use an orb that beams down from a massive spawn orb
If you're clever you can :)
local TweenService = game:GetService("TweenService")
return function(model: Model, tweenInfo: TweenInfo, goal)
local cf = Instance.new("CFrameValue")
cf.Value = model:GetPivot()
cf.Changed:Connect(function()
model:PivotTo(cf.Value)
end)
goal.Value = goal.CFrame
goal.CFrame = nil
return TweenService:Create(cf, tweenInfo, goal)
end
ayo
smart guy
10/10