Issue with tools

Weird glitch - I have no idea why this is happening. See the gif below for details:

https://gyazo.com/ba37404598ccc51060dfdd70666361a5

I want the tray to be holdable the right way up and in front of the player. How would I fix this?

(I’m using the QWeld script, I also cannot move with the tool.)

1 Like

Handle is probably anchored or at least one part is anchored on the tool.


A quick fix of this is to select all parts in the tools, check Anchored and uncheck it again.

5 Likes

None of the parts in the tool are anchored.

Are you absolutely certain?

Otherwise, check if the tool doesn’t accidentally weld itself onto an anchored part. Your tool is stuck midair and it is definite that something anchored from the tool is welded to it. If they are WeldConstraints, you can check all welding connections through one simple check.

Perhaps if you show the welding script, I might be able to diagnose it.

2 Likes

I am sure:

Zoom into this one

Let me scratch something that is not that overcomplicated:

local Tool = script.Parent
local Root = Tool.Handle
for _, descendant in next, Tool:GetDescendants() do
	if descendant ~= Root and descendant:IsA("BasePart") then
		local Weld = Instance.new("WeldConstraint")
		Weld.Part0 = Root
		Weld.Part1 = descendant
		Weld.Parent = Root
	end
end

Still happening, nothing is anchored.

Can you forward a screenshot of the explorer on the tool and all of its descendants?

Try holding it as a R6 character, I don’t know if that would help, but better give it a shot.

Handle anchored or a part of the tool maybe?

Yeah, I experienced the same. I made sure it was anchored and everything but it still didn’t work. Weird.

1 Like

Oh! That’s bad man. ROBLOX may need to investigate this issue further.

I don’t think it’s anything to do with studio or anything like that. There could be an error in the build that I have accidentally done, I continue to look into this to try and fix this problem for myself.

Try selecting all the parts and anchoring then unanchoring them. Also make sure that there are no welds because it could be welded to something anchored. You can use F3X later to weld it all together.

Great fix, yes that will be why possibly.

Thanks, it’s fixed now. It oddly wasn’t to do with the tool itself, its just I left a weld script in Workspace, causing everyone to be welded to each other! Thanks everyone for your help though!

1 Like

this was the fix for my problem too - left quenty’s perfectionweld in workspace and i was dumbfounded when nothing worked

thanks from 4 years later haha