Editing this script to find certain models specific name

Hello, this is a script that finds models Named FAN001, FAN022, FAN130 etc, how to modify it so that it searches for FAN01 FAN02 etc?

local MinIndex = 1
local MaxIndex = 130
local CurrentIn = 0
local Path = script.Parent
for current = MinIndex, MaxIndex do
    CurrentIn = CurrentIn + 1
    local Names = "FAN000"
    if CurrentIn < 10 then
        Names = "FAN00"..CurrentIn
    else
        if CurrentIn < 100 then
            Names = "FAN0"..CurrentIn
        else
            Names = "FAN"..CurrentIn
        end
    end
1 Like

models_parent_variable:FindFirstChild(Names)
parent:FindFirstChild(name) finds an instance in parent with the name name. If there is no instance with name name, then it returns nil.