Inventory organizer isn't working, linked script. What can I do tho fix or remake to work?
At the moment I have a Gui that has 25 slots for items (ImageButtons). There is a script inside the items you pick up that changes the next slot available out of the 25 slots. The problem Im having is when you drop an item it wont fill in the spaces... For example, lets say I pick of 5 different items, that would mean the the first 5 slots are filled. Then lest say I drop the 3rd item which then the script is supposed to move the 4th and 5th item to the 3rd and 4th slot but its not doing so. I was wondering if someone could take a look and give me some advice on what to do hints why I am here.
script inside the items>>>
01 | script.Parent.ClickDetector.MouseClick:connect( function (Player) |
02 | local items = Player.PlayerGui.InventoryGui.Frame.Inventory.Inventory |
04 | local itm = items:FindFirstChild( 'Item' .. tostring (i)) |
05 | if itm.ItemNumber.Value = = 0 then |
06 | itm.ItemNumber.Value = script.Parent.ItemId.Value |
07 | itm.Image = script.Parent.PicId.Value |
LINKED!!! Script inside ImageButtons>>>
02 | local Player = game.Players.LocalPlayer |
03 | local Gui = script.Parent |
04 | local Observing = script.Observer.Value |
05 | local Item = script.Parent.ItemNumber |
06 | local Pic = script.Parent.Image |
07 | script.Observer.Value.ItemNumber.Changed:connect( function () |
08 | if script.Observer.Value.ItemNumber.Value = = 0 then |
10 | Observing.ItemNumber.Value = Item.Value |