Hi,
I have this script. It's in a model, which is in a model, which is in another model. For some reason, it only rotates a little bit. I tried it on the same model but not with the others, and it worked fine. Any help?
script.Parent.PrimaryPart = script.Parent.MainHose.LM while true do script.Parent:SetPrimaryPartCFrame(script.Parent.PrimaryPart.CFrame * CFrame.new(0, 0, -0.1) * CFrame.Angles(0.1,0,0)) wait() end
Thanks.
Try using eulerangles
like this
while true do script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(0.1,0.1,0.1) wait(0.02) end
Hope this helped