bennytrt2

dogecoin miner tycoon script (NOT TESTED)

Feb 1st, 2022
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Dogecoin Mining Tycoon")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. local GPUsValue = "A"
  8. local ShelvesValue = "1"
  9. local GPUsValue1 = "A"
  10. local ShelvesValue1 = "1"
  11. --Toggle
  12. b:Toggle("AutoSell",function(bool)
  13. shared.toggle = bool
  14. AutoSell = bool
  15. end)
  16.  
  17. f:Toggle("GPUs",function(bool)
  18. shared.toggle = bool
  19. GPUs = bool
  20. end)
  21.  
  22. f:Dropdown("A",{"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"},true,function(Value1)
  23. GPUsValue = Value1
  24. end)
  25.  
  26. f:Toggle("Shelves",function(bool)
  27. shared.toggle = bool
  28. Shelves = bool
  29. end)
  30.  
  31. f:Dropdown("1",{"1","2","3","4"},true,function(Value2)
  32. ShelvesValue = Value2
  33. end)
  34.  
  35. b:Toggle("Place All GPUs",function(bool)
  36. shared.toggle = bool
  37. PlaceGPUs = bool
  38. end)
  39.  
  40. b:Dropdown("A",{"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"},true,function(Value1)
  41. GPUsValue1 = Value1
  42. end)
  43.  
  44. b:Toggle("Place All Shelves",function(bool)
  45. shared.toggle = bool
  46. PlaceShelves = bool
  47. end)
  48.  
  49. b:Dropdown("1",{"1","2","3","4"},true,function(Value)
  50. ShelvesValue1 = Value
  51. end)
  52.  
  53. e:Toggle("AntiAfk",function(bool)
  54. shared.toggle = bool
  55. AntiAfk = bool
  56. end)
  57. --Credits
  58. u:Button("maxgat5#8395",function()
  59. setclipboard("maxgat5#8395")
  60. end)
  61.  
  62. u:Button("Discrod Server",function()
  63. setclipboard("https://discord.gg/K4txdRSVfq")
  64. end)
  65.  
  66. while wait() do
  67. if PlaceGPUs == true then
  68. for i,v in pairs(game:GetService("Workspace")["__Tycoons"][game.Players.LocalPlayer.Name]:GetChildren()) do
  69. for i,v1 in pairs(v:GetChildren()) do
  70. if v1.Name == "Slots" then
  71. for i1,v2 in pairs(v1:GetChildren()) do
  72. if PlaceGPUs == true then
  73. game:GetService("ReplicatedStorage").SpecWork.Shared.Network.Placement:InvokeServer("PlaceGPU",{["ID"] = GPUsValue1 ,["ItemType"] = "GPUs",["Slot"] = v2.Parent[i1]})
  74. end
  75. end
  76. end
  77. end
  78. end
  79. end
  80.  
  81. if PlaceShelves == true then
  82. y = 1
  83. x = 1
  84. function X()
  85. for i=1,15 do
  86. game:GetService("ReplicatedStorage").SpecWork.Shared.Network.Placement:InvokeServer("Place",{["Rotation"] = 90,["ItemType"] = "Shelves",["RootY"] = y,["ID"] = ShelvesValue1,["RootX"] = x})
  87. x = x + 1
  88. end
  89. end
  90. for i=1,15/2 do
  91. if PlaceShelves == true then
  92. X()
  93. x = 1
  94. y = y + 2
  95. end
  96. end
  97. end
  98.  
  99. if AutoSell == true then
  100. game:GetService("ReplicatedStorage").SpecWork.Shared.Network.Exchange:FireServer("Exchange",{["Rate"] = math.huge})
  101. end
  102.  
  103. if GPUs == true then
  104. game:GetService("ReplicatedStorage").SpecWork.Shared.Network.Shop:InvokeServer("Item",{["ID"] = GPUsValue,["Action"] = "Buy",["ItemType"] = "GPUs"})
  105. end
  106.  
  107. if Shelves == true then
  108. game:GetService("ReplicatedStorage").SpecWork.Shared.Network.Shop:InvokeServer("Item",{["ID"] = ShelvesValue,["Action"] = "Buy",["ItemType"] = "Shelves"})
  109. end
  110.  
  111. if AntiAfk == true then
  112. local bb=game:service'VirtualUser'
  113. bb:CaptureController()
  114. bb:ClickButton2(Vector2.new())
  115. end
  116. end
Add Comment
Please, Sign In to add comment