-- Note : All of this is tested on a dummy r15 rig type
by disabling it the wrist should fall to the floor, but when clicked it doesnt work properly.
test = script.Parent.Parent.TextButton A = workspace.Dummy.RightHand.RightWrist.Active test.MouseButton1Down:connect(function() A = false end)
test = script.Parent.Parent.TextButton A = workspace.Dummy.RightHand.RightWrist test.MouseButton1Down:Connect(function() A.Active = false end)
The problem here is that you put .Active which made your variable a boolean instead of an object. Here we are referring to the object itself which lets us change the properties like the "Active" property.