I'm trying to weld a brick to the player's arm but the brick isn't not rotating at all when i use CFrame.Angles
1 | local po = game.ReplicatedStorage.Quirks [ "Full Cowl" ] .DecalPart |
2 | po.Parent = workspace |
3 | po.CFrame = char.RightLowerArm.CFrame * CFrame.Angles( 3 , 1 , 5 ) |
4 |
5 | local weld = Instance.new( "Weld" ) |
6 | weld.Parent = char.RightLowerArm |
7 | weld.Part 0 = char.RightLowerArm |
8 | weld.Part 1 = po |