#Autofill System

1 messages · Page 1 of 1 (latest)

fallen willow
#

I've been endlessly trying to program an autofill system to no avail.

I need an autofill system to suggest words and if you click on the button it suggests, it will be sent to the chat.

(i'm making a spell system but i can script all of that outside of the autofill system)

More descriptive: When you type a suggestion box with a horizontal scrolling frame pops up, and you click whichever one is closest to the one you want.

#

So as you are typing in chat it suggests the closest matching string

#

CONNECTED to text chat service

harsh onyx
#
  • Get when player chats
  • Have every time a player chats, loops through keywords in autofil system
    -use string.find() and use it to bring up similar words that might be common to it
    -use userinput service so when that click the down arrow to select what similar words that might be reffering to
  • Profit
fallen willow