Dynamically number UI

I am actually about to lose my mind.

So i am trying to create a inventory system using tables. I can add new array elements to the inventory but i have ran into a problem with removing them. Since the way i remove the array element is by using it’s index and the way i get the index is by getting it from the text buttons name.
The problem that i have run into is that sometimes the inventory table index and the text button name can become mismatched which would result in stray elements being left in the inventory table.

The solution i want to implement is renaming the text buttons name to the number of them remaining but i have no idea how. Kinda like this:

i don’t know how to explain this properly so if anyone needs it i will link the place file

What is it you need help with?

In your post, you outline your problem and then also give a solution to it.

sorry i am really tired
that’s the solution i want to implement.

here is an image that better explains what i want:

It’s like a hotbar system, basically you need to update the slots when a Tool disappears.

He wants it so “1, 2, 3, 4” are sorted in that order and once you remove “4” it would look like this “1, 2, 4” but he wants it to look like “1, 2, 3”

something like that is what i want

Well, here’s an example with a table of numbers I created (you’ll want to change this to your uses)

local numbers = {1, 2, 10, 4}

function fixnumbers()
	local missing = {}
	
	table.sort(numbers, function(a, b)
		if not b then return false end
		return b > a
	end)

	for i,v in pairs(numbers) do
		if not table.find(numbers, v+1) and i < #numbers then
			table.insert(missing, v+1)
		end
	end

	if #missing > 0 then
		for i,v in pairs(numbers) do
			for a, missing in pairs(missing) do
				if v > missing then
					numbers[i] -= 1
				end
			end
		end

		return fixnumbers()
	else
		return true
	end
end

fixnumbers()
print(numbers)
1 Like

I will try this tomorrow thanks dude

Easiest way to do this use UI layouts. UIGridStyleLayout UIListLayout UIPageLayout
See also:
https://developer.roblox.com/en-us/api-reference/property/GuiObject/LayoutOrder

The ‘table’ library already achieves this via table.remove.

local t = {1, 2, 3, 4}
table.remove(t, 3) --'table.remove' shifts all items following the removed item down one index.
for i, v in ipairs(t) do
	print(i, v)
end

--1 1
--2 2
--3 4

Oh my god i did it!!!, to anyone wondering i just added an ID value to each item and removed it using that

Pretty much just this:

objectName= {
		ObjectName = "ObjectName",
		ID = nil,
		ImageID = "imageID",
		ObjectMeshID = nil,
		OBjectType = nil
	},