Can I find out which script(s) are running in real time?

Hello everyone,

So I am wondering if there is a way to see in studio all the scripts that are running in the game, including the “hidden” ones, and show all the ones that are active and working in the background. Thanks.

Here is a script I created that will print all of the scripts inside the Workspace, including their parent’s name. Please ensure that there are no unfamiliar script names.

for _, v in pairs(workspace:GetDescendants()) do
	if v:IsA("Script") then
		print(v.Name .. " is inside of " .. v.Parent.Name)
	end
end
1 Like