Why Won't My Animation Play Consistently?
So, I created an animation that is supposed to play globally while a certain key is held down (panting while holding 'r'). It usually works (meaning, everyone can see the animation and it repeats indefinitely until the key is released); however, sometimes it will simply stop doing the animation or only show it for the player that is holding 'r' (as if it was played locally). My relevant code is shown below. It is all within a local script (I thought this would make it play locally 100% of the time, but it frequently plays for everyone too, so I don't really think that's the problem).
01 | m.KeyDown:connect( function (key) |
02 | local player = game.Players.LocalPlayer |
03 | if key = = "r" and player.Character.Humanoid.WalkSpeed = = 16 then |
04 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false ) |
05 | player.Character.Humanoid:UnequipTools() |
06 | for i, Tools in pairs (player.Backpack:GetChildren()) do |
07 | if Tools:IsA( "Tool" ) then |
11 | local animation = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Panting) |
12 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 0 |
13 | game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0 |
16 | script.Parent.Stats.Frame.StaminaQuantity.StaminaRegen.Disabled = true |
17 | script.Parent.Stats.Frame.StaminaQuantity.RestStaminaRegen.Disabled = false |
If anyone has any idea why this is broken, I'd appreciate it so much. Thanks!