Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Bitcoin Miner hack script GUI
- --[[My first ever script. https://ko-fi.com/maxcrackers. Donate would be much appreciated if you ever find yourself using this a lot :)
- Also if you want a script and the request is simple enough, I will make it for you, for free.
- if something is wrong contact me here: https://discord.gg/SGuEwzVa .
- --[[List of features so far: AutoClaim Star, Auto Snowflake and Auto Crate.]]
- getgenv().Loop = false
- getgenv().GetStar = false
- getgenv().AutoCrate = false
- function DoLoop()
- spawn(function()
- while Loop == true do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Teleports["a4-SolarisShop"].CFrame
- wait(10.6)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").SnowFlakes.SnowFlake.Part.CFrame
- wait(0.2)
- fireproximityprompt(game:GetService("Workspace").SnowFlakes.SnowFlake.Part.ProximityPrompt)
- wait(0.2)
- end
- end)
- end
- spawn(function()
- while getgenv().GetStar == true do
- game:GetService("ReplicatedStorage").Events.ClaimFreeBoostStar:FireServer()
- print('works')
- wait(10)
- end
- end)
- spawn (function()
- while getgenv().AutoCrate == true do
- game:GetService("ReplicatedStorage").Events.ClmFrCrt:FireServer()
- wait(10)
- end
- end)
- local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
- local w = library:CreateWindow("Auto") -- Creates the window
- local b = w:CreateFolder("Snowflake Farm") -- Creates the folder(U will put here your buttons,etc)
- local c = w:CreateFolder("AutoClaim Star")
- local d = w:CreateFolder("AutoCrate")
- b:Toggle("Auto Snowflake Toggle",function(bool)
- getgenv().Loop = bool
- print('Snowflake Farm is', bool)
- if bool then
- DoLoop()
- end
- end)
- c:Toggle("AutoClaim Star Toggle",function(bool)
- getgenv().GetStar = bool
- print('Auto Claim Star is', bool)
- if bool then
- spawn(function()
- while getgenv().GetStar == true do
- game:GetService("ReplicatedStorage").Events.ClaimFreeBoostStar:FireServer()
- print('works')
- wait(1)
- end
- end)
- end
- end)
- d:Toggle("Auto Crate Toggle",function(bool)
- getgenv().AutoCrate = bool
- print('Auto Crate is', bool)
- if bool then
- spawn (function()
- while getgenv().AutoCrate == true do
- game:GetService("ReplicatedStorage").Events.ClmFrCrt:FireServer()
- wait(10)
- end
- end)
- end
- end)
- b:DestroyGui()
- c:DestroyGui()
- d:DestroyGui()
Add Comment
Please, Sign In to add comment