-- Example: Spinning Part Script -- Put this in a Script inside a Part to make it spin local part = script.Parent while true do -- Rotate the part part.CFrame = part.CFrame * CFrame.Angles(0, math.rad(5), 0) -- Wait for the next frame task.wait() end