Advertisement
DEVJORDAN22

steal dropped tools

Oct 20th, 2024 (edited)
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | Source Code | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local char = plr.Character
  3.  
  4. while true do
  5.     wait()
  6.     if Enabled == true then
  7.         if char then
  8.             local tool = workspace:FindFirstChild("Grenade 2")
  9.             local tool2 = workspace:FindFirstChild("Throwing Knife")
  10.             local tool3 = workspace:FindFirstChild("Steel Sword")
  11.             local tool4 = workspace:FindFirstChild("Holloween Dagger")
  12.             if tool2 then
  13.                 local OriginalPos = char.HumanoidRootPart.CFrame
  14.                 char.HumanoidRootPart.CFrame = tool2.Handle.CFrame
  15.                 wait()
  16.                 char.HumanoidRootPart.CFrame = OriginalPos
  17.             elseif tool then
  18.                 local OriginalPos = char.HumanoidRootPart.CFrame
  19.                 char.HumanoidRootPart.CFrame = tool.Handle.CFrame
  20.                 wait()
  21.                 char.HumanoidRootPart.CFrame = OriginalPos
  22.             elseif tool3 then
  23.                 local OriginalPos = char.HumanoidRootPart.CFrame
  24.                 char.HumanoidRootPart.CFrame = tool3.Handle.CFrame
  25.                 wait()
  26.                 char.HumanoidRootPart.CFrame = OriginalPos
  27.             elseif tool4 then
  28.                 local OriginalPos = char.HumanoidRootPart.CFrame
  29.                 char.HumanoidRootPart.CFrame = tool4.Handle.CFrame
  30.                 wait()
  31.                 char.HumanoidRootPart.CFrame = OriginalPos
  32.             end
  33.         end
  34.     end
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement