of     1   

xXBestPieXx
#139274606Saturday, July 05, 2014 2:41 AM GMT

I insert this script into a part and the LinkedSword is in Lighting... Idk what I did really. It just doesn't work. It's supposed to give the player who touched the part a sword. local human = game.Players:FindFirstChild("Character") function onTouched(hit) game.Lighting.LinkedSword.Parent = human.Backpack end script.Parent.Touched:connect(onTouched)
Frostglacier
#139274963Saturday, July 05, 2014 2:45 AM GMT

script.Parent.Touched:connect(function (part) hum = part.Parent:findFirstChild("Humanoid") if hum ~= nil then character = part.Parent player = game.Players:GetPlayerFromCharacter(character) sword = game.Lighting.LinkedSword:clone() sword.Parent = player.Backpack end end)

    of     1