sword fighting script roblox pastebin local tool = script.Parent local function onTouch (partOther) local humanOther = partOther.Parent:FindFirstChild ("Humanoid") if not humanOther then return end if humanOther.Parent == tool then return end humanOther:TakeDamage (5) end local function slash() local str = Instance.new ("StringValue") str.Name = "toolanim" sword fighting script roblox pastebin PasteShr sword fighting script roblox pastebin str.Value = "Slash" str.Parent = tool end tool.Activated:Connect (slash) tool.Handle.Touched:Connect (onTouch) --made by GamerM8-- sword fighting script roblox pastebin