Advertisement
kingmohamed

Natural Disaster Survival

May 2nd, 2023
2,433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.44 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/mohamedyoo/owlhub/main/New%20ui"))()
  2. local Window = Library.CreateLib("Natural Disaster Survival", "Sentinel")
  3.  
  4. local Tab = Window:NewTab("Main")
  5.  
  6. local Section = Tab:NewSection("Main")
  7.  
  8. Section:NewToggle("Auto farm wins", "ToggleInfo", function(bool)
  9. -- Code
  10. _G.autowinfarm = bool;
  11. while wait(.1) do
  12. if _G.autowinfarm == true then
  13. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-236, 180, 360, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  14. end
  15. end
  16. end)
  17.  
  18. Section:NewToggle("Map Voting UI", "ToggleInfo", function(bool)
  19. if bool == false then do game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage.Visible = false
  20. end
  21. end
  22. if bool == true then do game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage.Visible = true
  23. end
  24. end
  25. end)
  26.  
  27. Section:NewToggle("Walk on water", "ToggleInfo", function(bool)
  28. -- Code
  29. if bool == false then do game.Workspace.WaterLevel.CanCollide = false
  30. game.Workspace.WaterLevel.Size = Vector3.new(10, 1, 10)
  31. end
  32. end
  33. if bool == true then do game.Workspace.WaterLevel.CanCollide = true
  34. game.Workspace.WaterLevel.Size = Vector3.new(5000, 1, 5000)
  35. end
  36. end
  37. end)
  38.  
  39. Section:NewToggle("Auto Disable Fall Damage", "ToggleInfo", function(bool)
  40. -- Code
  41. _G.NoFallDamage = bool;
  42. while wait(0.5) do
  43. if _G.NoFallDamage == true then
  44. local FallDamageScript = (game.Players.LocalPlayer.Character ~= nil) and game.Players.LocalPlayer.Character:FindFirstChild("FallDamageScript") or nil
  45. if FallDamageScript then
  46. FallDamageScript:Destroy()
  47. end end end
  48. end)
  49.  
  50. Section:NewButton("Disable Fall Damage", "ToggleInfo", function(bool)
  51. -- Code
  52. local FallDamageScript = (game.Players.LocalPlayer.Character ~= nil) and game.Players.LocalPlayer.Character:FindFirstChild("FallDamageScript") or nil
  53. if FallDamageScript then
  54. FallDamageScript:Destroy()
  55. end
  56. end)
  57.  
  58. Section:NewToggle("Game Island Cliff Collision", "ToggleInfo", function(bool)
  59. -- Code
  60. for i, v in pairs (game.workspace:GetDescendants())do
  61. if v.Name == 'LowerRocks' then
  62. v.CanCollide = bool
  63. end
  64. end
  65. end)
  66.  
  67. Section:NewButton("Print Next Disaster (/console)", "ToggleInfo", function(bool)
  68. -- Code
  69. warn(game.Players.LocalPlayer.Character.SurvivalTag.Value)
  70. end)
  71.  
  72. Section:NewButton("Remove Disaster UI (Blizzard n Sandstorm)", "ToggleInfo", function(bool)
  73. -- Code
  74. game.Players.LocalPlayer.PlayerGui.BlizzardGui:destroy()
  75. game.Players.LocalPlayer.PlayerGui.SandStormGui:destroy()
  76. end)
  77.  
  78.  
  79.  
  80.  
  81. local Other = Tab:NewSection("Player / others")
  82.  
  83. Other:NewSlider("Walkspeed", "SliderInfo", 250, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  84. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  85. end)
  86.  
  87. Other:NewSlider("Jumppower", "SliderInfo", 300, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  88. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  89. end)
  90.  
  91. Other:NewSlider("Gravity", "SliderInfo", 350, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  92. game.Players.LocalPlayer.Character.Humanoid.Gravity = s
  93. end)
  94.  
  95. Other:NewSlider("High Hip", "SliderInfo", 350, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  96. game.Players.LocalPlayer.Character.Humanoid.HipHeight = s
  97. end)
  98.  
  99. Other:NewButton("Click TP Tool", "ButtonInfo", function()
  100. mouse = game.Players.LocalPlayer:GetMouse()
  101. tool = Instance.new("Tool")
  102. tool.RequiresHandle = false
  103. tool.Name = "Click Teleport"
  104. tool.Activated:connect(function()
  105. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  106. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  107. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  108. end)
  109. tool.Parent = game.Players.LocalPlayer.Backpack
  110. end)
  111.  
  112. Other:NewButton("ANti AFK", "SliderInfo", function() -- 500 (MaxValue) | 0 (MinValue)
  113. wait(0.5)
  114. local bb=game:service'VirtualUser'
  115. game:service'Players'.LocalPlayer.Idled:connect(function()
  116. bb:CaptureController()
  117. bb:ClickButton2(Vector2.new())
  118. end)
  119.  
  120. print("Antiafk enabled")
  121. end)
  122.  
  123. local Teleport = Tab:NewSection("Teleports")
  124.  
  125. Teleport:NewButton("Game Island", "ButtonInfo", function()
  126. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-83.5, 38.5, -27.5, -1, 0, 0, 0, 1, 0, 0, 0, -1) --Game Island
  127. end)
  128.  
  129. Teleport:NewButton("Spawn Tower", "ButtonInfo", function()
  130. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-280, 170, 341, 1, 0, 0, 0, 1, 0, 0, 0, 1) -- Spawn Tower
  131. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement