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

Text box only gives message when it has no Text?

Asked by 5 years ago
Edited 5 years ago

So I'm making this game and the user has to enter a custom name, but whenever I test it and put a name, it always comes up with the response used when there is nothing there.

01--things--
02local WR = script.Parent.Parent:WaitForChild("Warning")
03local NM = script.Parent.Parent
04local NN = game.ReplicatedStorage:WaitForChild("NewName")
05--texts--
06local preview = "My name is"..NN.Value
07local warning2 = "This field cannot be blank."
08--variables--
09--script--
10script.Parent.MouseButton1Click:Connect(function()
11    if NM.Text ~= "" then
12        script.Parent.Visible = false
13        repeat wait()
14            NN.Value = NM.Text
15        until NN.Value == NM.Text
View all 31 lines...

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago
01--things--
02local WR = script.Parent.Parent:WaitForChild("Warning")
03local NM = script.Parent.Parent
04local NN = game.ReplicatedStorage:WaitForChild("NewName")
05 
06local warning2 = "This field cannot be blank."
07--variables--
08local preview
09--script--
10script.Parent.MouseButton1Click:Connect(function()
11    if NM.Text ~= "" then
12        script.Parent.Visible = false
13        repeat wait()
14            NN.Value = NM.Text
15        until NN.Value == NM.Text
View all 32 lines...

you seted nm after setting the preview value, that is, the preview is not changed.

Hope this helps

0
It works, thank you for the help. gamemaster60788 61 — 5y
Ad

Answer this question