of     1   

RoyalBobby202
#215598127Sunday, April 30, 2017 12:06 AM GMT

When I try to compare the text of a TextBox (keep in mind, a number is entered in the box) to a NumberValue's value, it returns this error. Help? example code: script.Parent.Price.Value == script.Parent.PriceBox.Text
LaeMVP
#215598340Sunday, April 30, 2017 12:08 AM GMT

if "a" == 3 doesn't sound right. You could to if tonumber(script.Parent.Price.Value) == script.Parent.PriceBox.Text then

    of     1