So I'm pretty new to Roblox studio, when someone pulls out an item, it flings them into midair. When they let go, they fall and die, when they keeping holding on, they just float in midair. I'm not sure what to do. Any responses are appreciated.
Check all of your tool parts and make sure the property Anchored
is set to false
. You need to weld the tool parts, you cannot anchor them.
When you make Tools for your players, you most likely want to un-anchor all parts and add WeldConstraints to all parts and weld them to the handle for example (they can be welded to any part). If you anchor your tool, it will not go in the player’s hand when the player pulls it out. Instead, the player will go to it and won’t be able to move. Un-anchoring all parts in your Tool should fix your problem.