I am currently experiencing difficulties with smoothly rotating an element. Attached is a GIF of a frame undergoing rotation, however, the issue I am facing is that the elements within the frame appear to be jittery and uncoordinated during the rotation process. I would appreciate any suggestions on how to rectify this issue. Is this a limitation of the current engine/tools offered by Roblox? I have attempted to rotate the frame itself and the main parent, however, these efforts have not yielded any results.
local tween = game:GetService("TweenService")
local template = game.StarterGui.HUD.Main.Events.Template
tween:Create(template, TweenInfo.new(10, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), { Rotation = 0 }):Play()