I’ve been working on a project and upon doing a few testing with some friends, I’ve noticed that when it comes to one of them their animations don’t seem to be visible by others. I tried looking at previous discussions about this issue, others had problems with this as well but I have yet to find an actual solution. The issue seems to happen with only that one individual weirdly enough where the animation plays for a second and just stops despite it being a loop.
This is footage of the friend I’m describing above using the skill, he’s able to see the animation but others are not
https://streamable.com/m40a27
Here’s another friend doing the same skill but it all works well for him.
https://streamable.com/aynsba
This issue seems to happen randomly as well with animations that are the same across different skills.
--Here's the code for the animation
local anim = c.Humanoid:LoadAnimation(tool:WaitForChild("anim"))
anim.Name = "flightanim"
anim:Play()
--After the tool is done being held, I stop the looped animation
for i, track in pairs (c.Humanoid:GetPlayingAnimationTracks()) do
if track.Name == "flightanim" then
track:Stop()
end
end