Here code
local mouseDownConn = slotGui.Base.MouseButton1Down:Connect(function(x, y)
if BackpackFrame.Visible then
slotGui.Base.Position = UDim2.new(
0, x,
0, y
)
DragConnection = mouse.Move:Connect(function()
local newPos = Vector2.new(mouse.X, mouse.Y)
slotGui.Base.Position = UDim2.new(
0, newPos.X,
0, newPos.Y
)
end)
end
end)
** You are now Level 4! **