How can I tween an image to rotate from
to
with a tween effect?
How can I tween an image to rotate from
to
with a tween effect?
You can use TweenService:
local tweenService = game:GetService('TweenService')
local imageLabel = path.to.image
tweenService:Create(imageLabel, TweenInfo.new(0.5), {Rotation = 90}):Play()
Thanks cody
idk why something so simple could not come to my head lol