Posted
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.
Replied
Cancel
Post
Replied
Cancel
Post
Replied
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post