When moving the table it works fine, the player grabs it nothing strange, but when picking up the chair it moves the player to the chair, the script is the same and the properties of the chair and table are the same.
https://gyazo.com/ff6fd6056cf4cad622e756b1fbc36a57
script.Parent.ClickDetector.MouseClick:Connect(function(plr)
script.Parent.Anchored = false
script.Parent.ClickDetector.MaxActivationDistance = 0
script.Parent.Parent.Seat.Disabled = true --Table doesn't have this part, its not whats affecting it
plr.Character.Humanoid:EquipTool(script.Parent.Parent)
end)