Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

[Error] test is not a valid member of Frame ?

Asked by 10 years ago
1wait()
2screen = script.Parent
3 
4screen.test.name.Value = ""
5screen.test.hat.Value = ""
6screen.test.Class.Value = ""
7screen.test.Price.Value = ""

1 answer

Log in to vote
0
Answered by 10 years ago

Try this:

1wait()
2screen = script.Parent
3test = screen:WaitForChild("test")
4 
5test.name.Value = ""
6test.hat.Value = ""
7test.Class.Value = ""
8test.Price.Value = ""
0
thanks ^-^ Layfonex 0 — 10y
Ad

Answer this question