Hello! I did some researching and there are barely any topics on UI Drag Detectors and I can not find a function for getting a hover. I tried using a TextButton but that cancels the UIDragDetector. Thanks for your help :]
(found this code online but thats only for normal Drag Detectors)
local drag:UIDragDetector = guiObj.UIDragDetector
drag.MouseHoverEnter:Connect(function()
updateTooltip(itemData.Name, itemData.Description, itemData.Type)
showTooltip()
end)
drag.MouseHoverLeave:Connect(function()
hideTooltip()
end)