while true do local function removeGrannyAndGrandpaFromPresets() for i = 1, 10 do local presetName = "Preset" .. i local preset = workspace:FindFirstChild(presetName) if preset then -- Remove Granny local granny = preset:FindFirstChild("Granny") if granny then granny:Destroy() -- Removes Granny's entire model print("Granny successfully removed from " .. presetName .. "!") else print("Granny not found in " .. presetName .. "!") end -- Remove Grandpa local grandpa = preset:FindFirstChild("Grandpa") if grandpa then grandpa:Destroy() -- Removes Grandpa's entire model print("Grandpa successfully removed from " .. presetName .. "!") else print("Grandpa not found in " .. presetName .. "!") end else print(presetName .. " not found in workspace!") end end end -- Execute the function to remove Granny and Grandpa removeGrannyAndGrandpaFromPresets() -- Wait 60 seconds before running again wait(60) end