How can I make a image rotate from 90 to 0 with tween?

How can I tween an image to rotate from

image

to

2

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 :wink:
idk why something so simple could not come to my head lol

1 Like