Block Tycoon auto obby doer and autofarm

Script Credit :- makesuredudedies#0
Features

Block Tycoon auto obby doer and autofarm

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

local BlekLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/laderite/bleklib/main/library.lua"))() local win = BlekLib:Create({ Name = "MSDD HUB | Block Tycoon", StartupSound = { Toggle = true, SoundID = "rbxassetid://6958727243", -- Win 11 Startup Sound TimePosition = 1 } }) local alltab = win:Tab('All') alltab:Button('End Obbies', function() Player.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Obbies.Easy.RewardPart.CFrame wait(1) Player.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Obbies.Medium.RewardPart.CFrame wait(1) Player.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Obbies.Hard.RewardPart.CFrame wait(1) Player.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Obbies["Extra Hard"].RewardPart.CFrame notif("Notification", "obbies done") end) alltab:Button('Autofarm', function() while task.wait(0.0001) do game:GetService("ReplicatedStorage").Remotes.BuyDropper:InvokeServer() game:GetService("ReplicatedStorage").Remotes.Merge:InvokeServer() game:GetService("ReplicatedStorage").Remotes.Deposit:InvokeServer() game:GetService("ReplicatedStorage").Remotes.ClaimReward:InvokeServer() end end) getgenv().Player = game:GetService("Players").LocalPlayer getgenv().notif = function(title, text) game:GetService("StarterGui"):SetCore("SendNotification",{ Title = title, Text = text, }) end