[SOLVED ] The cloned frame doesn't show after clearing the previous children

I created a button that deletes the saved logistics which is cloned frames. So my issue is that when I click it, it deletes the children and then stops logging or it stop showing the cloned frames.

Server Script:
image

The ISSUE
- I clicked the button that deletes the children and then attempted to log it by clicking the button that logs (to cloned the gui), but it did not show the new cloned gui after clearing the previous cloned frames.
- Log template is the name of cloned frames.

- Thank you.

1 Like

Wait so what is the issue? Sorry I don’t really understand what the issue is.

Could it be possible to show us a vid as well to show us what it looks like.

1 Like

Oh, sorry.

[What I did in gif below]
- I clicked the button where it will send the action to logistics frame.
- Yes, it sent the action in logistics frame. And then i clicked the delete button where it will clear all children inside of logistics frame which is the actions.
- After clicking it so basically it’s cleared. I tried to send another action but it doesn’t show anymore.
RobloxStudioBeta_XJKWfYk6Cy

Does it show any erors? I don’t think the code you put above could cause an issue like this,

1 Like

Nope it doesn’t show any errors.

Edit:

I tried this and works the Parent:ClearAllChildren() basically deletes the parent and the children.

for i,v in next, Parent:GetChildren()
if v:IsA('Frame') then
v:Destroy()
end
end

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.