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

How would I make this script shorter? [SOLVED]

Asked by 10 years ago

How to make this shorter? I want it to keep going and never stop. I want the rotation to never stop going up, and the scripts parent is a text button.

001if script.Disabled == false then   - - I'm too lazy to find how to start a script                  - - when the game starts :p
002 
003    script.Parent.Rotation = 1
004    wait(0.01)
005    script.Parent.Rotation = 2
006    wait(0.01)
007    script.Parent.Rotation = 3
008    wait(0.01)
009    script.Parent.Rotation = 4
010    wait(0.01)
011    script.Parent.Rotation = 5
012    wait(0.01)
013    script.Parent.Rotation = 6
014    wait(0.01)
015    script.Parent.Rotation = 7
View all 105 lines...
0
By the way, you can remove that entire if statement surrounding this. Scripts will automatically run anywhere that they are able to run if not disabled. adark 5487 — 10y

3 answers

Log in to vote
0
Answered by
M39a9am3R 3210 Moderation Voter Community Moderator
10 years ago

This can be done in a loop...

1local rotation = 0
2while rotation ~= 52 do --So if the rotation is not 52... hmm... Carry on.
3wait() --Wait for it. Wait for it. o.O
4script.Parent.Rotation = rotation --Set the rotation to the number the loop is on.
5rotation = rotation + 1 --One step closer to being finished.
6end --Well, the loop has to end somewhere.
7--Rotation should be 51 here.
0
Could you keep it going forever and not stop at 51? My_Comment 95 — 10y
1
Yes, just remove rotation ~= 52 and replace it with true. M39a9am3R 3210 — 10y
Ad
Log in to vote
5
Answered by 10 years ago
1while wait(.01) do
2script.Parent.Rotation = script.Parent.Rotation + 1
3end

should work :)

Log in to vote
0
Answered by
HexC3D 830 Moderation Voter
10 years ago
1if script.Disabled == false then
2for i = 1,360 do -- Repeats this thing 51 times.
3script.Parent.Rotation = script.Parent.Rotation +1
4wait(0.01)
5end
6end

if this helped +1

0
I wanted it to keep going and not stop at 51 nor any number. My_Comment 95 — 10y

Answer this question