The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Coin Collecting Simulator script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Coin Collecting Simulator")
  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 Rebirth = 1
  8. local SuperRebirth = 1
  9. local Egg = "Common Egg"
  10. local EggTable = {}
  11. for i,v in pairs(game:GetService("ReplicatedStorage").Assets.Eggs:GetChildren()) do
  12.     EggTable[i] = v.Name
  13. end
  14.  
  15. b:Toggle("AutoCollectCoins",function(bool)
  16.     shared.toggle = bool
  17.     AutoCollectCoins = bool
  18. end)
  19.  
  20. b:Toggle("AutoSell",function(bool)
  21.     shared.toggle = bool
  22.     AutoSell = bool
  23. end)
  24.  
  25. f:Toggle("Egg",function(bool)
  26.     shared.toggle = bool
  27.     Egg1 = bool
  28. end)
  29.  
  30. f:Dropdown("Select Egg",EggTable,true,function(mob)
  31.     Egg = mob
  32. end)
  33.  
  34. f:Toggle("Rebirth",function(bool)
  35.     shared.toggle = bool
  36.     AutoRebirth = bool
  37. end)
  38.  
  39. f:Box("Rebirth","number",function(value)
  40.     Rebirth = value
  41. end)
  42.  
  43. f:Toggle("SuperRebirth",function(bool)
  44.     shared.toggle = bool
  45.     AutoSuperRebirth = bool
  46. end)
  47.  
  48. f:Box("SuperRebirth","number",function(value)
  49.     SuperRebirth = value
  50. end)
  51.  
  52. e:Toggle("AntiAfk",function(boosl)
  53.     shared.toggle = bool
  54.     AntiAfk = bool
  55. end)
  56. --Credits
  57. u:Button("maxgat5#8395",function()
  58.     setclipboard("maxgat5#8395")
  59. end)
  60.  
  61. u:Button("Discrod Server",function()
  62.     setclipboard("https://discord.gg/K4txdRSVfq")
  63. end)
  64.  
  65. while wait() do
  66.     if AutoCollectCoins == true then
  67.         for i,v in pairs(game:GetService("Workspace").CoinsAreas:GetChildren()) do
  68.             game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("Collect",v.Name)
  69.         end
  70.     end
  71.    
  72.     if AutoSell == true then
  73.         game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("Sell")
  74.     end
  75.    
  76.     if Egg1 == true then
  77.         local args = {
  78.             [1] = "PurchaseEgg",
  79.             [2] = Egg,
  80.         }
  81.         game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer(unpack(args))
  82.     end
  83.    
  84.     if AutoRebirth == true then
  85.         game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("Rebirth","Rebirth"..tonumber(Rebirth))
  86.     end
  87.    
  88.     if AutoSuperRebirth == true then
  89.         game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("SuperRebirth","SuperRebirth"..tonumber(SuperRebirth))
  90.     end
  91.    
  92.     if AntiAfk == true then
  93.         local bb=game:service'VirtualUser'
  94.         bb:CaptureController()
  95.         bb:ClickButton2(Vector2.new())
  96.     end
  97. end