Hello!
I want to use PluginMouse.DragEnter for detecting an object while dragging from the explorer with a plugin, then I would detect the position using PluginMouse.X and PluginMouse.Y in a loop until PluginMouse.Button1Up.
Issue
DragEnter will not fire; nothing happens when the event is connected and an object is dragged from the explorer.
Attempts
I’ve tried dragging an object, multiple objects, placing the event is both Script and ModuleScript types, connecting the event continuously, and had others run it with no luck. Additionally, there is very little to no documentation on this event, the only topic partially related to PluginMouse.DragEnter is Plugin:StartDrag and Plugin:DragEntered, which sound the same, but are totally different events.
Info
-DragEnter is the only event that is unique to Plugin:GetMouse() over Player:GetMouse().
-There are no examples of PluginMouse.DragEnter used in any case.
-PluginMouse.DragEnter is not depreciated or reserved for CoreScripts.
local Mouse = plugin:GetMouse()
Mouse.DragEnter:Connect(function(Objects)
print(Objects)
end)
PluginMouse
DragEnter
Plugin:StartDrag topic
https://devforum.roblox.com/t/missing-inputended-after-plugin-startdrag/4475