I’m making a Roblox Game where I need to get a random 5 letters English word, but it cannot be random characters like “asdja”, it must be an English word, for example, “apple”.
I currently already have an API that is from devforum which checks if the word is a valid English word. However, I have no idea how API works so I do not think I can link it to a random alphabets generator to make an actual English word.
(It checks by firing an Remote Event to the Server, however, I want the word to be generated in the server, not the client.)
Any help is appreciated! Thank you!
If you want to do it manually you’d probably need to have 2 tables one containing a bunch of english words, another containing the alphabet. Then you just scramble it until it matches the word that you want. Sounds tedious and it would probably take a while though (for words to generate).