of     1   

YungLimbo
#140566498Wednesday, July 16, 2014 11:32 PM GMT

Please?
LegendaryAccount
#140566683Wednesday, July 16, 2014 11:35 PM GMT

print(math.random(15,30)) you can put this in a sword to deal 15 - 30 damage per hit
super10099
#140567321Wednesday, July 16, 2014 11:42 PM GMT

print(math.random(min,max)
Accedoria
#140567736Wednesday, July 16, 2014 11:46 PM GMT

l = math.random(1,1000000)
Notunknown99
#140569750Thursday, July 17, 2014 12:10 AM GMT

math.random(5, 15) Generates a random integer from 5 to 15 inclusive. math.random(6) Generates a random integer from 1 to 6 inclusive. math.random() Generates a random double from 0 (inclusive) to 1 (exclusive).
Goodis
#140570081Thursday, July 17, 2014 12:14 AM GMT

local plr=game:service'Players''DukeCow'; local gears={1;2;3;4;5;}; for i=1,#gears do game:service'InsertService':loadAsset(gears[math.random(1,#gears)]):children()[1].Parent=plr.Backpack; end; in this script im using math.random(); to insert any value from the given table 'gears'.
BladeXE
#140570243Thursday, July 17, 2014 12:15 AM GMT

quotes = { "You stink"; "Get a life"; "Go die FR00B." } while wait(10) do local quote= quotes[math.random(1,#quotes)] print(quote) end
Notunknown99
#140570382Thursday, July 17, 2014 12:17 AM GMT

I dont think you want that for loop, and avoid using the lowerCamelCase methods, as most of them are deprecated. Also, its 'Players'['DukeCow']

    of     1