Advertisement
Vzurxy

Untitled

Aug 21st, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. -- // Bad Explorer \\ --
  2.  
  3. local BadExplorer = Instance.new("ScreenGui")
  4. local BG = Instance.new("Frame")
  5. local Execution = Instance.new("TextButton")
  6. local Pathway = Instance.new("TextBox")
  7. local Detail = Instance.new("Frame")
  8. local Explorer = Instance.new("TextLabel")
  9. local Exit = Instance.new("ImageButton")
  10. local Splitter = Instance.new("TextBox")
  11.  
  12. BadExplorer.Name = "BadExplorer"
  13. BadExplorer.Parent = game.Players.LocalPlayer.PlayerGui
  14. BadExplorer.ResetOnSpawn = false
  15.  
  16. BG.Name = "BG"
  17. BG.Parent = BadExplorer
  18. BG.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  19. BG.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  20. BG.Position = UDim2.new(0.605978251, 0, 0.444223106, 0)
  21. BG.Size = UDim2.new(0, 146, 0, 190)
  22. BG.Active = true
  23. BG.Draggable = true
  24.  
  25. Execution.Name = "Execution"
  26. Execution.Parent = BG
  27. Execution.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  28. Execution.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  29. Execution.Position = UDim2.new(0.0753424689, 0, 0.704846263, 0)
  30. Execution.Size = UDim2.new(0, 120, 0, 46)
  31. Execution.Font = Enum.Font.SourceSans
  32. Execution.Text = "Find"
  33. Execution.TextColor3 = Color3.new(1, 1, 1)
  34. Execution.TextSize = 14
  35.  
  36. Pathway.Name = "Pathway"
  37. Pathway.Parent = BG
  38. Pathway.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  39. Pathway.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  40. Pathway.Position = UDim2.new(0.0753424764, 0, 0.426086903, 0)
  41. Pathway.Size = UDim2.new(0, 120, 0, 46)
  42. Pathway.Font = Enum.Font.SourceSans
  43. Pathway.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  44. Pathway.Text = "Insert Path Here"
  45. Pathway.TextColor3 = Color3.new(1, 1, 1)
  46. Pathway.TextSize = 14
  47.  
  48. Detail.Name = "Detail"
  49. Detail.Parent = BG
  50. Detail.BackgroundColor3 = Color3.new(0.956863, 0, 0)
  51. Detail.BorderColor3 = Color3.new(0.392157, 0, 0)
  52. Detail.Size = UDim2.new(0, 146, 0, 19)
  53.  
  54. Explorer.Name = "Explorer"
  55. Explorer.Parent = Detail
  56. Explorer.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Explorer.BackgroundTransparency = 1
  58. Explorer.Size = UDim2.new(0, 146, 0, 19)
  59. Explorer.Font = Enum.Font.SourceSansBold
  60. Explorer.Text = "Explorer [F9]"
  61. Explorer.TextColor3 = Color3.new(1, 1, 1)
  62. Explorer.TextScaled = true
  63. Explorer.TextSize = 14
  64. Explorer.TextWrapped = true
  65.  
  66. Exit.Name = "Exit"
  67. Exit.Parent = Explorer
  68. Exit.BackgroundColor3 = Color3.new(0.956863, 0, 0)
  69. Exit.BackgroundTransparency = 1
  70. Exit.BorderColor3 = Color3.new(0.392157, 0, 0)
  71. Exit.Size = UDim2.new(0, 20, 0, 19)
  72. Exit.Image = "rbxassetid://1904135741"
  73.  
  74. Splitter.Name = "Splitter"
  75. Splitter.Parent = BG
  76. Splitter.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  77. Splitter.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  78. Splitter.Position = UDim2.new(0.0890411064, 0, 0.14187637, 0)
  79. Splitter.Size = UDim2.new(0, 120, 0, 46)
  80. Splitter.Font = Enum.Font.SourceSans
  81. Splitter.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  82. Splitter.Text = "Split Words Here"
  83. Splitter.TextColor3 = Color3.new(1, 1, 1)
  84. Splitter.TextSize = 14
  85.  
  86. Exit.MouseButton1Down:connect(function()
  87. BadExplorer:Destroy()
  88. end)
  89.  
  90. Execution.MouseButton1Down:connect(function()
  91. local path = Pathway.Text
  92. local children = path:GetChildren()
  93. print(Splitter)
  94. for i = 1, #children do
  95. warn(i, children[i].Name)
  96. end
  97. print(Splitter)
  98. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement