Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- https://www.roblox.com/games/6323419357/Build-to-Survive-the-Creepers-2009-REMAKE
- getgenv().autobuild = false
- getgenv().fogtoggle = false
- local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
- local w = library:CreateWindow("survive the creepers")
- local b = w:CreateFolder("building")
- local a = w:CreateFolder("scripts")
- local c = w:CreateFolder("localplayer")
- b:Toggle("spam blocks (needs platformtool equipped)",function(bool)
- getgenv().autobuild = bool
- print(toggled)
- if bool then
- build()
- end
- end)
- function build()
- spawn(function()
- while getgenv().autobuild == true do
- local person = game.Players.LocalPlayer.Character.Torso.CFrame
- local Event = game.Players.LocalPlayer.Character.PlatformTool.MouseDown
- Event:InvokeServer(person)
- wait(.1)
- end
- end)
- end
- a:Button("infinite yield",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement