of     1   

UncleTaz
#140665642Thursday, July 17, 2014 9:26 PM GMT

[Sorry I failed the last time D:, I made a mistake lol. Hopefully this one I made awhile ago helps] Prompt; Create a script that names everything in the Workspace and prints them accordingly. (Should be easy) local WorkspaceChildren = Workspace:GetChildren() for i = 1, #WorkspaceChildren do script.Parent.Text = "Loading: " ..WorkspaceChildren[i].Name repeat wait() until WorkspaceChildren[i] wait(1) end script.Parent.Text = "Finalizing load..." wait(5) script.Parent:remove()
filiptibell
#140665808Thursday, July 17, 2014 9:28 PM GMT

local WorkspaceChildren = Workspace:GetChildren() for i = 1, #WorkspaceChildren do script.Parent.Text = "Loading: " ..WorkspaceChildren[i].Name repeat wait() until WorkspaceChildren[i] wait(1) end Why would you do this. If it is a child of workspace, it has already loaded. ~The herp lerped a derp~
UncleTaz
#140665952Thursday, July 17, 2014 9:29 PM GMT

What are you talking about? o_e

    of     1