How do I make this line: Model:SetPrimaryPartCFrame(Model:GetPrimaryPartCFrame() * CFrame.new(0,0.05,0)) Rotate?
Did you try unanchoring it?
or try putting this script into the part
1 | local spin = script.Parent |
2 | local a = 0 |
3 | repeat |
4 | spin.Rotation = Vector 3. new( 0 , a, 0 ) |
5 | a = a + 1 |
6 | until a = = 6 --whatever number you like |
1 | while true do |
2 | script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(. 1 ,. 1 ,. 1 ) |
3 | wait() |
4 | end |