of     1   

markjac
#225378968Tuesday, September 19, 2017 7:07 PM GMT

So how would you repeat a script the same amount of a value, for an example if a value is 11 the script will repeat 11 times, if a value is 5 the script will repeat 5 times.
LaeMVP
#225379043Tuesday, September 19, 2017 7:11 PM GMT

for i = 1,x do
Brandon5220
#225379104Tuesday, September 19, 2017 7:14 PM GMT

^
gohan31865
#225379139Tuesday, September 19, 2017 7:15 PM GMT

what lae said was kinda vague; visit wiki or something for i=1, maximum, increment do --code end i=1 is the starting number, can be any value second part is the point at which it stops third is increment, or the amount it goes up each time so if i had something like 0.5 for the increment, it'd start at 1, and go up by 0.5 until it reaches the maximum number the third part is completely optional, leave it blank and it starts by 1's by default
markjac
#225379317Tuesday, September 19, 2017 7:22 PM GMT

ok, thanks guys for the help.

    of     1