1 | wait() |
2 | screen = script.Parent |
3 |
4 | screen.test.name.Value = "" |
5 | screen.test.hat.Value = "" |
6 | screen.test.Class.Value = "" |
7 | screen.test.Price.Value = "" |
Try this:
1 | wait() |
2 | screen = script.Parent |
3 | test = screen:WaitForChild( "test" ) |
4 |
5 | test.name.Value = "" |
6 | test.hat.Value = "" |
7 | test.Class.Value = "" |
8 | test.Price.Value = "" |