Hello, I have been having issues with this script in the Beta version of Studio. Is this working on anyone? I placed a part, and then a surface gui, and then a frame, and then a UIListLayout. I had a script and a local script and none worked! I wanted it to stack up into the gui. while true do wait(0.5) local TextGui = Instance.new("TextLabel") TextGui.Parent = game.Workspace.Part.SurfaceGui.Frame end
1 Like
Maybe it’s because you are using a loop (while true do), this will generate a lot of text labels. Try removing while true do and only put the wait(0.5) into it, and I think it should work.
- Also you can try reposition the TextLabel so it shows up as expected.!
2 Likes