Uhh you can try this (run in your studio command bar)
local scripts = {}
for _, scriptInstance in game:GetDescendants() do
if scriptInstance:IsA("Script") and scriptInstance.Source:find("-part:GetMass()") then
table.insert(scripts, scriptInstance)
end
end
game:GetService("Selection"):Set(scripts)