Nghientapgym

Iron Man Scripting

May 29th, 2018
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. -- Fixed By NTS
  2. -- Objects
  3.  
  4. local IronHax = Instance.new("ScreenGui")
  5. local MainUI = Instance.new("Frame")
  6. local name = Instance.new("TextLabel")
  7. local creds = Instance.new("TextLabel")
  8. local nts = game.Players.LocalPlayer.PlayerGui
  9. local Kill = Instance.new("TextButton")
  10. local free = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. IronHax.Name = "IronHax"
  15. IronHax.Parent = nts
  16.  
  17. MainUI.Name = "MainUI"
  18. MainUI.Parent = IronHax
  19. MainUI.BackgroundColor3 = Color3.new(1, 1, 1)
  20. MainUI.Position = UDim2.new(0.127921268, 0, 0.442561209, 0)
  21. MainUI.Size = UDim2.new(0, 172, 0, 195)
  22.  
  23. name.Name = "name"
  24. name.Parent = MainUI
  25. name.BackgroundColor3 = Color3.new(1, 0.466667, 0.419608)
  26. name.Size = UDim2.new(0, 172, 0, 43)
  27. name.Font = Enum.Font.SourceSans
  28. name.Text = "IronHax"
  29. name.TextColor3 = Color3.new(0, 0, 0)
  30. name.TextSize = 50
  31.  
  32. creds.Name = "creds"
  33. creds.Parent = MainUI
  34. creds.BackgroundColor3 = Color3.new(1, 1, 1)
  35. creds.BackgroundTransparency = 1
  36. creds.BorderSizePixel = 0
  37. creds.Position = UDim2.new(-0.215116277, 0, 0.902564108, 0)
  38. creds.Size = UDim2.new(0, 209, 0, 19)
  39. creds.Font = Enum.Font.SourceSans
  40. creds.Text = "Made by RoboHaxRoblox"
  41. creds.TextColor3 = Color3.new(0, 0, 0)
  42. creds.TextSize = 14
  43.  
  44. Kill.Name = "Kill"
  45. Kill.Parent = MainUI
  46. Kill.BackgroundColor3 = Color3.new(1, 0.466667, 0.419608)
  47. Kill.Position = UDim2.new(0.093023181, 0, 0.284615397, 0)
  48. Kill.Size = UDim2.new(0, 140, 0, 40)
  49. Kill.Font = Enum.Font.SourceSans
  50. Kill.Text = "Kill all"
  51. Kill.TextColor3 = Color3.new(0, 0, 0)
  52. Kill.TextSize = 29
  53.  
  54. free.Name = "free"
  55. free.Parent = MainUI
  56. free.BackgroundColor3 = Color3.new(1, 0.466667, 0.419608)
  57. free.Position = UDim2.new(0.0930232555, 0, 0.558974385, 0)
  58. free.Size = UDim2.new(0, 146, 0, 40)
  59. free.Font = Enum.Font.SourceSans
  60. free.Text = "Free war machine"
  61. free.TextColor3 = Color3.new(0, 0, 0)
  62. free.TextSize = 21
  63.  
  64. -- drag
  65. MainUI.Active = true
  66. MainUI.Draggable = true
  67.  
  68. free.MouseButton1Down:connect(function()
  69. game:GetService("Players").LocalPlayer.Backpack.ironMan.Assets.Events.callSuit:FireServer("WarMachine", tick(), 0)
  70. end)
  71.  
  72. Kill.MouseButton1Down:connect(function()
  73. for i,v in pairs(game.Players:GetChildren()) do
  74. if v ~= game.Players.LocalPlayer then
  75. a = v.Character
  76. remote = game:service'Players'.LocalPlayer.Backpack.suitControl.Assets.Events["punchHit"]
  77. remote:FireServer(a.Head,100000)
  78. end
  79. end
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment