|
| 05 Sep 2015 03:38 PM |
This wasn't made by me, but looks like a fun set of challenges. Wasn't intend for Lua but I'm going to attempt all of the ones I can do, and try and do it within 2 months. Some of them look very hard though https://gyazo.com/8e641fc5d3be3bb1af67d7afb3f6f4e8
There's an API for that |
|
|
| Report Abuse |
|
|
chimmmihc
|
  |
| Joined: 24 Jul 2014 |
| Total Posts: 2420 |
|
| |
|
| |
|
|
| 05 Sep 2015 03:51 PM |
Seeing as I'm going to do them all, that means I have to do the dull ones like temperature converter and name generator
There's an API for that |
|
|
| Report Abuse |
|
|
chimmmihc
|
  |
| Joined: 24 Jul 2014 |
| Total Posts: 2420 |
|
|
| 05 Sep 2015 03:56 PM |
I made a generator once
fricken sucked but I love it |
|
|
| Report Abuse |
|
|
|
| 05 Sep 2015 04:12 PM |
Lol. I didn't go over board with mine, just short and simple.
one = {"Le ", "The ", "First "} two = {"Epic ", "Awesome ", "Kewl "} three = {"Raiders", "Hunters", "Bandits"}
local output = script.Parent.Parent.Output
script.Parent.MouseButton1Click:connect(function() print("clicked") local ran1 = math.random(1, #one) print(ran1) local ran2 = math.random(1, #two) print(ran2) local ran3 = math.random(1, #three) print(ran3) output.Text = one[ran1] .. two[ran2] .. three[ran3] end)
There's an API for that |
|
|
| Report Abuse |
|
|