Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How could you make an image rotate back and forth smoothly?

Asked by 7 years ago

I would like a way to rotate something back and forth very efficiently and smooth such as: https://gyazo.com/ce2763e854e1ab7ce923885591125d31

I can't seem to figure out how to do this (I'm sure I am over thinking this).

0
you could use for loops (e.g, for i = 1,30 do) and change the rotation property (e.g gui.rotation = gui.rotation + 1) abnotaddable 920 — 7y
0
Look into http://wiki.roblox.com/index.php?title=API:Class/TweenService/Create. This should allow you to tween almost any property. XAXA 1569 — 7y
0
Thats not tweening an image................ hiimgoodpack 2009 — 7y

2 answers

Log in to vote
2
Answered by 7 years ago
01--Things that you can change have been marked by *
02 
03local TweenService = game:GetService("TweenService") --Get Tween Service
04 
05local Gui = script.Parent --*The gui that we want to tween
06 
07local goal1 = {
08    Rotation = 10 --*The Property Goal we want to change
09}
10 
11local goal2 = {
12    Rotation = -10 --*The reverse of Goal1
13}
14 
15TweenTime = 2 --*The length of the tween
View all 29 lines...

This should work if you put the local script inside of the guiobject or change the variable to where the gui is located

0
it works very good and fine thx ;DD !!! Lolamtic 63 — 7y
Ad
Log in to vote
1
Answered by 7 years ago
Edited 7 years ago

Use sine wave

1part = script.Parent
2x = 0
3while wait() do
4    y = 1*math.sin(x) -- change 1 to how high you want the sin wave to go on y axis
5    part.CFrame = part.CFrame * CFrame.Angles(0,0,math.rad(y))
6    x = x + 0.1
7end

Just make sure script is inside the part, and i think this will work

0
Did you watch the gif the guy provided? hiimgoodpack 2009 — 7y
0
Yeah, i didn't realise this was for a gui, I though it was far a part with a decal on it. However the same concept can still apply to the gui... 123marble 61 — 7y

Answer this question