装备工具时动画不播放
我有问题: 装备工具时动画不会播放,但是当我单击并取消装备工具时,它会播放一段时间。 我的输出没有错误
plr.CharacterAdded:Wait(1)
local animation = plr.Character:WaitForChild('Humanoid'):LoadAnimation(script.Parent.Animation)
script.Parent.Activated:Connect(function()
print('event')
animation:Play()
script.Parent.Handle.Smash1:Play()
wait(1)
animation:Stop()
end)```
I have problem:
Animation is not playing while tool is equiped, but when i click and unequip tool it's plays for a while.
I have no Errors in output
plr.CharacterAdded:Wait(1)
local animation = plr.Character:WaitForChild('Humanoid'):LoadAnimation(script.Parent.Animation)
script.Parent.Activated:Connect(function()
print('event')
animation:Play()
script.Parent.Handle.Smash1:Play()
wait(1)
animation:Stop()
end)```
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了问题,动画优先级是最低的,因此我必须使用
animation.priority = 2
将其更改为最高。i found the problem, the Animation priority was the lowest so i have to change it to Highest by using
animation.Priority = 2