Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why Won't My Animation Play Consistently?

Asked by 5 years ago

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).

01m.KeyDown:connect(function(key)
02    local player = game.Players.LocalPlayer
03    if key == "r" and player.Character.Humanoid.WalkSpeed == 16 then -- Holding down 'R'
04        game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
05        player.Character.Humanoid:UnequipTools() -- unequips all equipped tools.
06        for i, Tools in pairs(player.Backpack:GetChildren()) do
07            if Tools:IsA("Tool") then
08                Tools.Enabled = false
09            end
10        end
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
14        wait(.5) -- kinda a penalty for even deciding to rest, and keeps animation from glitching
15        animation:Play()
16        script.Parent.Stats.Frame.StaminaQuantity.StaminaRegen.Disabled = true
17        script.Parent.Stats.Frame.StaminaQuantity.RestStaminaRegen.Disabled = false
18    end
19end)

If anyone has any idea why this is broken, I'd appreciate it so much. Thanks!

0
when exporting the animation there is an option to have it as a looped animation just check that Donut792 216 — 5y
0
I did. Sometimes it loops as it should. Other times, no. corncob567 275 — 5y
1
try a while loop on line 3 and once they stop holding r do animation:Stop() Donut792 216 — 5y

1 answer

Log in to vote
1
Answered by
Donut792 216 Moderation Voter
5 years ago
Edited 5 years ago

got this far and got bored and gave up but you might be able to salvage the script into something that works

01local player = game.Players.LocalPlayer
02local m = player:GetMouse()
03local Human = player.Character:WaitForChild("Humanoid")
04local animation = Human:LoadAnimation(script.Panting)
05local bagdebounce = false
06m.KeyDown:Connect(function(key)
07    local player = game.Players.LocalPlayer
08    if key == "r" and player.Character.Humanoid.WalkSpeed == 16 then
09    repeat
10    if bagdebounce == false then
11        game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
12        player.Character.Humanoid:UnequipTools()
13        for i, Tools in pairs(player.Backpack:GetChildren()) do
14            if Tools:IsA("Tool") then
15                Tools.Enabled = false
View all 32 lines...
Ad

Answer this question