1. LUA: How to detect if a player has " in his name? string.find(user.displayName,""") ???
     
  2. Wulf

    Wulf Community Admin

  3. How to in string.find ? Same?
     
  4. Wulf

    Wulf Community Admin

    Look at the link I gave you, it has plenty of examples on using them. The logic should be the same no matter which one you use.
     
  5. if string.find(user.displayName,"\"") == true then bingo? Should work?
     
  6. Wulf

    Wulf Community Admin

    string.find won't return a bool, string.match will.
     
  7. Will it return a nil if not found?
     
  8. Wulf

    Wulf Community Admin

    True/false I believe.