Да нет ничего проще: создай LocalScript (если его еще нет) внутри AutoClickerFrame. Добавь в него этот код:
local AutoClickerFrame = script.Parent
local CoinsLabel = AutoClickerFrame:FindFirstChild("CoinsLabel")
if CoinsLabel then
local tempFolder = Instance.new("Folder")
tempFolder.Parent = AutoClickerFrame
for _, child in ipairs(AutoClickerFrame:GetChildren()) do
if child ~= CoinsLabel and child:IsA("GuiObject") then
child.Parent = tempFolder
end
end
for _, child in ipairs(tempFolder:GetChildren()) do
child.Parent = AutoClickerFrame
end
tempFolder:Destroy()
end
И всё