of     1   

Victoria0001
#147519612Tuesday, October 07, 2014 10:40 PM GMT

I'm afraid it'll crash. for i = math.huge, 0, -1 do print(i) wait() end
JarodOfOrbiter
#147521020Tuesday, October 07, 2014 11:00 PM GMT

math.huge is not a number. But assuming it were, that would do nothing, since you have a wait in there.
Victoria0001
#147521413Tuesday, October 07, 2014 11:05 PM GMT

math.huge is a number.. It's infinite. if you used this loop, it would forever count up. for i = 1, math.huge do print(i) wait() end And the wait is to prevent it from trying to do an infinite number of loops all at once.
builderman0621
#147523003Tuesday, October 07, 2014 11:27 PM GMT

for i = 1, #game.Workspace:GetChildren()^math.random(1, math.huge) do print(i) end
SmokingTheReefer
#147527642Wednesday, October 08, 2014 12:28 AM GMT

while 12*12==144 do local cool = 0 print(cool) cool = cool+1 end
SmokingTheReefer
#147527692Wednesday, October 08, 2014 12:29 AM GMT

forgot to put a wait, but you get the point.
Lacryma
#147532439Wednesday, October 08, 2014 1:32 AM GMT

infinity is not a number
SmokingTheReefer
#147532515Wednesday, October 08, 2014 1:33 AM GMT

Infinity is indeed not a number, but rather an idea.
JarodOfOrbiter
#147537652Wednesday, October 08, 2014 2:46 AM GMT

Try your script, I guarantee that math.huge is not a number.
128GB
#147545698Wednesday, October 08, 2014 6:04 AM GMT

It'll print inf over and over
ayobreezy12345
#147552742Wednesday, October 08, 2014 2:20 PM GMT

icy, you crashed my studio support now
SmokingTheReefer
#147554928Wednesday, October 08, 2014 3:43 PM GMT

Did you not read my post after it. You have to add a wait() after the while statement.
UnderstoodWhere
#222587790Thursday, July 27, 2017 10:12 PM GMT

Bump
A_Ferret
#222589599Thursday, July 27, 2017 10:30 PM GMT

No this will crash: while true do Instance.new('Part', workspace) end Defeating a sandwich only makes it tastier.

    of     1