script.Parent.Submit.Button.MouseButton1Click:connect(function()
if tonumber(script.Parent.cursorValue.Text) ~= nil then
print(script.Parent.cursorValue.Text)
currentCursor = 'rbxassetid://'..script.Parent.cursorValue.Text
print('yo '..currentCursor)
localMouse.Icon = currentCursor
else
unselectall()
print('No integer found')
end
end)
Any idea what could be causing this?