Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local top = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local down = Instance.new("Frame")
  8. local TextLabel_2 = Instance.new("TextLabel")
  9. local tp = Instance.new("TextButton")
  10. local walk = Instance.new("TextButton")
  11. local close = Instance.new("TextButton")
  12. local openframe = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14.  
  15. -- Properties
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. main.Name = "main"
  21. main.Parent = ScreenGui
  22. main.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  23. main.Position = UDim2.new(0.0330672227, 0, 0.660642564, 0)
  24. main.Size = UDim2.new(0, 201, 0, 140)
  25. main.Visible = true
  26. main.Active = true
  27. main.Draggable = true
  28.  
  29. top.Name = "top"
  30. top.Parent = main
  31. top.BackgroundColor3 = Color3.new(1, 1, 1)
  32. top.Size = UDim2.new(0, 201, 0, 23)
  33.  
  34. TextLabel.Parent = top
  35. TextLabel.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  36. TextLabel.Size = UDim2.new(0, 200, 0, 23)
  37. TextLabel.Font = Enum.Font.SciFi
  38. TextLabel.Text = "Zombie Strike"
  39. TextLabel.TextColor3 = Color3.new(0.729412, 0.729412, 0.729412)
  40. TextLabel.TextSize = 30
  41.  
  42. down.Name = "down"
  43. down.Parent = main
  44. down.BackgroundColor3 = Color3.new(1, 1, 1)
  45. down.Position = UDim2.new(0, 0, 0.814285696, 0)
  46. down.Size = UDim2.new(0, 201, 0, 26)
  47.  
  48. TextLabel_2.Parent = down
  49. TextLabel_2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  50. TextLabel_2.Size = UDim2.new(0, 200, 0, 26)
  51. TextLabel_2.Font = Enum.Font.SciFi
  52. TextLabel_2.Text = "Made By ArmSeKe"
  53. TextLabel_2.TextColor3 = Color3.new(0.701961, 0.701961, 0.701961)
  54. TextLabel_2.TextSize = 25
  55.  
  56. tp.Name = "tp"
  57. tp.Parent = main
  58. tp.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  59. tp.Position = UDim2.new(0.129353225, 0, 0.221428573, 0)
  60. tp.Size = UDim2.new(0, 149, 0, 31)
  61. tp.Font = Enum.Font.SciFi
  62. tp.Text = "Tp Zombie"
  63. tp.TextColor3 = Color3.new(0, 0, 0)
  64. tp.TextSize = 14
  65. tp.TextWrapped = true
  66. tp.MouseButton1Down:connect(function()
  67. _G.run = true
  68. while _G.run do
  69. for i,v in pairs(game:GetService("Workspace").Zombies:GetChildren()) do
  70. if v:findFirstChild("Head") then
  71. v.Head.Anchored = true
  72. v.Head.CFrame = game.Players.LocalPlayer.Character.Head.CFrame*CFrame.new(2,3,-10)
  73. end
  74. end
  75. wait()
  76. end
  77. end)
  78.  
  79. walk.Name = "walk"
  80. walk.Parent = main
  81. walk.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  82. walk.Position = UDim2.new(0.1243781, 0, 0.514285684, 0)
  83. walk.Size = UDim2.new(0, 149, 0, 31)
  84. walk.Font = Enum.Font.SciFi
  85. walk.Text = "Walkspeed+Esp"
  86. walk.TextColor3 = Color3.new(0, 0, 0)
  87. walk.TextSize = 14
  88. walk.TextWrapped = true
  89. walk.MouseButton1Down:connect(function()
  90. while wait() do
  91. for i,v in pairs(game.Workspace.Zombies:GetChildren()) do
  92. local Player = game.Players.LocalPlayer
  93. Player.Character.Humanoid.WalkSpeed = 100
  94. v.Head.Size=Vector3.new(6, 6, 6)
  95. a=Instance.new("SelectionBox",v.Head)
  96. a.Adornee=v.Head
  97. end
  98. end
  99. end)
  100.  
  101. close.Name = "close"
  102. close.Parent = main
  103. close.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  104. close.Position = UDim2.new(0.945273638, 0, 0, 0)
  105. close.Size = UDim2.new(0, 11, 0, 13)
  106. close.Font = Enum.Font.SciFi
  107. close.Text = "X"
  108. close.TextColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  109. close.TextSize = 14
  110. close.MouseButton1Down:connect(function()
  111. open.Visible = true
  112. main.Visible = false
  113. end)
  114.  
  115. openframe.Name = "openframe"
  116. openframe.Parent = ScreenGui
  117. openframe.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  118. openframe.Position = UDim2.new(0, 0, 0.518072307, 0)
  119. openframe.Size = UDim2.new(0, 61, 0, 25)
  120.  
  121. open.Name = "open"
  122. open.Parent = openframe
  123. open.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  124. open.Position = UDim2.new(0.0537608266, 0, 0.119999997, 0)
  125. open.Size = UDim2.new(0, 53, 0, 19)
  126. open.Font = Enum.Font.SourceSans
  127. open.Text = "Open"
  128. open.TextColor3 = Color3.new(0.596078, 0.596078, 0.596078)
  129. open.TextSize = 14
  130. open.TextStrokeColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  131. open.MouseButton1Down:connect(function()
  132. main.Visible = true
  133. openframe.Visible = false
  134. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement