How to ragdoll only one arm?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Favkis

Hey, I’m not understanding what kind of parameters I need to send to skeleton.physical_bones_start_simulation()
Here’s what I have:

	skeleton.physical_bones_start_simulation(["phys_upperarm_l","phys_forearm_l"])```
If I simply start first function, then my ragdoll falls fully on ground and works fine. But if I do second function, it stops ragdoll compeltely. So if I just have second string  or if I have both, I don't have anything ragdolled at all.
I am 100% sure I have "phys_upperarm_l" in my skeleton, I even checked with print in case I can't see with my eyes `print(skeleton.get_node("phys_upperarm_l"))`
output is: `[PhysicalBone:1714]`

So what am I doing wrong? I don't have any stop_simulation() functions, there is nothing in my script that disables ragdolls. I added them just now and trying to figure out how to partially ragdoll a limb. 

[wrap=comment]
"...in case I can't see with my eyes." Lmao I know your pain, family.
[wrap=footnote]Toupoc3 | 2023-05-06 01:13[/wrap]
[/wrap]
:bust_in_silhouette: Reply From: Favkis

I foudn out, I had to write bone names, not physicalbone names in there