Pickup Script stops working if a Player is killed/resets?
So no output errors. Not sure why this is happening. Basically you click a click detector and it clones to your backpack. It all works fine but if you die, it will no longer work. As in the gun will disappear but will not clone.
ServerScript(In gun):
01 | local cd = script.Parent.ClickDetector |
02 | local rep = game:GetService( "ReplicatedStorage" ) |
03 | local gun = rep.Guns:WaitForChild(script.Parent.Parent.Name) |
05 | cd.MouseClick:connect( function (player) |
06 | rep.Rf.mog:FireClient(player) |
07 | script.Parent.Parent:Destroy() |
10 | cd.MouseHoverEnter:connect( function () |
11 | script.Parent.Transparency = 0.9 |
14 | cd.MouseHoverLeave:connect( function () |
15 | script.Parent.Transparency = 1 |
LocalScript(In PlayerScripts):
01 | local players = game:GetService( "Players" ) |
02 | local rep = game:GetService( "ReplicatedStorage" ) |
04 | local player = players.LocalPlayer |
06 | local back = player:WaitForChild( "Backpack" ) |
07 | local snd = player.PlayerGui.Sounds |
09 | Rems.mog.OnClientEvent:Connect( function () |
10 | local gc = rep.Guns:WaitForChild( "M1Garand" ):Clone() |
Any help? Or something I do no longer available when the player resets?