How to disable accessory collision settings

Hello!

I don’t know how to edit character accessory settings like CanCollide, CanTouch.
Can someone help me?

Hello! You can find setting like CanCollide, CanTouch in “Handle” in accessory.

1 Like

This server script code

game:GetService("Players").PlayerAdded:Connect(function(player)
	player.CharacterAppearanceLoaded:Connect(function(character)
		for i, v in ipairs(character:GetChildren()) do
			if v:IsA("Accessory") and v:FindFirstChild("Handle") then
				v:FindFirstChild("Handle").CanCollide = false -- Must go first
				v:FindFirstChild("Handle").CanQuery = false
				v:FindFirstChild("Handle").CanTouch = false
			end
		end
	end)
end)
1 Like

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