local UserInputService = game:GetService("UserInputService")
local TextBox = script.Parent
local inOrder = 1
TextBox.FocusLost:Connect(function(enterPressed)
--I put a Script here but I won't tell because it's secret
end)
I copied your exact code, and it printed it in the output,
local UserInputService = game:GetService("UserInputService")
local TextBox = script.Parent
local inOrder = 1
TextBox.FocusLost:Connect(function(enterPressed)
--I put a Script here but I won't tell because it's secret
print("Test")
end)
Something must be wrong with the code you had put in, but I cannot help you much further if you do not provide the code needed to assist you in this problem.