-
What do you want to achieve?
I want to rotate the right arm 90° degrees, without using animations. It’s obviously very basic code, because I want it to work first, before implementing everything. -
What is the issue?
My code doesn’t work and I don’t know what’s the issue.
game:GetService("RunService").Stepped:connect(function()
local Character = game.Workspace:WaitForChild("ByGermanKnight")
local Motor = Character.RightUpperArm.RightShoulder
Motor.Transform = Motor.Transform * CFrame.new(math.rad(90),0,0)
end)