Advertisement
JayGamerz

Untitled

Jun 25th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. me = game.Players.Kingiixx
  2. name = "noob's Explorer"
  3.  
  4. border = Color3.new(0.15,0.2,0.05)
  5. mainback = Color3.new(0.03,0.04,0.06)
  6. back = Color3.new(0.04,0.08,0.12)
  7. text = Color3.new(0.5,0.4,0.8)
  8.  
  9. screen = nil
  10. frame = nil
  11. its = nil
  12. listatm = {}
  13.  
  14. function makegui(l)
  15. for _,v in pairs(me.PlayerGui:children()) do if v.Name == name then v:remove() end end
  16. local sc = Instance.new("ScreenGui",me.PlayerGui)
  17. sc.Name = name
  18. screen = sc
  19. local fra = Instance.new("Frame",sc)
  20. fra.Size = UDim2.new(0.22,0,0.4)
  21. fra.Position = UDim2.new(0,0,0.4,0)
  22. fra.BackgroundColor3 = mainback
  23. fra.BorderColor3 = border
  24. frame = fra
  25. local items = Instance.new("Frame",fra)
  26. items.Size = UDim2.new(0.74,0,0.8)
  27. items.Position = UDim2.new(0,0,0.07,0)
  28. items.BackgroundColor3 = Color3.new(0,0,0)
  29. items.BorderColor3 = border
  30. its = items
  31. local down = Instance.new("TextButton",items)
  32. down.Size = UDim2.new(0.95,0,0.05,0)
  33. down.Position = UDim2.new(0,0,1,0)
  34. down.BackgroundColor3 = Color3.new(0,0,0)
  35. down.BorderColor3 = border
  36. down.TextColor3 = Color3.new(1,1,1)
  37. down.FontSize = "Size14"
  38. down.Text = "^"
  39. down.MouseButton1Down:connect(function()
  40. end)
  41. end
  42.  
  43. function gp(o)
  44. local p = {}
  45. table.insert(p,"className")
  46. table.insert(p,"Parent")
  47. table.insert(p,"Name")
  48. if o:IsA("BasePart") then
  49. table.insert(p,"Size")
  50. table.insert(p,"Position")
  51. table.insert(p,"BrickColor")
  52. table.insert(p,"Transparency")
  53. table.insert(p,"Reflectance")
  54. elseif o:IsA("Fire") then
  55. table.insert(p,"Size")
  56. table.insert(p,"Heat")
  57. table.insert(p,"Color")
  58. table.insert(p,"SecondaryColor")
  59. elseif o:IsA("Smoke") then
  60. table.insert(p,"RiseVelocity")
  61. table.insert(p,"Size")
  62. table.insert(p,"Color")
  63. table.insert(p,"Opacity")
  64. elseif o:IsA("IntValue") or o:IsA("ObjectValue") or o:IsA("NumberValue") or o:IsA("BrickColorValue") or o:IsA("Color3Value") or o:IsA("Vector3Value") then
  65. table.insert(p,"Value")
  66. end
  67. end
  68.  
  69. function open(w)
  70. local list = w:children()
  71. local y = 0
  72. for i,v in pairs(list) do
  73. local txt = Instance.new("TextButton")
  74. txt.Size = UDim2.new(1,0,0.07,0)
  75. txt.Position = UDim2.new(0,0,y,0)
  76. txt.BackgroundColor3 = mainback
  77. txt.BorderColor3 = border
  78. txt.TextColor3 = text
  79. txt.TextXAlignment = "Left"
  80. txt.Text = i..") "..v.Name
  81. txt.MouseButton1Click:connect(function()
  82. open(v)
  83. end)
  84. txt.Parent = its
  85. y = y + txt.Size.Y.Scale
  86. if y >= 1 then break end
  87. end
  88. end
  89.  
  90. makegui()
  91. wait(0.2)
  92. open(workspace)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement