Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- // Bad Explorer \\ --
- local BadExplorer = Instance.new("ScreenGui")
- local BG = Instance.new("Frame")
- local Execution = Instance.new("TextButton")
- local Pathway = Instance.new("TextBox")
- local Detail = Instance.new("Frame")
- local Explorer = Instance.new("TextLabel")
- local Exit = Instance.new("ImageButton")
- local Splitter = Instance.new("TextBox")
- BadExplorer.Name = "BadExplorer"
- BadExplorer.Parent = game.Players.LocalPlayer.PlayerGui
- BadExplorer.ResetOnSpawn = false
- BG.Name = "BG"
- BG.Parent = BadExplorer
- BG.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
- BG.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- BG.Position = UDim2.new(0.605978251, 0, 0.444223106, 0)
- BG.Size = UDim2.new(0, 146, 0, 190)
- BG.Active = true
- BG.Draggable = true
- Execution.Name = "Execution"
- Execution.Parent = BG
- Execution.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
- Execution.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Execution.Position = UDim2.new(0.0753424689, 0, 0.704846263, 0)
- Execution.Size = UDim2.new(0, 120, 0, 46)
- Execution.Font = Enum.Font.SourceSans
- Execution.Text = "Find"
- Execution.TextColor3 = Color3.new(1, 1, 1)
- Execution.TextSize = 14
- Pathway.Name = "Pathway"
- Pathway.Parent = BG
- Pathway.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
- Pathway.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Pathway.Position = UDim2.new(0.0753424764, 0, 0.426086903, 0)
- Pathway.Size = UDim2.new(0, 120, 0, 46)
- Pathway.Font = Enum.Font.SourceSans
- Pathway.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
- Pathway.Text = "Insert Path Here"
- Pathway.TextColor3 = Color3.new(1, 1, 1)
- Pathway.TextSize = 14
- Detail.Name = "Detail"
- Detail.Parent = BG
- Detail.BackgroundColor3 = Color3.new(0.956863, 0, 0)
- Detail.BorderColor3 = Color3.new(0.392157, 0, 0)
- Detail.Size = UDim2.new(0, 146, 0, 19)
- Explorer.Name = "Explorer"
- Explorer.Parent = Detail
- Explorer.BackgroundColor3 = Color3.new(1, 1, 1)
- Explorer.BackgroundTransparency = 1
- Explorer.Size = UDim2.new(0, 146, 0, 19)
- Explorer.Font = Enum.Font.SourceSansBold
- Explorer.Text = "Explorer [F9]"
- Explorer.TextColor3 = Color3.new(1, 1, 1)
- Explorer.TextScaled = true
- Explorer.TextSize = 14
- Explorer.TextWrapped = true
- Exit.Name = "Exit"
- Exit.Parent = Explorer
- Exit.BackgroundColor3 = Color3.new(0.956863, 0, 0)
- Exit.BackgroundTransparency = 1
- Exit.BorderColor3 = Color3.new(0.392157, 0, 0)
- Exit.Size = UDim2.new(0, 20, 0, 19)
- Exit.Image = "rbxassetid://1904135741"
- Splitter.Name = "Splitter"
- Splitter.Parent = BG
- Splitter.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
- Splitter.BorderColor3 = Color3.new(0.176471, 0.176471, 0.176471)
- Splitter.Position = UDim2.new(0.0890411064, 0, 0.14187637, 0)
- Splitter.Size = UDim2.new(0, 120, 0, 46)
- Splitter.Font = Enum.Font.SourceSans
- Splitter.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
- Splitter.Text = "Split Words Here"
- Splitter.TextColor3 = Color3.new(1, 1, 1)
- Splitter.TextSize = 14
- Exit.MouseButton1Down:connect(function()
- BadExplorer:Destroy()
- end)
- Execution.MouseButton1Down:connect(function()
- local path = Pathway.Text
- local children = path:GetChildren()
- print(Splitter)
- for i = 1, #children do
- warn(i, children[i].Name)
- end
- print(Splitter)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement