I feel like the way Im doing this is really inefficient and wanna know if theres another way to update the number instead of using elseifs
local function DefaultCombo()
if Combo == 1 then
UpdateCombo()
knockback()
print("Stage 2")
elseif Combo == 2 then
UpdateCombo()
knockback()
print("Stage 3")
elseif Combo == 3 then
UpdateCombo()
knockback()
print("Stage 4")
elseif Combo == 4 then
UpdateCombo()
knockback()
print("Stage 5")
elseif Combo == 5 then
print("Stage 6")
knockback()
end
end