Advertisement
2AreYouMental110

natural disaster survival (WIP)

Jan 3rd, 2022
1,595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.41 KB | None | 0 0
  1. if game.PlaceId == 189707 then
  2.     -- https://www.roblox.com/games/189707/Natural-Disaster-Survival
  3.  
  4.     getgenv().adkp = false
  5.  
  6.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  7.     local Window = Library.CreateLib("natural disaster survival", "Sentinel")
  8.     local a = Window:NewTab("sussy things")
  9.     local b = Window:NewTab("fun")
  10.  
  11.     local a1 = a:NewSection("sussy things")
  12.     local b1 = b:NewSection("gui")
  13.  
  14.  
  15.     a1:NewToggle("delete kill parts", "idk what to put here", function(bool)
  16.         getgenv().adkp = bool
  17.         print(on)
  18.         if bool then
  19.             dkp()
  20.         end
  21.     end)
  22.  
  23.     a1:NewButton("make player's collision off (spam)", "no more annoying flingers", function()
  24.         local p = game.Players:GetChildren()
  25.         local sp = p[math.random(1, #p)]
  26.         if sp.Character.HumanoidRootPart then
  27.             sp.Character.HumanoidRootPart.CanCollide = false
  28.         end
  29.         if sp.Character.LowerTorso then
  30.             sp.Character.LowerTorso.CanCollide = false
  31.         end
  32.         if sp.Character.UpperTorso then
  33.             sp.Character.UpperTorso.CanCollide = false
  34.         end
  35.     end)
  36.  
  37.     a1:NewButton("make your collision off", "no more annoying flingers", function()
  38.         local sp = game.Players.LocalPlayer
  39.         if sp.Character.HumanoidRootPart then
  40.             sp.Character.HumanoidRootPart.CanCollide = false
  41.         end
  42.         if sp.Character.LowerTorso then
  43.             sp.Character.LowerTorso.CanCollide = false
  44.         end
  45.         if sp.Character.UpperTorso then
  46.             sp.Character.UpperTorso.CanCollide = false
  47.         end
  48.     end)
  49.  
  50.  
  51.     b1:NewToggle("show voting gui", "show gui no roux", function(state)
  52.         if state then
  53.             game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage.Visible = true
  54.         else
  55.             game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage.Visible = false
  56.         end
  57.     end)
  58.  
  59.  
  60.     function dkp()
  61.         spawn(function()
  62.             while getgenv().adkp == true do
  63.                 if game:GetService("Workspace").Structure["Prison Panic"].BarbedWire then
  64.                     game:GetService("Workspace").Structure["Prison Panic"].BarbedWire:Destroy()
  65.                     elseif false then
  66.                     print("lol")
  67.                     end
  68.                 end
  69.             end)
  70.         end
  71.     end
  72.  
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement