How would i make a grid crafting system on roblox?

i want to make a grid crafting system and just wanna tell you i want it like 3x3 so like minecraft as for the ui i am done with it and the problem is i dont know where i would start and i need help as my brain is empty i dont want full scripts i just want the how i would implement the concept of grid crafting and if you have any free model or modules that help me or some sort pls give me the model so i can take a look at thx

i already looked on other post and my brain wont understand those

Well the first step is deciding if you want to do a physical crafting system or a UI crafting system.

Next, set up an inventory system like Minecraft and try to find a way to implement that.

I must sleep right now, but take a look at 2D Arrays, they’ll solve your problem.

oh great i just looked those up and its kinda helpful ngl thx i didnt knew those existed lol

1 Like

i already told its a ui crafting system…-_-

i have a inventory system done where it check tool in backpack and makes the inventory.

this video is the old one where the inventory broke but i fixed it now so dont say its broken

This post is extremely useful, but in a sense I will do a rundown:

Steps:

  • Build a table of formulas (X, Y, and Z make F) - You can also add grid-numbers to these as well, so X must be in the top left corner
  • Once the player clicks “Craft” after placing their items, run through the formulas and check if all the ingredients and their grid position match, if so, remove the items from the player and award the item
local formulas = {
     Item1 = {
          Ingredient1 = {
               Item = "Carrot",
               Position = "TopLeft", -- or 1
          },
          Ingredient2 = {
               Item = "Peas",
               Position = "TopRight", -- or 2
          },
     },
}

And you’d follow this format for all items, then its a matter of an for i, in pairs loop to check if all ingredients match. Hope this helps!

but how would i make those ingredients should they be somekind of a tool or… thats where my head goes mad

I would make them a custom inventory system, on the server have a table with the player name as the key

local InventoryList = {}
-- Once a player has joined
local function initInventory(Player)
     InventoryList[Player] = {}
     -- Bind whatever function grants materials, then insert the ingredient to the players inventory. A seperate table for the actual crafting
end

hiya i made a gui for the crafting grid now im gonna script it anyways what do you think about this