AnimationTrack:Play(fade, weight) 작동안함

Describe the issue briefly

fade는 잘 모르겠는데 weight는 확실히 작동하지 않는것 같습니다.

사용코드:

while true do
local x, _, _ = camera.CFrame:ToEulerAnglesYXZ()
local p = math.deg(x)/80
if p > 0 then
print(p)
down:Stop()
up:Play(0.1, p)
else
up:Stop()
down:Play(0.1, math.abs(p))
end
wait(.1)
end

Environment

Studio, Windows 11 64bit

Expected Result

weight가 작동해야함

Issue Frequency

100% (Always)