A thought that occurs to me is that you are trying to do too much at once.
Each relationship you define is between two tables. PERIOD.
There is such a thing as having collateral relationships. But when you go to define a relationship, you can only define one at a time.
I.e. in the relationships pane,
add the primary table.
add the secondary table.
Drag the linking field from the secondary table to the corresponding field in the primary table.
Define the relationship characteristics.
Now add another secondary table. Do it all again, one item at a time for your other 5 tables.
When it is done, you have 6 relationships, each in whatever form you chose, each between one primary table and one secondary table, each an INDEPENDENT relationship.
Now, since you are having trouble with this concept, a word of caution:
There is no DIRECT relationship between your secondary tables even after they are linked to the primary table. But if you write a query that relates TWO of your secondary tables to the primary table, they will enjoy a secondary relationship. That is, both JOINs will work correctly. But perhaps unexpectedly as well.
They will also probably form a limited permutation set in which all possible combinations of the two secondary tables will apply for each record from the primary table. So depending on the cardinality of each relation (average number of records returned for a single value), you might get a number of records equal to the product of the cardinalities.
I.e. imagine a three-way join between table PrimaryTable and tables Secondary1 and Secondary2. If the population of the secondary tables is such that you expect about 10 records returned for each of secondary1 and secondary2, you will get 100 records in the JOIN set, on average.
So be careful when joining multiple tables together. It is a pitfall associated with having multiple relationships linked to a common value. And God forbid that you should create a JOIN based on two secondary tables without including the primary table to whittle down the result set.