USAGE: TYPE /a IN CHAT THEN YOUR MESSAGE
I found a vey neat website, it is wit.ai. This site allows you to easily create and train an AI, and has pretty simple integration with ROBLOX. I will post a small script of how I integrated it to find out if users are asking what time it is.
ALSO: I didn’t put this here just to show off my game. This site is great for dabbling in AI, I haven’t
typed a line of code on the AI site yet, and it still works.
local message = game:GetService("HttpService"):JSONEncode("What time is it?")
local response = game:GetService("HttpService"):RequestAsync({ Url = "https://api.wit.ai/message?v=20200506&q="..message,
Method = "GET",
Headers = { ["Authorization"] = "AUTH TOKEN GOES HERE"},
})
print(response.Body)