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.
02 | local WR = script.Parent.Parent:WaitForChild( "Warning" ) |
03 | local NM = script.Parent.Parent |
04 | local NN = game.ReplicatedStorage:WaitForChild( "NewName" ) |
06 | local preview = "My name is" ..NN.Value |
07 | local warning 2 = "This field cannot be blank." |
10 | script.Parent.MouseButton 1 Click:Connect( function () |
12 | script.Parent.Visible = false |
15 | until NN.Value = = NM.Text |
17 | WR.Text = string.sub(preview, 1 ,a) |
23 | script.Parent.Visible = false |
24 | for a = 1 ,#warning 2 do |
25 | WR.Text = string.sub(warning 2 , 1 ,a) |
29 | script.Parent.Visible = true |