Advertisement
Death_Data

dooin ur mawm!

Aug 3rd, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | None | 0 0
  1. wait(0.5)
  2.  
  3. warn("Attack On Titan: Revenge: Legendary Edition, has loaded")
  4.  
  5. --//Keybinds
  6.  
  7. local KeyBinds = {
  8. KillAll = Enum.KeyCode.K;
  9. ESP = Enum.KeyCode.P;
  10. KillSelected = Enum.KeyCode.T;
  11. }
  12.  
  13. ----//Don't bother touching below here
  14.  
  15. local UIS = game:GetService("UserInputService")
  16.  
  17. local Player = game.Players.LocalPlayer
  18. local Mouse = Player:GetMouse()
  19. local Character = Player.Character or Player.CharacterAdded:Wait()
  20. local HRP = Character:WaitForChild("HumanoidRootPart")
  21.  
  22. local espStuff = {}
  23. local espCurrent = true
  24. local doing = false
  25. local cancel = false
  26.  
  27. local GUI = Instance.new("ScreenGui",Player.PlayerGui)
  28. local txtLabel = Instance.new("TextLabel",GUI)
  29. txtLabel.Size = UDim2.new(0.2,0,0.06,0)
  30. txtLabel.Position = UDim2.new(0.4,0,0.042,0)
  31. txtLabel.BackgroundTransparency = 1
  32. txtLabel.TextScaled = true
  33. txtLabel.TextColor3 = Color3.new(0,1,0)
  34. txtLabel.Visible = false
  35.  
  36. local lastMsg = nil
  37.  
  38. function Message(Msg,Time,Color)
  39. if lastMsg and lastMsg.Parent ~= nil then lastMsg:Destroy() end
  40. local newLabel = txtLabel:Clone()
  41. lastMsg = newLabel
  42.  
  43. newLabel.Parent = txtLabel.Parent
  44. newLabel.Text = Msg
  45. newLabel.TextColor3 = Color
  46. newLabel.Visible = true
  47. game.Debris:AddItem(newLabel,Time)
  48. end
  49.  
  50. function ESP(Mode)
  51. if Mode == true then
  52. for _,got in pairs(workspace.Titans:GetChildren()) do
  53. for i,v in pairs(got:children())do
  54. if v:IsA('BasePart')and v.Name~=('HumanoidRootPart')then
  55. local rA=Instance.new('BoxHandleAdornment',v)
  56. rA.Adornee=v
  57. rA.Size = v.Name=='Head' and Vector3.new(1.25,1.25,1.25) or v.Size
  58. rA.Color3 = v.Name== 'Nape'and Color3.new(1,0,0) or v.Name ==('Torso') and Color3.new(1,1,0) or v.Name ==('Head') and Color3.new(0,0,1) or Color3.new(0,1,0)
  59. rA.Transparency=0.1
  60. rA.ZIndex=1
  61. rA.AlwaysOnTop=true
  62. table.insert(espStuff,rA)
  63. end
  64. end
  65. end
  66.  
  67. for _,got in pairs(game.Players:GetPlayers()) do
  68. if got ~= Player then
  69. for i,v in pairs(got.Character:GetChildren())do
  70. if v:IsA('BasePart')and v.Name~=('HumanoidRootPart')then
  71. local rA=Instance.new('BoxHandleAdornment',v)
  72. rA.Adornee= v
  73. rA.Size = v.Size
  74. rA.Color3 = Color3.new(1,1,1)
  75. rA.Transparency=0.1
  76. rA.ZIndex=1
  77. rA.AlwaysOnTop=true
  78. table.insert(espStuff,rA)
  79. end
  80. end
  81. end
  82. end
  83.  
  84. for i,v in pairs(workspace.Reloads:GetDescendants())do
  85. if v:IsA('BasePart')then
  86. local rA=Instance.new('BoxHandleAdornment',v)
  87. rA.Adornee= v
  88. rA.Size = v.Size
  89. rA.Color3 = Color3.fromRGB(114, 33, 180)
  90. rA.Transparency=0.1
  91. rA.ZIndex=1
  92. rA.AlwaysOnTop=true
  93. table.insert(espStuff,rA)
  94. end
  95. end
  96.  
  97. for i,v in pairs(workspace.Horses:GetDescendants())do
  98. if v:IsA('BasePart')then
  99. local rA=Instance.new('BoxHandleAdornment',v)
  100. rA.Adornee= v
  101. rA.Size = v.Size
  102. rA.Color3 = Color3.fromRGB(255, 212, 55)
  103. rA.Transparency=0.1
  104. rA.ZIndex=1
  105. rA.AlwaysOnTop=true
  106. table.insert(espStuff,rA)
  107. end
  108. end
  109.  
  110. elseif Mode == false then
  111. for _,v in pairs(espStuff) do
  112. v:Destroy()
  113. end
  114. end
  115. end
  116.  
  117. function Kill(Target)
  118. Message("Killing: " .. Target.Name,1.5,Color3.new(0,1,0))
  119. pcall(function()
  120. Player.Backpack.Input:FireServer("m1", {mousehit = Mouse.Hit})
  121. end)
  122. wait()
  123. coroutine.wrap(function()
  124. for i = 1, 15 do
  125. wait()
  126. HRP.CFrame = Target.Nape.CFrame;
  127. end
  128. end)()
  129. pcall(function()
  130. Player.Backpack.Input:FireServer("m|off", {mousehit = Mouse.Hit})
  131. end)
  132. end
  133.  
  134. ESP(true)
  135. UIS.InputBegan:Connect(function(Key,gamepor)
  136. if Key.KeyCode == KeyBinds.KillSelected and not doing then
  137. local Target = Mouse.Target
  138. if Target and Target.Parent.Parent == workspace.Titans then
  139. doing = true
  140. Kill(Target.Parent)
  141. doing = false
  142. end
  143. elseif Key.KeyCode == KeyBinds.ESP then
  144. espCurrent = not espCurrent
  145. if espCurrent == true then
  146. Message("ESP: On",1.5,Color3.new(0,1,0))
  147. else
  148. Message("ESP: Off",1.5,Color3.new(1,0,0))
  149. end
  150. ESP(espCurrent)
  151. elseif Key.KeyCode == KeyBinds.KillAll and not doing then
  152. doing = true
  153. for _,Target in pairs(workspace.Titans:GetChildren()) do
  154. if cancel == true then
  155. cancel = false
  156. break
  157. end
  158. if Target:FindFirstChildOfClass("Humanoid"):GetState() ~= Enum.HumanoidStateType.Dead then
  159. Kill(Target)
  160. wait(1.25)
  161. end
  162. end
  163. doing = false
  164. end
  165. end)
  166.  
  167. UIS.InputEnded:Connect(function(Key,gamepor)
  168. if Key.KeyCode == KeyBinds.KillAll and not gamepor and doing == true then
  169. Message("Cancelled: Kill all",1.5,Color3.new(1,0,0))
  170. cancel = true
  171. end
  172. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement