of     1   

amanda
#159817290Friday, April 10, 2015 2:17 AM GMT

give me really hard challenges!! i will complete as many as possible within the next 5 years!! doesn't have to be roblox related but has to be programming related
swimguy777
#159817610Friday, April 10, 2015 2:21 AM GMT

Taken from Project Euler: The following iterative sequence is defined for the set of positive integers: n → n/2 (n is even) n → 3n + 1 (n is odd) Using the rule above and starting with 13, we generate the following sequence: 13 → 40 → 20 → 10 → 5 → 16 → 8 → 4 → 2 → 1 It can be seen that this sequence (starting at 13 and finishing at 1) contains 10 terms. Although it has not been proved yet (Collatz Problem), it is thought that all starting numbers finish at 1. Which starting number, under one million, produces the longest chain? -[::ƧѡÎḾḠΰῩ::]-[::Helper of Scripting and Writer of Wikis::]
Goulstem
#159817684Friday, April 10, 2015 2:22 AM GMT

Make an in-game animation editor so that players can create their own animations for the game.
Stefan631
#159818172Friday, April 10, 2015 2:28 AM GMT

make minesweeper
amanda
#159821012Friday, April 10, 2015 3:05 AM GMT

@swimguy777 number: 837799 chain length: 524
amanda
#159821619Friday, April 10, 2015 3:14 AM GMT

I solved it on my own, but I just googled it, someone else got the same number but a different chain length. I most likely messed up and didn't include one.
Korniak
#159822934Friday, April 10, 2015 3:32 AM GMT

Create the full version of Minecraft inside ROBLOX.
swimguy777
#159823918Friday, April 10, 2015 3:44 AM GMT

@amanda Nicely done. Google Project Euler if you want more challenges like that one. -[::ƧѡÎḾḠΰῩ::]-[::Helper of Scripting and Writer of Wikis::]
Inexorability
#159823982Friday, April 10, 2015 3:45 AM GMT

g=1 Print the value of g without ever referencing it.
Stefan631
#159824680Friday, April 10, 2015 3:55 AM GMT

local a = 1 local name,value = debug.getlocal(1, 1) print(name)
Inexorability
#159824923Friday, April 10, 2015 3:58 AM GMT

getlocal is not a valid member of Script
Inexorability
#159824959Friday, April 10, 2015 3:59 AM GMT

attempt to index global 'debug' (a nil value)
Stefan631
#159824988Friday, April 10, 2015 3:59 AM GMT

Nvm only works in real Lua.
ChipioIndustries
#159825353Friday, April 10, 2015 4:06 AM GMT

Make a pie 3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881749 I'm noobtastic
neverhammer
#159825726Friday, April 10, 2015 4:12 AM GMT

g=1 print(1) I win
Inexorability
#159825908Friday, April 10, 2015 4:15 AM GMT

g=math.random(1,math.random(2,math.random(900,100000))) Print the value of g without referencing 'g'.
Fragility
#159826890Friday, April 10, 2015 4:30 AM GMT

g=math.random(1,99999999) print(getfenv()["\103"])
Inexorability
#159827011Friday, April 10, 2015 4:32 AM GMT

Technically referencing 'g', but you're solution is very close to mine.
drager980
#159827238Friday, April 10, 2015 4:35 AM GMT

g = 1 for i,v in pairs(getfenv()) do print(v) end is that it or am i referencing it AND THE TIGER GOES ROAR
Inexorability
#159827409Friday, April 10, 2015 4:38 AM GMT

Drager wins.
Goulstem
#159829737Friday, April 10, 2015 5:16 AM GMT

Find the millionth digit in pi
KOTwarrior
#159830819Friday, April 10, 2015 5:36 AM GMT

Technically, drager is referencing it. Explicitly stating the variable != referencing it.

    of     1