Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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.

01--variables
02local currentweight = 0
03local inv = {}
04local plr = game.Players.LocalPlayer
05--guis
06local plrgui = plr:WaitForChild("PlayerGui")
07local invGui = plrgui:WaitForChild("InventoryGUI")
08local promptGui = plrgui:WaitForChild("PromptGUI")
09local open = false
10--mousr, char, remotes
11local mouse = plr:GetMouse()
12local remotes = game.ReplicatedStorage.Remotes
13--services
14local uis = game:GetService("UserInputService")
15local ts = game:GetService("TweenService")
View all 63 lines...
0
you could just make it that the slots don't reset. greatneil80 2647 — 6y
0
you could just make it that the slots don't reset. greatneil80 2647 — 6y
0
how would i make it so that the slots dont reset, change the startergui also? And idk of any code in there that resets the gui upon death theking48989987 2147 — 6y
0
set the gui's ResetOnSpawn property to false the8bitdude11 358 — 6y

1 answer

Log in to vote
1
Answered by 6 years ago

set the gui's ResetOnSpawn property to false

Ad

Answer this question