Advertisement
GustavoDestroyer

FLOOD ESCAPE GUI v2.2.4

Dec 17th, 2019
1,894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 13.39 KB | None | 0 0
  1. script.Name = "FloodEscapeSCRIPT"
  2.  
  3. local EntradaFacil = Instance.new("Part")
  4. local EntradaMedio = Instance.new("Part")
  5. local EntradaDificil = Instance.new("Part")
  6. local FloodEscapeGUI = Instance.new("ScreenGui")
  7. local Background = Instance.new("Frame")
  8. local Escapar1 = Instance.new("TextButton")
  9. local Titulo = Instance.new("TextLabel")
  10. local Info1 = Instance.new("TextLabel")
  11. local Escapar2 = Instance.new("TextButton")
  12. local Escapar3 = Instance.new("TextButton")
  13. local Info2 = Instance.new("TextLabel")
  14. local Info3 = Instance.new("TextLabel")
  15. local Creditos = Instance.new("TextLabel")
  16. local Cor1 = Instance.new("Frame")
  17. local Cor2 = Instance.new("Frame")
  18. local Cor3 = Instance.new("Frame")
  19. local Fechar = Instance.new("ImageButton")
  20. local ABRIR = Instance.new("TextButton")
  21. local SecondaryOptions = Instance.new("Frame")
  22. local TPButton = Instance.new("TextButton")
  23. local PlayerNBox = Instance.new("TextBox")
  24. local Automatico = Instance.new("TextButton")
  25. local HelpButton = Instance.new("ImageButton")
  26. local TextLabel = Instance.new("TextLabel")
  27. local AutomaticoAjuda = Instance.new("Frame")
  28. local TextLabel_2 = Instance.new("TextLabel")
  29. local TextLabel_3 = Instance.new("TextLabel")
  30. local ImageButton = Instance.new("ImageButton")
  31.  
  32. AutoFarm = false
  33.  
  34. FloodEscapeGUI.Name = "FloodEscapeGUI"
  35. FloodEscapeGUI.Parent = game.CoreGui
  36. FloodEscapeGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  37.  
  38. SecondaryOptions.Name = "SecondaryOptions"
  39. SecondaryOptions.Parent = FloodEscapeGUI
  40. SecondaryOptions.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.054902)
  41. SecondaryOptions.Position = UDim2.new(0, 510, 0, 0)
  42. SecondaryOptions.Size = UDim2.new(0, 250, 0, 110)
  43. SecondaryOptions.Visible = false
  44.  
  45. PlayerNBox.Name = "PlayerNBox"
  46. PlayerNBox.Parent = SecondaryOptions
  47. PlayerNBox.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  48. PlayerNBox.Position = UDim2.new(0, 0, -0.00094050169, 0)
  49. PlayerNBox.Size = UDim2.new(0, 200, 0, 50)
  50. PlayerNBox.Font = Enum.Font.SourceSans
  51. PlayerNBox.PlaceholderText = "NOME DO JOGADOR"
  52. PlayerNBox.Text = ""
  53. PlayerNBox.TextColor3 = Color3.new(0, 0, 0)
  54. PlayerNBox.TextScaled = true
  55. PlayerNBox.TextSize = 15
  56. PlayerNBox.TextWrapped = true
  57.  
  58. TPButton.Name = "TPButton"
  59. TPButton.Parent = SecondaryOptions
  60. TPButton.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  61. TPButton.Position = UDim2.new(0.797999978, 0, -0.00186151266, 0)
  62. TPButton.Size = UDim2.new(0, 50, 0, 50)
  63. TPButton.Font = Enum.Font.Cartoon
  64. TPButton.Text = "TP"
  65. TPButton.TextColor3 = Color3.new(0, 0, 0)
  66. TPButton.TextSize = 25
  67. TPButton.TextWrapped = true
  68. TPButton.MouseButton1Click:Connect(function()
  69.     if game.Players:FindFirstChild(PlayerNBox.Text) then
  70.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players:FindFirstChild(PlayerNBox.Text).Character.HumanoidRootPart.CFrame
  71.     end
  72. end)
  73.  
  74. Automatico.Name = "Automatico"
  75. Automatico.Parent = SecondaryOptions
  76. Automatico.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  77. Automatico.Position = UDim2.new(0, 0, 0.540884614, 0)
  78. Automatico.Size = UDim2.new(0, 200, 0, 50)
  79. Automatico.Font = Enum.Font.SourceSans
  80. Automatico.Text = "AUTOMATICO [OFF]"
  81. Automatico.TextColor3 = Color3.new(0, 0, 0)
  82. Automatico.TextScaled = true
  83. Automatico.TextSize = 14
  84. Automatico.TextWrapped = true
  85. Automatico.MouseButton1Click:Connect(function()
  86.     if AutoFarm == false then
  87.         AutoFarm = true
  88.         Automatico.Text = "AUTOMATICO [ON]"
  89.     else
  90.         AutoFarm = false
  91.         Automatico.Text = "AUTOMATICO [OFF]"
  92.     end
  93. end)
  94.  
  95. HelpButton.Name = "HelpButton"
  96. HelpButton.Parent = SecondaryOptions
  97. HelpButton.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  98. HelpButton.Position = UDim2.new(0.800000012, 0, 0.534502149, 0)
  99. HelpButton.Size = UDim2.new(0, 50, 0, 50)
  100. HelpButton.Image = "rbxassetid://54479720"
  101. HelpButton.MouseButton1Click:Connect(function()
  102.     if AutomaticoAjuda.Visible == false then
  103.         AutomaticoAjuda.Visible = true
  104.     else
  105.         AutomaticoAjuda.Visible = false
  106.     end
  107. end)
  108.  
  109. TextLabel.Parent = FloodEscapeGUI
  110. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  111. TextLabel.BackgroundTransparency = 1
  112. TextLabel.Position = UDim2.new(0, 0, 1, -50)
  113. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  114. TextLabel.Font = Enum.Font.SourceSans
  115. TextLabel.Text = "FLOOD ESCAPE GUI v2.2.4"
  116. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  117. TextLabel.TextSize = 20
  118. TextLabel.TextWrapped = true
  119.  
  120. AutomaticoAjuda.Name = "AutomaticoAjuda"
  121. AutomaticoAjuda.Parent = FloodEscapeGUI
  122. AutomaticoAjuda.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  123. AutomaticoAjuda.Position = UDim2.new(0.5, -250, 0.5, -125)
  124. AutomaticoAjuda.Size = UDim2.new(0, 500, 0, 250)
  125. AutomaticoAjuda.Visible = false
  126.  
  127. TextLabel_2.Parent = AutomaticoAjuda
  128. TextLabel_2.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  129. TextLabel_2.BorderSizePixel = 0
  130. TextLabel_2.Size = UDim2.new(0, 450, 0, 50)
  131. TextLabel_2.Font = Enum.Font.SourceSansSemibold
  132. TextLabel_2.Text = "COM O AUTOMATICO LIGADO ENTRE EM QUALQUER MODO E PRONTO ELE FICARÁ AUTOMÁTICO."
  133. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  134. TextLabel_2.TextScaled = true
  135. TextLabel_2.TextSize = 14
  136. TextLabel_2.TextWrapped = true
  137.  
  138. TextLabel_3.Parent = AutomaticoAjuda
  139. TextLabel_3.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  140. TextLabel_3.Position = UDim2.new(0, 0, 0.800000012, 0)
  141. TextLabel_3.Size = UDim2.new(0, 500, 0, 50)
  142. TextLabel_3.Font = Enum.Font.SourceSansBold
  143. TextLabel_3.Text = "FEITO POR: Gustavo10Destroyer"
  144. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  145. TextLabel_3.TextScaled = true
  146. TextLabel_3.TextSize = 14
  147. TextLabel_3.TextWrapped = true
  148.  
  149. ImageButton.Parent = AutomaticoAjuda
  150. ImageButton.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  151. ImageButton.BorderSizePixel = 0
  152. ImageButton.Position = UDim2.new(1, -50, 0, 0)
  153. ImageButton.Size = UDim2.new(0, 50, 0, 50)
  154. ImageButton.Image = "rbxassetid://150902481"
  155. ImageButton.MouseButton1Click:Connect(function()
  156.     AutomaticoAjuda.Visible = false
  157. end)
  158.  
  159. Background.Name = "Background"
  160. Background.Parent = FloodEscapeGUI
  161. Background.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  162. Background.Position = UDim2.new(-7.4505806e-09, 0, 1.49011612e-08, 0)
  163. Background.Size = UDim2.new(0, 500, 0, 295)
  164. Background.Visible = false
  165.  
  166. Escapar1.Name = "Escapar1"
  167. Escapar1.Parent = Background
  168. Escapar1.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  169. Escapar1.Position = UDim2.new(0.119999997, 0, 0.202711821, 0)
  170. Escapar1.Size = UDim2.new(0, 150, 0, 49)
  171. Escapar1.Font = Enum.Font.Cartoon
  172. Escapar1.Text = "ESCAPAR"
  173. Escapar1.TextColor3 = Color3.new(0, 0, 0)
  174. Escapar1.TextScaled = true
  175. Escapar1.TextSize = 14
  176. Escapar1.TextWrapped = true
  177. Escapar1.MouseButton1Click:Connect(function()
  178.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-234, 159, 61)
  179. end)
  180.  
  181. Titulo.Name = "Titulo"
  182. Titulo.Parent = Background
  183. Titulo.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  184. Titulo.BorderSizePixel = 0
  185. Titulo.Size = UDim2.new(0, 450, 0, 50)
  186. Titulo.Font = Enum.Font.SourceSansBold
  187. Titulo.Text = "FLOOD ESCAPE GUI"
  188. Titulo.TextColor3 = Color3.new(0, 0, 0)
  189. Titulo.TextScaled = true
  190. Titulo.TextSize = 14
  191. Titulo.TextWrapped = true
  192.  
  193. Info1.Name = "Info1"
  194. Info1.Parent = Background
  195. Info1.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  196. Info1.Position = UDim2.new(0.440000027, 0, 0.20271185, 0)
  197. Info1.Size = UDim2.new(0, 260, 0, 50)
  198. Info1.Font = Enum.Font.SciFi
  199. Info1.Text = "MODO FÁCIL"
  200. Info1.TextColor3 = Color3.new(0, 0, 0)
  201. Info1.TextScaled = true
  202. Info1.TextSize = 14
  203. Info1.TextWrapped = true
  204.  
  205. Escapar2.Name = "Escapar2"
  206. Escapar2.Parent = Background
  207. Escapar2.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  208. Escapar2.Position = UDim2.new(0.119999997, 0, 0.410286576, 0)
  209. Escapar2.Size = UDim2.new(0, 150, 0, 50)
  210. Escapar2.Font = Enum.Font.Cartoon
  211. Escapar2.Text = "ESCAPAR"
  212. Escapar2.TextColor3 = Color3.new(0, 0, 0)
  213. Escapar2.TextScaled = true
  214. Escapar2.TextSize = 14
  215. Escapar2.TextWrapped = true
  216. Escapar2.MouseButton1Click:Connect(function()
  217.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-231, 159, 191)
  218. end)
  219.  
  220. Escapar3.Name = "Escapar3"
  221. Escapar3.Parent = Background
  222. Escapar3.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  223. Escapar3.Position = UDim2.new(0.119999997, 0, 0.6204561, 0)
  224. Escapar3.Size = UDim2.new(0, 150, 0, 50)
  225. Escapar3.Font = Enum.Font.Cartoon
  226. Escapar3.Text = "ESCAPAR"
  227. Escapar3.TextColor3 = Color3.new(0, 0, 0)
  228. Escapar3.TextScaled = true
  229. Escapar3.TextSize = 14
  230. Escapar3.TextWrapped = true
  231. Escapar3.MouseButton1Click:Connect(function()
  232.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-232, 159, 322)
  233. end)
  234.  
  235. Info2.Name = "Info2"
  236. Info2.Parent = Background
  237. Info2.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  238. Info2.Position = UDim2.new(0.440000027, 0, 0.412881345, 0)
  239. Info2.Size = UDim2.new(0, 260, 0, 50)
  240. Info2.Font = Enum.Font.SciFi
  241. Info2.Text = "MODO MÉDIO"
  242. Info2.TextColor3 = Color3.new(0, 0, 0)
  243. Info2.TextScaled = true
  244. Info2.TextSize = 14
  245. Info2.TextWrapped = true
  246.  
  247. Info3.Name = "Info3"
  248. Info3.Parent = Background
  249. Info3.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  250. Info3.Position = UDim2.new(0.440000027, 0, 0.623050809, 0)
  251. Info3.Size = UDim2.new(0, 260, 0, 50)
  252. Info3.Font = Enum.Font.SciFi
  253. Info3.Text = "MODO DIFÍCIL"
  254. Info3.TextColor3 = Color3.new(0, 0, 0)
  255. Info3.TextScaled = true
  256. Info3.TextSize = 14
  257. Info3.TextWrapped = true
  258.  
  259. Creditos.Name = "Creditos"
  260. Creditos.Parent = Background
  261. Creditos.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  262. Creditos.Position = UDim2.new(0, 0, 0.830508471, 0)
  263. Creditos.Size = UDim2.new(0, 500, 0, 50)
  264. Creditos.Font = Enum.Font.SourceSansBold
  265. Creditos.Text = "FEITO POR: Gustavo10Destroyer"
  266. Creditos.TextColor3 = Color3.new(0, 0, 0)
  267. Creditos.TextScaled = true
  268. Creditos.TextSize = 14
  269. Creditos.TextWrapped = true
  270.  
  271. Cor1.Name = "Color1"
  272. Cor1.Parent = Background
  273. Cor1.BackgroundColor3 = Color3.new(0, 1, 0)
  274. Cor1.Position = UDim2.new(0.0199999996, 0, 0.21694915, 0)
  275. Cor1.Size = UDim2.new(0, 40, 0, 40)
  276.  
  277. Cor2.Name = "Color2"
  278. Cor2.Parent = Background
  279. Cor2.BackgroundColor3 = Color3.new(1, 1, 0)
  280. Cor2.Position = UDim2.new(0.0199999996, 0, 0.427118659, 0)
  281. Cor2.Size = UDim2.new(0, 40, 0, 40)
  282.  
  283. Cor3.Name = "Color3"
  284. Cor3.Parent = Background
  285. Cor3.BackgroundColor3 = Color3.new(1, 0, 0)
  286. Cor3.Position = UDim2.new(0.0199999996, 0, 0.637288153, 0)
  287. Cor3.Size = UDim2.new(0, 40, 0, 40)
  288.  
  289. Fechar.Name = "Fechar"
  290. Fechar.Parent = Background
  291. Fechar.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  292. Fechar.BorderSizePixel = 0
  293. Fechar.Position = UDim2.new(0.899999976, 0, 0, 0)
  294. Fechar.Size = UDim2.new(0, 50, 0, 50)
  295. Fechar.Image = "rbxassetid://150902481"
  296. Fechar.MouseButton1Click:Connect(function()
  297.     Background.Visible = false
  298.     SecondaryOptions.Visible = false
  299.     ABRIR.Visible = true
  300. end)
  301.  
  302. ABRIR.Parent = FloodEscapeGUI
  303. ABRIR.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  304. ABRIR.Position = UDim2.new(1, -200, 0.5, -25)
  305. ABRIR.Size = UDim2.new(0, 200, 0, 50)
  306. ABRIR.Font = Enum.Font.SourceSansBold
  307. ABRIR.Text = "ABRIR"
  308. ABRIR.TextColor3 = Color3.new(0, 0, 0)
  309. ABRIR.TextScaled = true
  310. ABRIR.TextSize = 14
  311. ABRIR.TextWrapped = true
  312. ABRIR.MouseButton1Click:Connect(function()
  313.     ABRIR.Visible = false
  314.     Background.Visible = true
  315.     SecondaryOptions.Visible = true
  316. end)
  317.  
  318. EntradaFacil.Name = "EntradaFacil"
  319. EntradaFacil.Size = Vector3.new(16, 1, 16)
  320. EntradaFacil.Position = Vector3.new(-424.5, 255.5, 121.5)
  321. EntradaFacil.Anchored = true
  322. EntradaFacil.Transparency = 1
  323. EntradaFacil.CanCollide = false
  324. EntradaFacil.Parent = game.Workspace
  325. EntradaFacil.Touched:Connect(function(hit)
  326.     if AutoFarm == true then
  327.         if hit.Parent.Name == game.Players.LocalPlayer.Name then
  328.             wait(7)
  329.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-241.5, 160.6, 62)
  330.             wait(6)
  331.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-415.5, 263.5, 137.088)
  332.             wait(0.1)
  333.             game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(-420, 258.5, 129.294))
  334.         end
  335.     end
  336. end)
  337.  
  338. EntradaMedio.Name = "EntradaMedio"
  339. EntradaMedio.Size = Vector3.new(16, 1, 16)
  340. EntradaMedio.Position = Vector3.new(-392.5, 255.5, 119.5)
  341. EntradaMedio.Anchored = true
  342. EntradaMedio.Transparency = 1
  343. EntradaMedio.CanCollide = false
  344. EntradaMedio.Parent = game.Workspace
  345. EntradaMedio.Touched:Connect(function(hit)
  346.     if AutoFarm == true then
  347.         if hit.Parent.Name == game.Players.LocalPlayer.Name then
  348.             wait(7)
  349.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-241.5, 160.6, 192)
  350.             wait(6)
  351.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-392.5, 263.4, 137.5)
  352.             wait(0.1)
  353.             game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(-392.5, 258.4, 128.5))
  354.         end
  355.     end
  356. end)
  357.  
  358. EntradaDificil.Name = "EntradaDificil"
  359. EntradaDificil.Size = Vector3.new(16, 1, 16)
  360. EntradaDificil.Position = Vector3.new(-360.5, 255.5, 121.5)
  361. EntradaDificil.Anchored = true
  362. EntradaDificil.Transparency = 1
  363. EntradaDificil.CanCollide = false
  364. EntradaDificil.Parent = game.Workspace
  365. EntradaDificil.Touched:Connect(function(hit)
  366.     if AutoFarm == true then
  367.         if hit.Parent.Name == game.Players.LocalPlayer.Name then
  368.             wait(7)
  369.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-241.5, 160.6, 322)
  370.             wait(6)
  371.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-371, 263.5, 139.686)
  372.             wait(0.1)
  373.             game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(-365, 258.5, 129.294))
  374.         end
  375.     end
  376. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement