Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

is it possible to add another number in the list next to the first number?

Asked by 3 years ago
Edited 3 years ago

is it possible to add another number in the list next to the first number in the list like example 1 then you add a 4 next to it and it becomes 14 then add another example 5 so it becomes 145

example;

local MyList = {1,0,0}

and becomes like:

local MyList = {14,0,0}

then add another

local MyList = {145,0,0}

(I am new to Lua sorry)

0
MyList[1] = 14? BulletproofVast 1033 — 3y
0
table.insert(MyList, '14')? idk xd BulletproofVast 1033 — 3y

Answer this question