So, I’m trying to make a game similar to Word Bomb but with categories. However, the textbox will accept “English” but not “english.” So, i was wondering if you can make it so it won’t be caps-sensitive without having to type the lowercase in the categorized table.
(My table that goes on…)

(DOES NOT WORK)
(WORKS)
--Here is the LocalScript I'm handling the player input by:
categoryEvent.OnClientEvent:Connect(function(Category)
local TextboxClone = Textbox:Clone()
TextboxClone.Parent = Frame
Frame.Visible = true
TextboxClone.Visible = true
TextboxClone.FocusLost:Connect(function()
--print("FOCUS LOST")
for i, v in categories do
if i == tostring(Category) then
--print("Category Found")
for name, item in v do
--print(item)
if tostring(item) == TextboxClone.Text then
success = true
print("Success!")
TextboxClone:Destroy()
Frame.Visible = false
task.wait(1)
end
end
end
end
end)
end)

