Advertisement
Xnaate

+Blocks Every Seconds Gui Script

Jan 12th, 2023
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | Gaming | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/0x"))()
  2. local window = library:Window("+1 Blocks Every Second")
  3. window:Toggle(
  4. "Auto Build",
  5. "Auto Build",
  6. false,
  7. function(t)
  8. _G.AutoFarm = t
  9. while _G.AutoFarm do
  10. wait()
  11. pcall(
  12. function()
  13. game:GetService("ReplicatedStorage").Remotes.PlaceBlock:FireServer()
  14. end
  15. )
  16. end
  17. end
  18. )
  19. window:Toggle(
  20. "Auto Rebirth",
  21. "Auto Rebirth",
  22. false,
  23. function(t)
  24. _G.Auto = t
  25. while _G.Auto do
  26. wait()
  27. pcall(
  28. function()
  29. game:GetService("ReplicatedStorage").Remotes.Rebirth:InvokeServer("RebirthShop")
  30. end
  31. )
  32. end
  33. end
  34. )
  35. window:Label("YT: Tora IsMe")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement