I want to figure out how to manipulate a player so I can make crouching, running, aiming, etc. I do not know how to do this and I do not know where to find out.
I know this is not very specific, but I just want to know how to make an arm/leg go from point A to point B without it falling off,
You could change the c0/c1 of the motors for the arms/legs.
local plr = game.Players['PlayerName']; --Replace "PlayerName" with the name of the player, or your's if plr and plr.Character then local char = plr.Character local torso = char.Torso torso['Left Hip']['C0'] = CFrame.new(0,0,0); --change this around until you get the look you want end
Note: Left Hip
is Left Leg, Right Hip
is Right Leg, Left Shoulder
is Left Arm, and Right Shoulder
is Right Arm.
What you are talking about is animations. ROBLOX provides a nice animation plugin for you to use, so I recommend you use that to create your animations.
Locked by TheMyrco
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?