Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. local DupeAmount = 1 -- how many times you want it to clone
  2. local ToolName = "Phoenix Feather" -- which item you want to dupe
  3. -- MADE BY dong#5740 ARCHMAGE UNBAN MY SHIT AND GIVE ME MOD
  4. local Players = game:GetService("Players")
  5. local Player = game.Players.LocalPlayer
  6.  
  7. pcall(function ()
  8.  
  9. for i = 1, DupeAmount do
  10. input = Player.Character.CharacterHandler.Input
  11. Player.Character:BreakJoints()
  12. wait(Players.RespawnTime)
  13.  
  14. for _,v in pairs(Player.Backpack:GetChildren()) do
  15. if (v.Name == ToolName) then
  16. input.Disabled = true
  17. v.Parent = Player
  18. end
  19. end
  20. wait(1)
  21.  
  22. for _,v in pairs(Player:GetChildren()) do
  23. if (v.Name == ToolName) then
  24. v.Parent = Player.Backpack
  25. game.ReplicatedStorage.Requests["0B9BCC38-2C1B-4774-8679-A8C37BC6CB6D"]:InvokeServer(v)
  26. end
  27. end
  28. wait(2)
  29. end
  30. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement