Advertisement
Guest User

GUI Zombie Rush

a guest
May 19th, 2019
22,540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local credits = Instance.new("TextLabel")
  7. local launchscript = Instance.new("TextButton")
  8. local warningsign = Instance.new("TextLabel")
  9. local noclip = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(0.180392, 0.988235, 1)
  16. Frame.BackgroundTransparency = 0.5
  17. Frame.Position = UDim2.new(0.0213414729, 0, 0.747093022, 0)
  18. Frame.Size = UDim2.new(0, 232, 0, 148)
  19.  
  20. credits.Name = "credits"
  21. credits.Parent = Frame
  22. credits.BackgroundColor3 = Color3.new(0.180392, 0.988235, 1)
  23. credits.BorderSizePixel = 0
  24. credits.Size = UDim2.new(0, 232, 0, 37)
  25. credits.Font = Enum.Font.Antique
  26. credits.Text = "Made by thats oof#3643"
  27. credits.TextColor3 = Color3.new(0, 0, 0)
  28. credits.TextScaled = true
  29. credits.TextSize = 14
  30. credits.TextWrapped = true
  31.  
  32. launchscript.Name = "launchscript"
  33. launchscript.Parent = Frame
  34. launchscript.BackgroundColor3 = Color3.new(1, 1, 1)
  35. launchscript.Position = UDim2.new(0.068965517, 0, 0.331081092, 0)
  36. launchscript.Size = UDim2.new(0, 200, 0, 50)
  37. launchscript.Font = Enum.Font.SourceSans
  38. launchscript.Text = "Start"
  39. launchscript.TextColor3 = Color3.new(0, 0, 0)
  40. launchscript.TextScaled = true
  41. launchscript.TextSize = 15
  42. launchscript.TextWrapped = true
  43. launchscript.MouseButton1Down:connect(function()
  44. local zombies = workspace["Zombie Storage"]
  45. local zombie = zombies:GetChildren()[1]
  46. local a = 1
  47. while true do
  48. zombie.Torso.Anchored = true
  49. repeat wait() zombie.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame + Vector3.new(0,0,8) until zombie:FindFirstChildOfClass("Humanoid").Health <= 0
  50. zombie:MoveTo(Vector3.new(-1000,-100,-1000))
  51. if a == 1 then zombie = zombies:GetChildren()[2] a = 2 else zombie = zombies:GetChildren()[1] a = 1 end
  52. end
  53. end)
  54.  
  55. warningsign.Name = "warningsign"
  56. warningsign.Parent = Frame
  57. warningsign.BackgroundColor3 = Color3.new(1, 1, 1)
  58. warningsign.Position = UDim2.new(0.068965517, 0, 0.668918908, 0)
  59. warningsign.Size = UDim2.new(0, 200, 0, 50)
  60. warningsign.Font = Enum.Font.SourceSans
  61. warningsign.Text = "WARNING! Players wont teleport so you might be killed (use noclip button and go somewhere in sky)"
  62. warningsign.TextColor3 = Color3.new(0, 0, 0)
  63. warningsign.TextScaled = true
  64. warningsign.TextSize = 14
  65. warningsign.TextWrapped = true
  66.  
  67. noclip.Name = "noclip"
  68. noclip.Parent = Frame
  69. noclip.BackgroundColor3 = Color3.new(1, 1, 1)
  70. noclip.Position = UDim2.new(0, 0, -0.128378376, 0)
  71. noclip.Size = UDim2.new(0, 63, 0, 19)
  72. noclip.Font = Enum.Font.SourceSans
  73. noclip.Text = "NOCLIP(E)"
  74. noclip.TextColor3 = Color3.new(0, 0, 0)
  75. noclip.TextScaled = true
  76. noclip.TextSize = 30
  77. noclip.TextWrapped = true
  78. noclip.MouseButton1Down:connect(function()
  79. noclip.MouseButton1Down:connect(function()
  80. noclip = false
  81. game:GetService('RunService').Stepped:connect(function()
  82. if noclip then
  83. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  84. end
  85. end)
  86. plr = game.Players.LocalPlayer
  87. mouse = plr:GetMouse()
  88. mouse.KeyDown:connect(function(key)
  89.  
  90. if key == "e" then
  91. noclip = not noclip
  92. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  93. end
  94. end)
  95. end)
  96.  
  97. end)
  98. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement