Forum > Scripts >

Mini Explorer | Limited Lua

Posts: 41

Threads: 17

Joined: Apr, 2018

Reputation: 0

Posted

This is an "explorer" that will show you in dev console (F9) all the children of the objects you want to see.
If you want to see stuff in your player, change "workspace" to "me"
Any object that is a Folder or a Model will be in orange.
Else, it will be in white.
Copy all below:
---------------------------------------
local me = game:GetService("Players").LocalPlayer
warn("<explorer>")
for _, v in pairs(workspace:GetChildren()) do
 Â Ã‚  if v:IsA("Instance") and (v:IsA("Model") or v:IsA("Folder")) then
 Â Ã‚   Â Ã‚  warn(v:GetFullName())
 Â Ã‚  else
 Â Ã‚   Â Ã‚  print(v:GetFullName() .. " ~ " .. v.ClassName)
 Â Ã‚  end
end
warn("</explorer>")
-------------------------------------------
~ Will show the full name of the object (ex: game.Workspace.Part)
~ The explorer starts at
<explorer> and ends at </explorer>
~ Will also print the object's ClassName, if it is a folder or a model, it will be printed in orange, no ClassName given.
  • 0

Posts: 1

Threads: 0

Joined: Apr, 2018

Reputation: 0

Replied

( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I ) ( I_I )
  • 0

Posts: 92

Threads: 17

Joined: Mar, 2018

Reputation: 0

Replied

Very useful, good work. :D
  • 0

Posts: 2

Threads: 0

Joined: Mar, 2018

Reputation: 0

Replied

Wow you have so many useful scripts thanks bro
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )