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.
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
01 | function 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 |
10 | end |
11 | function die(player, h) |
12 | if h.Health = = 0 then |
13 | local items = { } |
14 | local backpackItems = player.Backpack:getChildren() |
15 | local charItems = player.Character:getChildren() |