That's because you're redefining the CFrame absolutely, not relatively.
Compare this...
01 | local chickenbutt = script.Parent |
04 | function onClicked(playerWhoClicked) |
05 | chickenbutt.CFrame = CFrame.new( 38 ,. 5 , 34 ) * CFrame.Angles( 45 , math.pi, 0 ) |
12 | chickenbutt.ClickDetector.MouseClick:connect(onClicked) |
With this...
1 | local chickenbutt = script.Parent |
2 | chickenbutt.CFrame = CFrame.new( 38 ,. 5 , 34 ) |
4 | function onClicked(playerWhoClicked) |
5 | chickenbutt.CFrame = chickenbutt.CFrame * CFrame.Angles( 45 , math.pi, 0 ) |
8 | chickenbutt.ClickDetector.MouseClick:connect(onClicked) |
See how it uses its own CFrame every time the onClicked
function's fired? That's a good thing, because that's what you want.
Touch it one time, and it rotates the given angle. Touch it another time, and it will use the last CFrame, but apply it to the new one.