Need help with removing output message

Hello, the lost people,

I am working on the item interaction script. Everything is going well. But I only have 1 question, is it possible to remove this message in the output?image . I only want an answer. So, hope you can help.

Its possible. You just need to set Handle’s CanTouch Property to true

You can either just set the handles CanTouch property to true, which I really recommend doing.

OR

You can just hide the entire developer console and use studios output, so nobody can view it. Use the code below to hide the whole console.

local runService = game:GetService("RunService")
local starterGui = game:GetService("StarterGui")

runService.Heartbeat:Connect(function()
    pcall(function()
        starterGui:SetCore("DevConsoleVisible", false)
    end)
end