Idle Animation not playing fully after play unequips pistol

Problem: I am trying to play an idle animation right after the player unequips their pistol but I think since I have two separate server events that maybe it’s causing a disruption which is why the idle animation doesn’t play fully after the player unequips.

Server Code:

local EquipGunRemote = game.ReplicatedStorage.Remotes:WaitForChild('EquipGun')
local UnequipGunRemote = game.ReplicatedStorage.Remotes:WaitForChild('UnequipGun')

EquipGunRemote.OnServerEvent:Connect(function(player, animation)
	print(animation)
	local character = player.Character
	local humanoid = character:WaitForChild('Humanoid')
	local animator = humanoid:WaitForChild('Animator')

	local animationTrack = animator:LoadAnimation(animation)
	animationTrack:Play()
	print(animator:GetPlayingAnimationTracks())

end)

UnequipGunRemote.OnServerEvent:Connect(function(player, animation)
	local character = player.Character
	local humanoid = character:WaitForChild('Humanoid')
	local animator = humanoid:WaitForChild('Animator')

	local animationTrack = animator:LoadAnimation(animation)
	print("Test")
	animationTrack:Play()
	--for i,v in pairs(animator:GetPlayingAnimationTracks()) do
	--	if v.Name == "GunEquip" then
	--		animationTrack:Stop()
	--	end
	--end
	print(animator:GetPlayingAnimationTracks())

end)

3 Likes

Animations are replicated, so you can just play them from the client.

3 Likes

Ok good note. But playing from the client doesn’t fix the problem.

1 Like

What does animator:GetPlayingAnimationTracks() print?

1 Like

It prints:

08:24:06.276 ▼ {
[1] = Animation,
[2] = GunEquip,
[3] = Animation,
[4] = Idle
} - Server - Server:29

1 Like
for i,v in pairs(animator:GetPlayingAnimationTracks()) do
	if v.Name == "GunEquip" then
		v:Stop()
	end
end

Add this before playing animation

1 Like

Yeah I tried that before only I did it after I played the animation but it seems it results in the same thing.

The GetPlayingAnimationTracks prints:
08:55:25.619 ▼ {
[1] = GunEquip,
[2] = Animation,
[3] = Animation,
[4] = Idle

1 Like

It’s interesting, because I’m stopping the “GunEquip” anim but it’s still somehow in the PlayingAnimationTracks

2 Likes

You should be doing v:Stop instead of animationTrack:Stop because the latter stops the unequal animation

3 Likes

Idk how I missed that lol. Thanks

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.