Get tool with GUI and textbox with ID

Hey, ive been wondering how i can get certain Gear with the ID’s when u put them into a textbox, i couldnt find anything useful online so i decided to make a topic
image
does anyone know how i can do this?

You could do something like this:

Give.MouseButton1Click:Connect(function()
local ID = Bindable:InvokeClient()

if not tonumber(ID) then return end

local sucess, instance = pcall(InsertService.LoadAsset, InsertService, tonumber(ID)

if sucess and instance then instance.Parent = Player.Backpack end
end)