|
print ("Totally True")
dontCare = Value
Value = 0
if dontCare > 0 then
repeat
dontCare = dontCare -1
until
dontCare < 0
dontCare:Destroy()
end
end |
|
200ABJoin Date: 2010-08-24 Post Count: 1604 |
My God... |
|
|
MettaurSpJoin Date: 2010-03-20 Post Count: 3179 |
It will error because you are trying to compare nil value dontCare with 0 using >. |
|
BytecodedJoin Date: 2013-12-01 Post Count: 59 |
LOL..An error appeared at the first line. Attempted to index nil value 'Value'
|
|
DevoiJoin Date: 2013-06-09 Post Count: 5387 |
CareGiven={}
print'Care given: '..#CareGiven
while #CareGiven~=math.sqrt(-1) do
CareGiven.AmountOfCareGiven=0
print'Care given: '..#CareGiven
end |
|
|
Thats pretty inefficient code, Victimize.
print("I don't care.")
Not as clever, but far more to the point. |
|
|
|
BLOXLUAJoin Date: 2013-03-16 Post Count: 453 |
It won't works because "Value" must be assigned before it is defined. |
|
200ABJoin Date: 2010-08-24 Post Count: 1604 |
@BLOXLUA
It doesn't work for multiple reasons... |
|
|