Tool gone after unequip

My tool is VANISHING after I unequip. I have animation, Handle, chainsaw sound effect, and a script in it. right now this is stupid

local tool = script.Parent
local Anim = Instance.new("Animation")
Anim.AnimationId = "rbxassetid://12902908649"
local track

tool.Equipped:Connect(function()
	
	track = script.Parent.Parent.Humanoid:LoadAnimation(Anim)
	track.Looped = true
	script.Parent.Chainsaw.Playing = true
	track:Play()
	
end)

tool.Unequipped:Connect(function()
	
	script.Parent.Chainsaw.Playing = false
	track:Stop()
	
end)

happening with every tool i insert to my game)

Ok so it turns out i put a humanoid inside my starter pack on accident and it was somehow eating the tools?? i guess but i removed it and now it’s fine

1 Like

Make sure the Handle of the tool has CanCollide set to false (unticked) and make sure that Anchored is set to false (unticked) on the Handle too and make sure on the Tool that CanBeDropped is set to false (unticked).

2 Likes

I think a humanoid is devouring your tool. That’s the only one i can think of.

2 Likes

ANY object added to StarterPack is put into every player’s BackPack. This Humanoid could have caused an unknown issue with the tools inside the BackPack.

2 Likes

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