Prot_c

Bitcoin Miner Auto Snowflake

Feb 9th, 2022 (edited)
801
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.74 KB | None | 0 0
  1. --Bitcoin Miner hack script GUI
  2.  
  3. --[[My first ever script. https://ko-fi.com/maxcrackers. Donate would be much appreciated if you ever find yourself using this a lot :)
  4. Also if you want a script and the request is simple enough, I will make it for you, for free.
  5. if something is wrong contact me here: https://discord.gg/SGuEwzVa .
  6.  
  7. --[[List of features so far: AutoClaim Star, Auto Snowflake and Auto Crate.]]
  8.  
  9.  
  10. getgenv().Loop = false
  11. getgenv().GetStar = false
  12. getgenv().AutoCrate = false
  13.  
  14. function DoLoop()
  15.     spawn(function()
  16.         while Loop == true do
  17.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Teleports["a4-SolarisShop"].CFrame
  18.             wait(10.6)
  19.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").SnowFlakes.SnowFlake.Part.CFrame
  20.             wait(0.2)
  21.             fireproximityprompt(game:GetService("Workspace").SnowFlakes.SnowFlake.Part.ProximityPrompt)
  22.             wait(0.2)
  23.         end
  24.     end)
  25. end
  26.  
  27. spawn(function()
  28.     while getgenv().GetStar == true do
  29.         game:GetService("ReplicatedStorage").Events.ClaimFreeBoostStar:FireServer()
  30.         print('works')
  31.         wait(10)
  32.     end
  33. end)
  34.  
  35. spawn (function()
  36.     while getgenv().AutoCrate == true do
  37.         game:GetService("ReplicatedStorage").Events.ClmFrCrt:FireServer()
  38.         wait(10)
  39.     end
  40. end)
  41.        
  42.        
  43. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  44.  
  45. local w = library:CreateWindow("Auto") -- Creates the window
  46.  
  47. local b = w:CreateFolder("Snowflake Farm") -- Creates the folder(U will put here your buttons,etc)
  48.  
  49. local c = w:CreateFolder("AutoClaim Star")
  50.  
  51. local d = w:CreateFolder("AutoCrate")
  52.  
  53. b:Toggle("Auto Snowflake Toggle",function(bool)
  54.     getgenv().Loop = bool
  55.     print('Snowflake Farm is', bool)
  56.     if bool then
  57.         DoLoop()
  58.     end
  59. end)
  60.  
  61. c:Toggle("AutoClaim Star Toggle",function(bool)
  62.     getgenv().GetStar = bool
  63.     print('Auto Claim Star is', bool)
  64.     if bool then
  65.         spawn(function()
  66.             while getgenv().GetStar == true do
  67.                 game:GetService("ReplicatedStorage").Events.ClaimFreeBoostStar:FireServer()
  68.                 print('works')
  69.                 wait(1)
  70.             end
  71.         end)
  72.     end
  73. end)
  74.  
  75. d:Toggle("Auto Crate Toggle",function(bool)
  76.     getgenv().AutoCrate = bool
  77.     print('Auto Crate is', bool)
  78.     if bool then
  79.         spawn (function()
  80.             while getgenv().AutoCrate == true do
  81.                 game:GetService("ReplicatedStorage").Events.ClmFrCrt:FireServer()
  82.                 wait(10)
  83.             end
  84.         end)
  85.     end
  86. end)
  87.  
  88.  
  89. b:DestroyGui()
  90.  
  91. c:DestroyGui()
  92.  
  93. d:DestroyGui()
  94.  
  95.  
Add Comment
Please, Sign In to add comment