of     1   

silvereye56
#219990257Wednesday, June 28, 2017 11:58 PM GMT

for i = 1,10 do what does this line mean in the script??
BunnyBoy26
#219990399Thursday, June 29, 2017 12:00 AM GMT

for i = 1,10 do print("Hi!") end --> Hi! Hi! Hi! Hi! Hi! Hi! Hi! Hi! Hi! Hi!
EataPig98
#219996338Thursday, June 29, 2017 1:29 AM GMT

itll repeat the code 10 times. example: for i = 1,10 do print ("Hello world!") end output should show: Hello world! (x10)
BaiYuni
#219997638Thursday, June 29, 2017 1:48 AM GMT

wiki.roblox.com/index.php?title=Loops#For Basically, a for loop is where a code will execute the code inside of the statement a set number of times. It would go: for [Variable] = [Starting Value], [Ending Value], [Increment] do --Code end The increment by default is 1. The code will begin at the starting value and go to the ending value for each increment. As said above, that for loop will execute the code 10 times.
BunnyBoy26
#220003157Thursday, June 29, 2017 3:17 AM GMT

Also, the variable "i" stores the number of times the loop has run such that on the xth iteration: i = [Starting Value] + (x - 1) * [Increment]
BunnyBoy26
#220003266Thursday, June 29, 2017 3:18 AM GMT

Sorry; to be more consistent with Yuni, "i" should be [Variable]

    of     1