Advertisement
2AreYouMental110

build to survive the creepers script (WIP)

Oct 21st, 2021
2,699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.08 KB | None | 0 0
  1. -- https://www.roblox.com/games/6323419357/Build-to-Survive-the-Creepers-2009-REMAKE
  2.  
  3.  
  4.  
  5. getgenv().autobuild = false
  6. getgenv().fogtoggle = false
  7.  
  8. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  9. local w = library:CreateWindow("survive the creepers")
  10. local b = w:CreateFolder("building")
  11. local a = w:CreateFolder("scripts")
  12. local c = w:CreateFolder("localplayer")
  13.  
  14.  
  15. b:Toggle("spam blocks (needs platformtool equipped)",function(bool)
  16.     getgenv().autobuild = bool
  17.     print(toggled)
  18.     if bool then
  19.         build()
  20.     end
  21. end)
  22.  
  23. function build()
  24.     spawn(function()
  25.         while getgenv().autobuild == true do
  26.             local person = game.Players.LocalPlayer.Character.Torso.CFrame
  27.             local Event = game.Players.LocalPlayer.Character.PlatformTool.MouseDown
  28.             Event:InvokeServer(person)
  29.             wait(.1)
  30.         end
  31.     end)
  32. end
  33.  
  34. a:Button("infinite yield",function()
  35.     loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  36. end)
  37.  
  38.  
  39.  
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement