Valid English word check

If you’re familiar with the roblox game Word Bomb, you will know you can only input valid english words to submit them. How could I check if a string is exactly equal to a valid english word?
Sorry if this is a dumb question, I couldn’t really think of how they could’ve done it.

1 Like

It most likely uses the API of a dictionary website to get information on certain words

1 Like

It’s either using a gigantic table of valid words, which is most likely not the case, or HTTP service to a website to find out if a word is valid or not.

2 Likes