-- required hats: https://www.roblox.com/catalog/101057038513804/WORKS-IN-R6-Holdable-Speed-Coil local plr = game.Players.LocalPlayer local tool = Instance.new("Tool") tool.Name = "Speed Coil" tool.Parent = plr.Backpack local equipSound = Instance.new("Sound") equipSound.Parent = tool equipSound.SoundId = "http://www.roblox.com/asset/?id=99173388" local handle = Instance.new("Part") handle.Name = "Handle" handle.Transparency = 1 handle.Size = Vector3.new(1, 1, 1) handle.Parent = tool local defaultWalkSpeed = 16 local boostedWalkSpeed = 30 tool.Equipped:Connect(function() plr.Character:WaitForChild("Humanoid").WalkSpeed = boostedWalkSpeed equipSound:Play() end) tool.Unequipped:Connect(function() plr.Character:WaitForChild("Humanoid").WalkSpeed = defaultWalkSpeed equipSound:Stop() end) game.StarterGui:SetCore("SendNotification", { Title = "Executed!", Text = "Made By w3j", Duration = 5 })