Advertisement
dahpiglz

Untitled

May 28th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. local list = ("Workspace: ")
  2. p = game.Players.LocalPlayer
  3. for i,v in pairs(game.Workspace:GetChildren()) do
  4. list = list..(v.Name)
  5. list = list..(", ")
  6. end
  7. print(list)
  8.  
  9. v1 = Instance.new("ScreenGui")
  10. v2 = Instance.new("ScrollingFrame")
  11. v2.Parent = v1
  12. v2.Position = UDim2.new("{0, 0},{0, 0}")
  13. v1.Parent = p.PlayerGui
  14. v3 = Instance.new("TextLabel")
  15. v3.Parent = v2
  16. v3.Position = UDim2.new("{0, 0},{0, 0}")
  17. v3.Text = (list)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement