Solution:
03 | local InventorySlots = script.Parent.Parent.Parent:GetChildren() |
05 | for _, slot in pairs (InventorySlots) do |
07 | if slot.ClassName = = "Frame" then |
09 | slot.Detector.MouseEnter:Connect( function () |
11 | SlotToInsert = string.sub(slot.name, 5 , - 1 ) |
I’ve added this piece of code above to connect a function to any inventory slot that changes the current slot ID to the slot ID of the inventory slot when the mouse touches the slot
I’ve created a custom GUI inventory for my game. Now I want to create a drag and drop system for it. I have already set up a server script that can replace the slot values of two specified slots. The only problem is that I do not know how to do the actual drag and drop. Basically I would like to know, how I can create a system that if I drag an Image Button on another ImageButton and drop it returns the 2 SlotIDs of the 2 Images Buttons
This is how the Inventory GUI is set up:
My attempt:
01 | script.Parent.MouseButton 1 Down:Connect( function () |
03 | local Mouse = game.Players.LocalPlayer:GetMouse() |
07 | script.Parent.Parent.Description.Visible = false |
11 | while Dragging = = true do |
13 | script.Parent.Parent.Parent.Parent.Parent.DragAndDropImage.Image = script.Parent.Parent.ItemImage.Image |
17 | local mouseLocation = (UserInputService:GetMouseLocation()) |
19 | script.Parent.Parent.Parent.Parent.Parent.DragAndDropImage.Visible = true |
21 | script.Parent.Parent.Parent.Parent.Parent.DragAndDropImage.Position = UDim 2. new( 0 , mouseLocation.x - 40 , 0 , mouseLocation.y - 70 ) |
23 | script.Parent.Parent.ItemImage.Visible = false |
25 | if (UserInputService:IsMouseButtonPressed ( 0 )) = = false then |
27 | print (UserInputService:GetMouseLocation()) |
31 | script.Parent.Parent.Parent.Parent.Parent.DragAndDropImage.Visible = false |
33 | script.Parent.Parent.ItemImage.Visible = true |
This attemt works perfectly except for returning the slot IDs