of     1   

ArkadiosDeimos
#140707902Friday, July 18, 2014 4:39 AM GMT

So basically a gun gets transported to one of the scripts childs and its supposed to run the function when a child is added but I keep getting this error 22:38:12.795 - Players.Player1.PlayerGui.ArmoryGui.LocalScript:4: attempt to call method 'Clone' (a nil value) How would I clone add the children at once? function test() p=game.Players.LocalPlayer.Backpack:ClearAllChildren() s=script.Slot1:GetChildren() f=s:Clone() f.Parent = game.Players.LocalPlayer.Backpack v=script.Slot2:GetChildren() fsv=v:Clone() fsv.Parent = game.Players.LocalPlayer.Backpack end script.Slot1.ChildAdded:connect(test) script.Slot2.ChildAdded:connect(test)
AnonyAnonymous
#140709097Friday, July 18, 2014 4:53 AM GMT

for i,v in pairs(script.Slot1:GetChildren()) do f = v:Clone() end
ArkadiosDeimos
#140709276Friday, July 18, 2014 4:55 AM GMT

So then I tried this and got; Players.Player1.PlayerGui.ArmoryGui.LocalScript:7: bad argument #1 to '(for generator)' (table expected, got nil) function test() game.Players.LocalPlayer.Backpack:ClearAllChildren() x = script.Slot1:GetChildren() for i,x in pairs do x:Clone().Parent = game.Players.LocalPlayer.Backpack end z = script.Slot2:GetChildren() for i,z in pairs do z:Clone().Parent = game.Players.LocalPlayer.Backpack end end script.Slot1.ChildAdded:connect(test) script.Slot2.ChildAdded:connect(test)
AnonyAnonymous
#140709381Friday, July 18, 2014 4:56 AM GMT

Use something such as, x = script.Slot1:GetChildren() for i,v in pairs(x) do end
ArkadiosDeimos
#140710063Friday, July 18, 2014 5:05 AM GMT

Alright thanks it worked! and I was wondering how would I set it up so if the player dies / respawn's it runs the function too.
AnonyAnonymous
#140710279Friday, July 18, 2014 5:08 AM GMT

This might be able to help you then, http://wiki.roblox.com/index.php?title=Died_%28Event%29 Additionally for more information, http://wiki.roblox.com/index.php?title=Generic_for There.

    of     1