Roblox:无法加载动画 - 已清理 ID:rbxassetid://187

问题描述 投票:0回答:1

我收到此错误:

 Failed to load animation - sanitized ID: rbxassetid://1713688057

这是我的 roblox 脚本:

    local animation = script.Animation
    local humanoid = script.Parent:WaitForChild("Humanoid")
    local track

    track = humanoid:LoadAnimation(animation)
    track.Priority = Enum.AnimationPriority.Core
    track.Looped = true
    track:Play()

我的脚本中有一个动画实例。我使用了关键帧序列的动画 ID,因为当我将其上传到 roblox 并从工具箱中抓取它时,它只给了我关键帧序列

我想在服务器工作区的装备上播放动画。有人可以帮忙吗?

animation roblox roblox-studio
1个回答
0
投票

Sooo,我使用本教程重新制作了动画:https://www.youtube.com/watch?v=lB80xeKGbwI,现在它可以工作了...😐

© www.soinside.com 2019 - 2024. All rights reserved.