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

Keeping gear after death?

Asked by 5 years ago

im trying to make a script that makes it so that you keep a gear after you die but i have no clue how to do it, its meant for a egg hunt event in my own game where you collect eggs and have to get all of them to get a badge award, but when you die you have to get the eggs (they are gears) again.

0
To properly keep items, store them within StarterGear whilst cloning to the Backpack. Ziffixture 6913 — 5y

1 answer

Log in to vote
1
Answered by
14dark14 167
5 years ago
Edited 5 years ago

I remember how I struggled to make this script. I will be nice and give you mine so you don't have to go through everything I had to go trough, it works with R6 and R15. Place the script inside ServerScriptService Make it a ServerScript aka Script not LocalScript

01function waitForSpawn(player)
02    for i=1,100 do
03        if player == nil then return false end
04        if player.Character ~= nil and player.Character.Humanoid ~= nil and player.Character.Humanoid.Health ~= 0 then
05            return true
06        end
07        wait(1)
08    end
09    return false
10end
11function die(player, h)
12        if h.Health == 0 then
13        local items = {}
14        local backpackItems = player.Backpack:getChildren()
15        local charItems = player.Character:getChildren()   
View all 51 lines...
0
thanks, man! zachmcfly 11 — 5y
0
Every inch of this is wrong Ziffixture 6913 — 5y
0
14dark14 solution is work, but Feahren solution is better. Block_manvn 395 — 5y
0
@Feahren - can you just accept others work? or do you need to be pretentious. I personally think this script is good. your might be a few lines longer than his script but i personally don't like the "I know it all," type of person. He's a beginner and off to a great start. Geez this platform is so toxic maxpax2009 340 — 5y
Ad

Answer this question