I am trying to click backspace to drop the seed tool. All of my other tools drop as intended. For some reason, this one seed tool gets stuck to my hand. I disabled the scripts inside of the tool but that didn’t fix anything. I have CanTouch off, so you have to equip it with the script and not by touching it.
Here is a video of the issue. I click backspace when the hand goes down in the middle of the video.
I have tried to see if my scripts are the problem, but they are not. I disabled the animation script, and it still stuck. I disabled certain parts of the equip script and it still stuck.
Any help would be appreciated
Going off of tenryu’s idea, making it bigger didn’t change anything sadly. Also, there are no welds between the hand and the tool. One thing that IS interesting about this is that when you put the touchinterest back into the handle, it can be dropped.
Here is a video of it. If you touch the item to pick it up, you can drop it but if you use E to pick it up, you can’t.
Here is the code for picking up the seed. It is inside of the pickup proximity prompt that is inside of the seed.
while true do
script.Parent.Triggered:Connect(function(player)
if player.Character:FindFirstChildWhichIsA("Tool") then
player.Character:FindFirstChildWhichIsA("Tool").Parent = player.Backpack
end
script.Parent.Parent.Parent.Parent = player.Character
if script.Parent.Parent.Parent.Parent == player.Character then
script.Parent.Enabled = false
else
script.Parent.Enabled = true
end
end)
wait(0.01)
end