AchieveStuffs

d

Feb 17th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.77 KB | None | 0 0
  1. local CloneTools = Instance.new("ScreenGui")
  2. local Drag = Instance.new("TextButton")
  3. local Background = Instance.new("ImageLabel")
  4. local Clone = Instance.new("TextButton")
  5. local Input = Instance.new("TextBox")
  6.  
  7. CloneTools.Name = "CloneTools"
  8. CloneTools.Parent = game.CoreGui
  9.  
  10. Drag.Name = "Drag"
  11. Drag.Parent = CloneTools
  12. Drag.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  13. Drag.BackgroundTransparency = 0.9990000128746
  14. Drag.BorderColor3 = Color3.new(1, 1, 1)
  15. Drag.Position = UDim2.new(0.788501024, 0, 0.37571159, 0)
  16. Drag.Size = UDim2.new(0, 190, 0, 190)
  17. Drag.Font = Enum.Font.ArialBold
  18. Drag.Text = ""
  19. Drag.TextColor3 = Color3.new(1, 1, 1)
  20. Drag.TextSize = 14
  21. Drag.TextWrapped = true
  22. Drag.Draggable = true
  23.  
  24. Background.Name = "Background"
  25. Background.Parent = Drag
  26. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Background.Position = UDim2.new(0.00235599279, 0, -0.0012384057, 0)
  28. Background.Size = UDim2.new(0, 190, 0, 190)
  29. Background.ZIndex = 0
  30. Background.Image = "rbxassetid://0&hash=12ed3f0fdc0764ab01645b356df12dc3"
  31.  
  32. Clone.Name = "CloneTools"
  33. Clone.Parent = Background
  34. Clone.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  35. Clone.BackgroundTransparency = 0.80000001192093
  36. Clone.BorderColor3 = Color3.new(1, 1, 1)
  37. Clone.Position = UDim2.new(0.042105265, 0, 0.66842109, 0)
  38. Clone.Size = UDim2.new(0, 174, 0, 37)
  39. Clone.ZIndex = 2
  40. Clone.Font = Enum.Font.ArialBold
  41. Clone.Text = "Clone Tools"
  42. Clone.TextColor3 = Color3.new(1, 1, 1)
  43. Clone.TextSize = 14
  44. Clone.TextStrokeTransparency = 0
  45.  
  46. Input.Name = "Input"
  47. Input.Parent = Background
  48. Input.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  49. Input.BackgroundTransparency = 0.60000002384186
  50. Input.BorderColor3 = Color3.new(1, 1, 1)
  51. Input.Position = UDim2.new(0.0421053171, 0, 0.0789474025, 0)
  52. Input.Size = UDim2.new(0, 174, 0, 37)
  53. Input.ZIndex = 2
  54. Input.Font = Enum.Font.ArialBold
  55. Input.Text = "Amount of times to clone"
  56. Input.TextColor3 = Color3.new(1, 1, 1)
  57. Input.TextScaled = true
  58. Input.TextSize = 14
  59. Input.TextWrapped = true
  60.  
  61.  
  62. Clone.MouseButton1Click:connect(function()
  63.     local multiplier = game.CoreGui.CloneTools.Drag.Background.Input.Text
  64.  
  65.  
  66. for i = 1, multiplier do
  67. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  68. if (v:IsA("Tool")) then
  69. v.Parent = game.Players.LocalPlayer
  70. end
  71. end
  72. wait(0.1)
  73. game.Players.LocalPlayer.Character.Head:Destroy()
  74. wait(7)
  75. end
  76. wait(0.5)
  77. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  78. if (v:IsA("Tool")) and v.Name ~= "Knife" and v.Name ~= "Punch" and v.Name ~= "Pipe" and v.Name ~= "BoomBox_Old" and v.Name ~= "Boombox" then
  79. v.Parent = game.Players.LocalPlayer.Backpack
  80. end
  81. end
  82. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  83. if (v:IsA("Tool")) then
  84. v.CanBeDropped = true
  85. end
  86. end
  87.  
  88. end)
Add Comment
Please, Sign In to add comment