Advertisement
hacimiks

Valiant

Apr 9th, 2024 (edited)
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.89 KB | None | 0 0
  1. local library = loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostDuckyy/UI-Libraries/main/Valiant/source.lua'))()
  2.  
  3. local Window = library:CreateWindow("Natural Disaster Survival", "RemiAPE", 10044538000)
  4.  
  5. local Tab = Window:CreateTab("Home")
  6. local Page = Tab:CreateFrame("Main")
  7.  
  8. local Toggle = Page:CreateToggle("Auto Win", "", function(bool)
  9.         _G.autowinfarm = bool;
  10.          while wait(.1) do
  11.              if _G.autowinfarm == true and  game.Players.LocalPlayer.Character and  game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  12.          game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-236, 180, 360, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  13.             end
  14.         end
  15.     end)
  16.  
  17. local Toggle = Page:CreateToggle("Infinite Jump", "", function(bool)
  18.         _G.NoFallDamage = bool;
  19.                             while wait(0.5) do
  20.                                     if _G.NoFallDamage == true then
  21.                             local FallDamageScript = (game.Players.LocalPlayer.Character ~= nil) and game.Players.LocalPlayer.Character:FindFirstChild("FallDamageScript") or nil
  22.                             if FallDamageScript then
  23.                             FallDamageScript:Destroy()
  24.                 end end end
  25.     end)
  26.  
  27. local Toggle = Page:CreateToggle("Walk On Water", "", function(bool)
  28.         if bool == false then do game.Workspace.WaterLevel.CanCollide = false
  29.                              game.Workspace.WaterLevel.Size = Vector3.new(10, 1, 10)
  30.             end
  31.         end
  32.                      if bool == true then do game.Workspace.WaterLevel.CanCollide = true
  33.                              game.Workspace.WaterLevel.Size = Vector3.new(5000, 1, 5000)
  34.             end
  35.         end
  36.     end)
  37.  
  38. local Button = Page:CreateButton("Remove Blizzard Ui", "", function()
  39.         game.Players.LocalPlayer.PlayerGui.BlizzardGui:destroy()
  40.     end)
  41.  
  42. local Button = Page:CreateButton("Remove Sandstorm Ui", "", function()
  43.         game.Players.LocalPlayer.PlayerGui.SandStormGui:destroy()
  44.     end)
  45.  
  46. local Page3 = Tab:CreateFrame("Gamepass")
  47. local Toggle = Page3:CreateToggle("Vote Map", "", function(bool)
  48.         if bool == false then do game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage.Visible = false
  49.             end
  50.         end
  51.                     if bool == true then do game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage.Visible = true
  52.             end
  53.         end
  54.     end)
  55.  
  56. local Page4 = Tab:CreateFrame("Teleport")
  57. local Button = Page4:CreateButton("Island", "", function()
  58.         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
  59.     end)
  60.  
  61. local Button = Page4:CreateButton("Tower", "", function()
  62.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-280, 170, 341, 1, 0, 0, 0, 1, 0, 0, 0, 1) --Spawn Tower
  63.     end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement