Okay, so I have this lovely GUI I'm working on, everything works wonders, except this one issue. I want to limit what a player can enter in the
GuiTextEditCtrl.
This is the only thing I've been able to get working..
PHP Code:
if (! (UserPrice.text == "Offer")) {
return;
}
I only want the following text order to be allowed, other than offer:
PHP Code:
this.format = "$" @ amount @ "k";
How would I go about do something like this?