Advertisement
2AreYouMental110

build to survive the creepers script (converted into kavo ui)

Dec 23rd, 2021
2,092
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.46 KB | None | 0 0
  1. if game.PlaceId == 6323419357 then
  2.     -- https://www.roblox.com/games/6323419357/Build-to-Survive-the-Creepers-2009-REMAKE
  3.  
  4.     getgenv().autobuild = false
  5.     getgenv().fogtoggle = false
  6.     getgenv().autohealth = false
  7.  
  8.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  9.     local Window = Library.CreateLib("Build to survive the creepers", "Sentinel")
  10.     local a = Window:NewTab("building")
  11.     local b = Window:NewTab("localplayer")
  12.     local c = Window:NewTab("scripts")
  13.  
  14.     local a1 = a:NewSection("building (needs tools)")
  15.  
  16.  
  17.     a1:NewToggle("auto build", "needs platformtool equipped", function(bool)
  18.         getgenv().autobuild = bool
  19.         print(toggled)
  20.         if bool then
  21.             build()
  22.         end
  23.     end)
  24.  
  25.     local b1 = b:NewSection("localplayer stuff")
  26.  
  27.  
  28.     local c1 = c:NewSection("guis")
  29.  
  30.     c1:NewButton("infinite yield", "kinda helpful", function()
  31.         loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  32.     end)
  33.  
  34.  
  35.     function build()
  36.         spawn(function()
  37.             while getgenv().autobuild == true do
  38.                 local person = game.Players.LocalPlayer.Character.Torso.CFrame
  39.                 local Event = game.Players.LocalPlayer.Character.PlatformTool.MouseDown
  40.                 Event:InvokeServer(person)
  41.                 wait(.1)
  42.             end
  43.         end)
  44.     end
  45.  
  46.  
  47.  
  48. end
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement