Is Anyone Familiar with Original Settings of Linked Sword?

TL;DR: Does anyone know the original lunge duration of the Linked Sword? The Free Model says 0.8 seconds, but the Gear says 1 second. Which one’s right?


Hey everyone!

Me and my friends are working on a small Sword Fighting game for fun, and we want to include the Linked Sword. The problem is, there are so many versions floating around in free models, and we’re not sure which one actually matches the original.

We think there are only two reliable sources:

  1. The Linked Sword Gear: Linked Sword - Roblox
  2. The Free Model uploaded by Roblox: https://create.roblox.com/store/asset/47433/Sword

The main difference seems to be the lunge duration:

  • The Free Model has it at 0.8 seconds.
  • The Gear has it at 1 second.

We’re just trying to make the sword as close to the original as possible, so if you know which one’s right (or have any other info about the original settings), please let us know!

Thanks in advance!

1 Like

I added the official roblox linked sword into my game and checked the script, looks like 1.

function Lunge()
	Damage = DamageValues.LungeDamage
	Sounds.Lunge:Play()
	local Anim = Instance.new("StringValue")
	Anim.Name = "toolanim"
	Anim.Value = "Lunge"
	Anim.Parent = Tool	
	local Force = Instance.new("BodyVelocity")
	Force.velocity = Vector3.new(0, 10, 0) 
	Force.maxForce = Vector3.new(0, 4000, 0)
	Debris:AddItem(Force, 0.5)
	Force.Parent = RootPart
	wait(0.25)
	SwordOut()
	wait(0.25)
	if Force and Force.Parent then
		Force:Destroy()
	end
	wait(0.5)
	SwordUp()
end