Question about hand movement when interacting with prompt

Hi,

I noticed in Bloxburg that when you interact with a prompt it moves your hand slightly. Is this an animation that plays? how is this achieved?

Example:

most likely is an animation, but what they could also be doing is changing the torso’s motor6D c0 position
Here’s a good example below:

	local rightArm = plr.Character["Right Arm"]
	plr.Character.Torso["Right Shoulder"].C0 = CFrame.new(1, 0.5, 0)
	plr.Character.Torso["Right Shoulder"].C0 *= CFrame.fromOrientation(0, math.rad(90), math.rad(90))

this makes the player’s right arm move up

1 Like

I think its just a IKControl instance that makes the arm go to the target and back.