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

Pickup Script stops working if a Player is killed/resets?

Asked by 7 years ago

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):

01local cd = script.Parent.ClickDetector
02local rep = game:GetService("ReplicatedStorage")
03local gun = rep.Guns:WaitForChild(script.Parent.Parent.Name)
04 
05cd.MouseClick:connect(function(player)
06    rep.Rf.mog:FireClient(player)
07    script.Parent.Parent:Destroy()
08end)
09 
10cd.MouseHoverEnter:connect(function()
11    script.Parent.Transparency = 0.9
12end)
13 
14cd.MouseHoverLeave:connect(function()
15    script.Parent.Transparency = 1
16end)

LocalScript(In PlayerScripts):

01local players = game:GetService("Players")
02local rep = game:GetService("ReplicatedStorage")
03 
04local player = players.LocalPlayer
05local Rems = rep.Rf
06local back = player:WaitForChild("Backpack")
07local snd = player.PlayerGui.Sounds
08 
09Rems.mog.OnClientEvent:Connect(function()
10    local gc = rep.Guns:WaitForChild("M1Garand"):Clone()
11    gc.Parent = back
12end)

Any help? Or something I do no longer available when the player resets?

0
Try putting lines 6-7 in the localscript into the OnClientEvent function. User#20279 0 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

Did you cloned the gun or moved the gun to another parent?

Ad

Answer this question