1. local TweenService = game:GetService("TweenService")
  2. while true do
  3. task.wait()
  4. for _, tool in pairs(workspace:GetDescendants()) do
  5. if tool:IsA("Tool") then
  6. local success, result = pcall(function()
  7. local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Linear)
  8. local tween = TweenService:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, tweenInfo, {CFrame = tool.Handle.CFrame})
  9. tween:Play()
  10. end)
  11. if not success then
  12. warn(result)
  13. end
  14. wait(1)
  15. end
  16. end
  17. end