So I have a ScreenGui and a ton of textbuttons inside it, so to economize time I made a for loop to make all the textbuttons not visible, but it doesn't set the Visible property to false and also the output doesn't give me any errors. My script:
1 | gui = script.Parent |
2 | gui.Close.MouseButton 1 Down:Connect( function () |
3 | for i,v in pairs (gui:GetChildren()) do |
4 | v.Visible = false |
5 | end |
6 | end ) |
1 | gui = script.Parent |
2 | gui.Close.MouseButton 1 Down:Connect( function () |
3 | for i,v in pairs (gui:GetChildren()) do |
4 | if v:IsA( "TextButton" ) then |
5 | v.Visible = false |
6 | end |
7 | end |
8 | end ) |