I put this script (Below) into a part called: SwordGiver
function OnTouched(Part) h = Part.Parent:FindFirstChild("Humanoid") if h~= nil then Sword = game.ServerStorage.LinkedSword:Clone() Sword.Parent = game.Players:FindFirstChild(Part.Parent.name).Backpack
end
end
script.Parent.Touched:connect(OnTouched) ~~~~~~~~~~~~~~~~~
The LinkedSword is in the ServerStorage I Test Solo, and when my player walks across it, nothing happens, help?
local db=false--Here's a debounce script.Parent.Touched:connect(function(Part) if not db then db=true h = Part.Parent:FindFirstChild("Humanoid") if h then Sword = Game.ServerStorage.LinkedSword:Clone() Sword.Parent = game.Players:FindFirstChild(Part.Parent.Name).Backpack --You need to capitalize "Name"... end db=false end end )