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
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!
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