koreanhackerman

Redwire's Natural Disasters Survival GUI

Nov 30th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.46 KB | None | 0 0
  1. local NaturalDisasterSurvivalGUI = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local Falldamageremove = Instance.new("TextButton")
  4. local prewarn = Instance.new("TextButton")
  5. local Title = Instance.new("TextLabel")
  6. local ChatDisaster = Instance.new("TextButton")
  7. local ripoffFD = Instance.new("TextButton")
  8. local Admin = Instance.new("TextButton")
  9. local lobbytp = Instance.new("TextButton")
  10.  
  11. NaturalDisasterSurvivalGUI.Name = "Natural Disaster Survival GUI"
  12. NaturalDisasterSurvivalGUI.Parent = game.CoreGui
  13. NaturalDisasterSurvivalGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. MainFrame.Name = "MainFrame"
  16. MainFrame.Parent = NaturalDisasterSurvivalGUI
  17. MainFrame.Active = true
  18. MainFrame.BackgroundColor3 = Color3.new(0, 0.886275, 0.694118)
  19. MainFrame.Position = UDim2.new(0.716791153, 0, 0.529520273, 0)
  20. MainFrame.Size = UDim2.new(0, 227, 0, 199)
  21. MainFrame.Draggable = true
  22.  
  23. Falldamageremove.Name = "Falldamageremove"
  24. Falldamageremove.Parent = MainFrame
  25. Falldamageremove.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Falldamageremove.Position = UDim2.new(-0.00132986763, 0, 0.514273465, 0)
  27. Falldamageremove.Size = UDim2.new(0, 110, 0, 49)
  28. Falldamageremove.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  29. Falldamageremove.Font = Enum.Font.Cartoon
  30. Falldamageremove.Text = "Auto Fall Damage Remover"
  31. Falldamageremove.TextColor3 = Color3.new(0.831373, 0.329412, 0.329412)
  32. Falldamageremove.TextScaled = true
  33. Falldamageremove.TextSize = 14
  34. Falldamageremove.TextWrapped = true
  35.  
  36. prewarn.Name = "prewarn"
  37. prewarn.Parent = MainFrame
  38. prewarn.BackgroundColor3 = Color3.new(1, 1, 1)
  39. prewarn.Position = UDim2.new(-0.00133013632, 0, 0.268146187, 0)
  40. prewarn.Size = UDim2.new(0, 110, 0, 49)
  41. prewarn.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  42. prewarn.Font = Enum.Font.Cartoon
  43. prewarn.Text = "Auto Pre-Warn Disaster"
  44. prewarn.TextColor3 = Color3.new(0.831373, 0.329412, 0.329412)
  45. prewarn.TextScaled = true
  46. prewarn.TextSize = 14
  47. prewarn.TextWrapped = true
  48.  
  49. Title.Name = "Title"
  50. Title.Parent = MainFrame
  51. Title.BackgroundColor3 = Color3.new(0.0196078, 0.694118, 0.729412)
  52. Title.Position = UDim2.new(-0.000451982807, 0, -0.000759770977, 0)
  53. Title.Size = UDim2.new(0, 227, 0, 50)
  54. Title.Font = Enum.Font.Highway
  55. Title.Text = "RedWire's Natural Disaster Survival GUI"
  56. Title.TextColor3 = Color3.new(0, 0, 0)
  57. Title.TextScaled = true
  58. Title.TextSize = 16
  59. Title.TextWrapped = true
  60.  
  61. ChatDisaster.Name = "ChatDisaster"
  62. ChatDisaster.Parent = MainFrame
  63. ChatDisaster.BackgroundColor3 = Color3.new(1, 1, 1)
  64. ChatDisaster.Position = UDim2.new(0.518493891, 0, 0.268496186, 0)
  65. ChatDisaster.Size = UDim2.new(0, 110, 0, 49)
  66. ChatDisaster.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  67. ChatDisaster.Font = Enum.Font.Cartoon
  68. ChatDisaster.Text = "Post Disaster In chat"
  69. ChatDisaster.TextColor3 = Color3.new(0.831373, 0.329412, 0.329412)
  70. ChatDisaster.TextScaled = true
  71. ChatDisaster.TextSize = 14
  72. ChatDisaster.TextWrapped = true
  73.  
  74. ripoffFD.Name = "ripoffFD"
  75. ripoffFD.Parent = MainFrame
  76. ripoffFD.BackgroundColor3 = Color3.new(1, 1, 1)
  77. ripoffFD.Position = UDim2.new(0.518493891, 0, 0.514273465, 0)
  78. ripoffFD.Size = UDim2.new(0, 110, 0, 49)
  79. ripoffFD.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  80. ripoffFD.Font = Enum.Font.Cartoon
  81. ripoffFD.Text = "Auto Fall Damage Remover (Applies to NDS replicas)"
  82. ripoffFD.TextColor3 = Color3.new(0.831373, 0.329412, 0.329412)
  83. ripoffFD.TextScaled = true
  84. ripoffFD.TextSize = 14
  85. ripoffFD.TextWrapped = true
  86.  
  87. Admin.Name = "Admin"
  88. Admin.Parent = MainFrame
  89. Admin.BackgroundColor3 = Color3.new(1, 1, 1)
  90. Admin.Position = UDim2.new(-0.00132986763, 0, 0.760504603, 0)
  91. Admin.Size = UDim2.new(0, 110, 0, 49)
  92. Admin.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  93. Admin.Font = Enum.Font.Cartoon
  94. Admin.Text = "Infinite Yield"
  95. Admin.TextColor3 = Color3.new(0.831373, 0.329412, 0.329412)
  96. Admin.TextScaled = true
  97. Admin.TextSize = 14
  98. Admin.TextWrapped = true
  99.  
  100. lobbytp.Name = "lobbytp"
  101. lobbytp.Parent = MainFrame
  102. lobbytp.BackgroundColor3 = Color3.new(1, 1, 1)
  103. lobbytp.Position = UDim2.new(0.51408869, 0, 0.760504603, 0)
  104. lobbytp.Size = UDim2.new(0, 110, 0, 49)
  105. lobbytp.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  106. lobbytp.Font = Enum.Font.Cartoon
  107. lobbytp.Text = "TP to lobby"
  108. lobbytp.TextColor3 = Color3.new(0.831373, 0.329412, 0.329412)
  109. lobbytp.TextScaled = true
  110. lobbytp.TextSize = 14
  111. lobbytp.TextWrapped = true
  112. -- Scripts:
  113. function SCRIPT_AEAW65_FAKESCRIPT() -- Falldamageremove.Falldamageremove
  114.     local script = Instance.new('LocalScript')
  115.     script.Parent = Falldamageremove
  116.     Falldamageremove.MouseButton1Down:connect(function()
  117.     print("Fall damage is no more")
  118.     function nofalldmg()
  119.         local falldmg = game.Players.LocalPlayer.Character:FindFirstChild("FallDamageScript")
  120.         if falldmg then
  121.             falldmg:Destroy()
  122.         else
  123.         repeat
  124.             wait()
  125.         until game.Players.LocalPlayer.Character:FindFirstChild("FallDamageScript")
  126.         nofalldmg()
  127.         end
  128.     end
  129.     while wait() do
  130.         nofalldmg()
  131.     end
  132.     end)
  133.  
  134. end
  135. coroutine.resume(coroutine.create(SCRIPT_AEAW65_FAKESCRIPT))
  136. function SCRIPT_AOZQ79_FAKESCRIPT() -- prewarn.prewarn
  137.     local script = Instance.new('LocalScript')
  138.     script.Parent = prewarn
  139.     prewarn.MouseButton1Down:connect(function()
  140.     local wp = game:GetService("Workspace")
  141.     local plrs = game:GetService("Players")
  142.     local lplr = plrs.LocalPlayer
  143.        
  144.     function findSurvivalTag()
  145.     local idk = lplr.Character:FindFirstChild("SurvivalTag")
  146.         if idk then
  147.             local sjs = Instance.new("Hint", wp)
  148.             sjs.Name = "sjs"
  149.             sjs.Text = idk.Value
  150.             wait(4)
  151.             sjs:Destroy()
  152.             repeat
  153.                 wait()
  154.             until not lplr.Character:FindFirstChild("SurvivalTag")
  155.         else
  156.         repeat
  157.              wait()
  158.          until lplr.Character:FindFirstChild("SurvivalTag")
  159.         findSurvivalTag()
  160.          end
  161.     end
  162.        
  163.     while wait() do
  164.     findSurvivalTag()
  165.     end
  166.     end)
  167.  
  168. end
  169. coroutine.resume(coroutine.create(SCRIPT_AOZQ79_FAKESCRIPT))
  170. function SCRIPT_LFQE87_FAKESCRIPT() -- ChatDisaster.ChatDisaster
  171.     local script = Instance.new('LocalScript')
  172.     script.Parent = ChatDisaster
  173.     ChatDisaster.MouseButton1Down:connect(function()
  174.     game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(game.Players.LocalPlayer.Character.SurvivalTag.Value, "All")
  175.     end)
  176.  
  177. end
  178. coroutine.resume(coroutine.create(SCRIPT_LFQE87_FAKESCRIPT))
  179. function SCRIPT_EQEV82_FAKESCRIPT() -- ripoffFD.ripoffFD
  180.     local script = Instance.new('LocalScript')
  181.     script.Parent = ripoffFD
  182.     ripoffFD.MouseButton1Down:connect(function()
  183.     print("y are u in a natural disaster knockoff anyways lol")
  184.     function nofalldmg()
  185.         local falldmg = game.Players.LocalPlayer.Character:FindFirstChild("CharacterScript")
  186.         if falldmg then
  187.             falldmg:Destroy()
  188.         else
  189.         repeat
  190.             wait()
  191.         until game.Players.LocalPlayer.Character:FindFirstChild("CharacterScript")
  192.         nofalldmg()
  193.         end
  194.     end
  195.     while wait() do
  196.         nofalldmg()
  197.     end
  198.     end)
  199.  
  200. end
  201. coroutine.resume(coroutine.create(SCRIPT_EQEV82_FAKESCRIPT))
  202. function SCRIPT_QSZZ68_FAKESCRIPT() -- Admin.Admin
  203.     local script = Instance.new('LocalScript')
  204.     script.Parent = Admin
  205.     Admin.MouseButton1Down:connect(function()
  206.     loadstring(game:HttpGet(('https://pastebin.com/raw/tzTXmYf2'),true))()
  207.     end)
  208.  
  209. end
  210. coroutine.resume(coroutine.create(SCRIPT_QSZZ68_FAKESCRIPT))
  211. function SCRIPT_HVZQ87_FAKESCRIPT() -- lobbytp.lobbytp
  212.     local script = Instance.new('LocalScript')
  213.     script.Parent = lobbytp
  214.     lobbytp.MouseButton1Down:connect(function()
  215.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-290, 178, 379)
  216.     end)
  217.  
  218. end
  219. coroutine.resume(coroutine.create(SCRIPT_HVZQ87_FAKESCRIPT))
Add Comment
Please, Sign In to add comment