how would placeable minecraft glass panes work in roblox
Do you mean how Minecraft’s glass panes morph to connect with other glass panes? It’s pretty simple.
You can make a table that stores all glass panes with the coordinates of where it is.
local glassPanes = {
{0, 0},
{5, 1},
{8, 2},
{1, 3}
}
Then, you can check for a glass pane, and find adjacent glass panes. Then, use a glass pane model that merges with those glass panes.