Hello, I’m making an item notifier for my game, how can I add a billboard gui to a part appeared in a certain folder? Like once it appears in there a billboard gui is added
1 Like
something like this
for i,v in pairs(folder:GetChildren()) do
if v and v:IsA("Part") then
billboardgui:Clone().Parent = v
end
end