That's what I meant, sorry I'm new to modding. My current blockstate is as follows.
{
"multipart": [
{"apply": {"model": "ai:copper_cable"}},
{ "if": { "Up": "true" },
"apply": { "model": "ai:copper_cable_turn" }
},
{ "if": { "North": "true" },
"apply": { "model": "ai:copper_cable0"}
},
{ "if": { "East": "true" },
"apply": { "model": "ai:copper_cable_turn", "y": 90}
},
{ "if": { "South": "true" },
"apply": { "model": "ai:copper_cable_turn", "y": 180}
},
{ "if": { "West": "true" },
"apply": { "model": "ai:copper_cable_turn", "y": 270}
},
{ "if": { "Down": "true" },
"apply": { "model": "ai:copper_cable_turn", "y": 270}
}
]
}
Note: I have tried both "if" and "when"
What am I doing wrong?