Hello, I'm editing a script and I added lots of or, but the script got confused. Can anyone help me?
attacking = AttackArm and "rightA" or "leftA" or "rightL" or "leftL"
The script will only read until the "rightA or leftA", after that the script doesn't ready anymore.
This is better way to separate each Arm parts and each Leg parts
attacking = AttackArm and ("rightA" or "leftA") or ("rightL" or "leftL")
It's the better way but it entirely depends on how you use it.
EDIT: More photos Screenshot