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)