local AIDs = {"8b1907eefb6274da117ec6505f0087e6"} local Character = script.Parent.Parent.Parent.Character local inuse = false local b = script.Parent.TextButton b.MouseButton1Down:connect(function(click)
script.ExportAnim.AnimationId = AIDs[1] if not inuse then inuse = true Character.Animate.Disabled = true HoldAniTrack = Character:WaitForChild('Humanoid'):LoadAnimation(script.ExportAnim) HoldAniTrack:Play() wait(5) Character.Animate.Disabled = false inuse = false end
end)