I've put the code below in a LocalScript and inside StarterGui to test how CFrame works.
local Player = game.Players.LocalPlayer local RArm = Player.Character["Right Arm"] RArm.C1 = CFrame.new(5, 4, 2) * CFrame.fromEulerAnglesXYZ(1,5,2)
When I play the game nothing happens, why?
C1
is a property of Welds, not Parts. Try using the CFrame
property instead.