Type - engine bug
OS - while testing on my iphone 13, it happened and when play testing in studio it happened
iphone 13 - iOS 17.2.1
macos - older intel macbook pro, macos 12.7.2
First experienced - when i made my shop gui this morning
Last experienced - just now
Reproduction steps:
1- Create a CanvasGroup, my canvasgroup also has uicorner, not sure if that would effect it at all
2- Parent a ImageLabel to it
3- Insert this script into the image which will make it spin:
local tweeninfo = TweenInfo.new(10,Enum.EasingStyle.Linear)
while wait(10) do
local r = script.Parent.Rotation + 90
local tween = game:GetService("TweenService"):Create(script.Parent,tweeninfo,{Rotation=r})
tween:Play()
end
details that you guys may find helpful:
the image is 2x bigger than the canvas group so that it fills the gui even when rotated, not sure if an oversized image would effect anything either as thats what canvasgroups are made for
here’s a video from my iphone: its most noticeable like half way through. i dont know why it would sometimes be more and sometimes less jitterey but thats just how it is
here’s another video from testing in studio:, the gui is different because i updated its design a little. it still has the same spin script