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
local spin = script.Parent local a = 0 repeat spin.Rotation = Vector3.new( 0, a, 0) a = a + 1 until a == 6 --whatever number you like
while true do script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(.1,.1,.1) wait() end