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).
01 | --Things that you can change have been marked by * |
02 |
03 | local TweenService = game:GetService( "TweenService" ) --Get Tween Service |
04 |
05 | local Gui = script.Parent --*The gui that we want to tween |
06 |
07 | local goal 1 = { |
08 | Rotation = 10 --*The Property Goal we want to change |
09 | } |
10 |
11 | local goal 2 = { |
12 | Rotation = - 10 --*The reverse of Goal1 |
13 | } |
14 |
15 | TweenTime = 2 --*The length of the tween |
This should work if you put the local script inside of the guiobject or change the variable to where the gui is located
Use sine wave
1 | part = script.Parent |
2 | x = 0 |
3 | while 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 |
7 | end |
Just make sure script is inside the part, and i think this will work