Advertisement
ScripterYowai

Footballrng shsu

Jun 13th, 2024
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. -- Lib
  2.  
  3. local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua"))()
  4.  
  5. -- Gui
  6.  
  7. local GUI = Mercury:Create{
  8. Name = "YowaiHub",
  9. Size = UDim2.fromOffset(600, 400),
  10. Theme = Mercury.Themes.Dark,
  11. Link = "SubToScripter_Yowai"
  12. }
  13.  
  14. -- Local Variables
  15.  
  16. local infvalue = false
  17.  
  18. -- Main Tab
  19. local DupeTab = GUI:Tab{
  20. Name = "Dupes",
  21. Icon = "rbxassetid://8569322835"
  22. }
  23.  
  24. -- Button Dupe
  25. DupeTab:Button{
  26. Name = "Godly Haland",
  27. Description = "Works",
  28. Callback = function()
  29. game:GetService("ReplicatedStorage").NewCardAdding:FireServer("Godly Haaland_5",game:GetService("ReplicatedStorage").Godly["Godly Haaland"])
  30. end
  31. }
  32.  
  33. DupeTab:Button{
  34. Name = "Godly Benzema",
  35. Description = "Works",
  36. Callback = function()
  37. game:GetService("ReplicatedStorage").NewCardAdding:FireServer("Godly Benzema_4",game:GetService("ReplicatedStorage").Godly["Godly Benzema"])
  38. end
  39. }
  40.  
  41. DupeTab:Button{
  42. Name = "Godly Mbappe",
  43. Description = "Works",
  44. Callback = function()
  45.  
  46. game:GetService("ReplicatedStorage").NewCardAdding:FireServer("Godly Mbappe_5",game:GetService("ReplicatedStorage").Godly["Godly Mbappe"])
  47. end
  48. }
  49.  
  50. DupeTab:Button{
  51. Name = "Godly Vandijk",
  52. Description = "Works",
  53. Callback = function()
  54.  
  55. game:GetService("ReplicatedStorage").NewCardAdding:FireServer("Godly van Dijk_3",game:GetService("ReplicatedStorage").Godly["Godly van Dijk"])
  56. end
  57. }
  58.  
  59. DupeTab:Button{
  60. Name = "Prime Ronaldo",
  61. Description = "Works",
  62. Callback = function()
  63. local args = {
  64. [1] = "Prime Ronaldo",
  65. [2] = game:GetService("ReplicatedStorage").Prime:FindFirstChild("Prime Ronaldo")
  66. }
  67.  
  68. game:GetService("ReplicatedStorage").NewCardAdding:FireServer(unpack(args))
  69. end
  70. }
  71.  
  72. DupeTab:Button{
  73. Name = "Aura Prime",
  74. Description = "Works",
  75. Callback = function()
  76. local args = {
  77. [1] = "Prime"
  78. }
  79.  
  80. game:GetService("ReplicatedStorage").EquipAura:FireServer(unpack(args))
  81. end
  82. }
  83. -- Toggel For Inf Value
  84. DupeTab:Toggle{
  85. Name = "Inf Value",
  86. StartingState = false,
  87. Description = "Auto",
  88. Callback = function(state)
  89. infvalue = state
  90. while infvalue do
  91.  
  92. game:GetService("ReplicatedStorage").PlayerValue:FireServer(300000000)
  93. wait()
  94. end
  95. end
  96. }
  97.  
  98. DupeTab:Button{
  99. Name = "Prime Messi",
  100. Description = "Works",
  101. Callback = function()
  102. local args = {
  103. [1] = "Prime Messi",
  104. [2] = game:GetService("ReplicatedStorage").Prime:FindFirstChild("Prime Messi")
  105. }
  106.  
  107. game:GetService("ReplicatedStorage").NewCardAdding:FireServer(unpack(args))
  108. end
  109. }
  110.  
  111. DupeTab:Button{
  112. Name = "Prime Neymar",
  113. Description = "Works",
  114. Callback = function()
  115. local args = {
  116. [1] = "Prime Neymar",
  117. [2] = game:GetService("ReplicatedStorage").Prime:FindFirstChild("Prime Neymar")
  118. }
  119.  
  120. game:GetService("ReplicatedStorage").NewCardAdding:FireServer(unpack(args))
  121. end
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement