Ik this code is terrible. And I could probably make this in just 20 lines. Could anyone help me make it have less code to solve the problem?
001 | local blockbreak = game.ReplicatedStorage.Blockbreakstage |
002 | local bk 11 = blockbreak.Destroy 1 [ "1destroy" ] :Clone() |
003 | local bk 12 = blockbreak.Destroy 1 [ "2destroy" ] :Clone() |
004 | local bk 13 = blockbreak.Destroy 1 [ "3destroy" ] :Clone() |
005 | local bk 14 = blockbreak.Destroy 1 [ "4destroy" ] :Clone() |
006 | local bk 15 = blockbreak.Destroy 1 [ "5destroy" ] :Clone() |
007 | local bk 16 = blockbreak.Destroy 1 [ "6destroy" ] :Clone() |
008 |
009 | local bk 21 = blockbreak.Destroy 2 [ "1destroy" ] :Clone() |
010 | local bk 22 = blockbreak.Destroy 2 [ "2destroy" ] :Clone() |
011 | local bk 23 = blockbreak.Destroy 2 [ "3destroy" ] :Clone() |
012 | local bk 24 = blockbreak.Destroy 2 [ "4destroy" ] :Clone() |
013 | local bk 25 = blockbreak.Destroy 2 [ "5destroy" ] :Clone() |
014 | local bk 26 = blockbreak.Destroy 2 [ "6destroy" ] :Clone() |
015 |
An upvalue is an external local variable; a local variable used in a function body but declared outside of it. I believe the maximum amount of upvalues is about 60. You have waaaayyyy too many variables here. And yes, your code can severely be simplified.
Use loops! This will shorten and simplify your code.
This code works. Make sure you put it inside the event listener.
01 | for i = 1 , 10 do |
02 | local current_destroy = blockbreak [ "Destroy" .. i ] |
03 |
04 | for j = 1 , 6 do |
05 | local current_bk = current_destroy [ j .. "destroy" ] :Clone() |
06 | current_bk.Parent = target |
07 | wait(waitspeed) |
08 | current_bk:Destroy() |
09 | end |
10 | end |