When I equip this simple tool

just after a few seconds it just disappear
the only code related to this tool is this rn
Tool.Equipped:Connect(function()
LeftFist.Motor6D.Part0 = LeftArm
RightFist.Motor6D.Part0 = RightArm
end)
idk whats the solution for this probably its just some obvious mistake idk how this stuff work : /
So I have a feeling that this is a client script correct?
If so then it might be the following issue. A while ago I noticed in my game that my own tools were falling out of the world, hitboxes were happening at wrong positions, etc. Turns out that by attaching a tool or whatever to the players character with a motor6d via the client doesnt update it on the server, which meant that the things would fall out of the world or something.
simple fix was just making the server and client attach it, I did it on the client too cause the client renders faster than if the server did it.
In the case that didnt work or it wasnt the issue, can we see the properties of the LeftFist and RightFist or whichever one is disappearing, along with the type of the script, etc.
1 Like