For example, I'm trying to find every instance in Workspace that has "Ragdoll" in the name, but the ragdoll names vary and there are several of them. Here's my script so far:
for i,v in pairs(workspace:GetChildren()) do
if v --[[script to find string inside instance name goes here]] then
end
end