How to save an inventoryGUI after a player dies?
Asked by
6 years ago Edited 6 years ago
so I have a survival style inventory system, and I wonder how I could preserve all of the inventory slots in the inventory gui after the player dies in game.
02 | local currentweight = 0 |
04 | local plr = game.Players.LocalPlayer |
06 | local plrgui = plr:WaitForChild( "PlayerGui" ) |
07 | local invGui = plrgui:WaitForChild( "InventoryGUI" ) |
08 | local promptGui = plrgui:WaitForChild( "PromptGUI" ) |
11 | local mouse = plr:GetMouse() |
12 | local remotes = game.ReplicatedStorage.Remotes |
14 | local uis = game:GetService( "UserInputService" ) |
15 | local ts = game:GetService( "TweenService" ) |
16 | local rs = game:GetService( "RunService" ) |
18 | function tween (t,s,d,p,o) |
19 | return ts:Create(o,TweenInfo.new(t,Enum.EasingStyle [ s ] ,Enum.EasingDirection [ d ] ),p) |
22 | local function InputBegin (io,gpe) |
23 | if gpe then return end |
24 | if io.KeyCode = = Enum.KeyCode.F then |
26 | local target = mouse.Target |
27 | local name = target.Name |
28 | local CanContain,weight = remotes.PickupItem:InvokeServer(target,plr.Character) |
30 | if il [ name ] = = nil then |
31 | if inv [ name ] = = nil then |
32 | inv [ name ] = { Amount = 1 ,Weight = weight } |
33 | local slotTemp = invGui.InvHolder.Slot |
34 | local MainInv = invGui.InvHolder.MainInv |
35 | local slot = slotTemp:Clone() |
39 | slot.Amount.Text = inv [ name ] .Amount |
40 | slot.ItemName.Text = name |
42 | inv [ name ] .Amount = inv [ name ] .Amount + 1 |
43 | invGui.InvHolder.MainInv [ name ] .Amount.Text = tostring (inv [ name ] .Amount) |
46 | elseif not CanContain then |
48 | invGui.IFT:TweenPosition(UDim 2. new(. 362 , 0 , 0 , 0 ),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,. 4 , true ) |
50 | invGui.IFT:TweenPosition(UDim 2. new(. 362 , 0 ,- 0.2 , 0 ),Enum.EasingDirection.Out,Enum.EasingStyle.Sine,. 4 , true ) |
52 | elseif CanContain = = "Definitely No" then |
56 | elseif io.KeyCode = = Enum.KeyCode.C then |
57 | OpenClose(invGui.InvHolder) |
58 | elseif io.KeyCode = = Enum.KeyCode.E then |
63 | uis.InputBegan:Connect(InputBegin) |