Advertisement
Guest User

iroman

a guest
May 24th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.96 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local IronMan = Instance.new("ScreenGui")
  5. local Arm = Instance.new("Frame")
  6. local CanFly = Instance.new("TextButton")
  7. local Armor = Instance.new("TextButton")
  8. local Beam = Instance.new("TextButton")
  9. local Beam_2 = Instance.new("TextButton")
  10. --Properties:
  11. IronMan.Name = "Iron Man"
  12. IronMan.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. IronMan.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Arm.Name = "Arm"
  16. Arm.Parent = IronMan
  17. Arm.BackgroundColor3 = Color3.new(0.74902, 0, 0.0117647)
  18. Arm.Position = UDim2.new(0.0369630381, 0, 0.680931866, 0)
  19. Arm.Rotation = 12.5
  20. Arm.Size = UDim2.new(0, 223, 0, 328)
  21.  
  22. CanFly.Name = "Can Fly"
  23. CanFly.Parent = Arm
  24. CanFly.BackgroundColor3 = Color3.new(1, 0, 0)
  25. CanFly.Position = UDim2.new(0.0493273549, 0, 0.0213414636, 0)
  26. CanFly.Size = UDim2.new(0, 62, 0, 18)
  27. CanFly.Font = Enum.Font.SourceSans
  28. CanFly.Text = "Can Fly"
  29. CanFly.TextColor3 = Color3.new(1, 1, 1)
  30. CanFly.TextScaled = true
  31. CanFly.TextSize = 14
  32. CanFly.TextWrapped = true
  33.  
  34. Armor.Name = "Armor"
  35. Armor.Parent = Arm
  36. Armor.BackgroundColor3 = Color3.new(1, 0, 0)
  37. Armor.Position = UDim2.new(0.668161452, 0, 0.0213414636, 0)
  38. Armor.Size = UDim2.new(0, 62, 0, 18)
  39. Armor.Font = Enum.Font.SourceSans
  40. Armor.Text = "ArmorDefense"
  41. Armor.TextColor3 = Color3.new(1, 1, 1)
  42. Armor.TextScaled = true
  43. Armor.TextSize = 14
  44. Armor.TextWrapped = true
  45.  
  46. Beam.Name = "Beam"
  47. Beam.Parent = Arm
  48. Beam.BackgroundColor3 = Color3.new(1, 0, 0)
  49. Beam.Position = UDim2.new(0.358744383, 0, 0.0213414636, 0)
  50. Beam.Size = UDim2.new(0, 62, 0, 18)
  51. Beam.Font = Enum.Font.SourceSans
  52. Beam.Text = "Beam Attack"
  53. Beam.TextColor3 = Color3.new(1, 0, 0.0156863)
  54. Beam.TextScaled = true
  55. Beam.TextSize = 14
  56. Beam.TextStrokeColor3 = Color3.new(1, 1, 1)
  57. Beam.TextStrokeTransparency = 0
  58. Beam.TextWrapped = true
  59.  
  60. Beam_2.Name = "Beam"
  61. Beam_2.Parent = Arm
  62. Beam_2.BackgroundColor3 = Color3.new(1, 0, 0)
  63. Beam_2.Position = UDim2.new(0.0493273549, 0, 0.100609757, 0)
  64. Beam_2.Size = UDim2.new(0, 200, 0, 102)
  65. Beam_2.Font = Enum.Font.SciFi
  66. Beam_2.Text = "COMBOBREAKER"
  67. Beam_2.TextColor3 = Color3.new(0, 0, 0)
  68. Beam_2.TextScaled = true
  69. Beam_2.TextSize = 14
  70. Beam_2.TextStrokeColor3 = Color3.new(1, 1, 1)
  71. Beam_2.TextStrokeTransparency = 0
  72. Beam_2.TextWrapped = true
  73. -- Scripts:
  74. function SCRIPT_AWTO83_FAKESCRIPT() -- CanFly.LocalScript
  75. local script = Instance.new('LocalScript')
  76. script.Parent = CanFly
  77. function click()
  78. local name = game.Players.LocalPlayer.Name
  79.  
  80. local p = Instance.new("Part")
  81. p.Parent = workspace
  82. p.Locked = true
  83. p.BrickColor = BrickColor.new("White")
  84. p.BrickColor = BrickColor.new(104)
  85. p.Transparency = 1
  86. p.Size = Vector3.new(8, 1.2, 8)
  87. p.Anchored = true
  88. local m = Instance.new("CylinderMesh")
  89. m.Scale = Vector3.new(1, 0.5, 1)
  90. m.Parent = p
  91. while true do
  92. p.CFrame = CFrame.new(game.Players:findFirstChild(name).Character.Torso.CFrame.x, game.Players:findFirstChild(name).Character.Torso.CFrame.y - 4, game.Players:findFirstChild(name).Character.Torso.CFrame.z)
  93. wait()
  94. end
  95. end
  96.  
  97. script.Parent.MouseButton1Down:connect(click)
  98.  
  99. end
  100. coroutine.resume(coroutine.create(SCRIPT_AWTO83_FAKESCRIPT))
  101. function SCRIPT_KAJH75_FAKESCRIPT() -- Armor.Script
  102. local script = Instance.new('Script')
  103. script.Parent = Armor
  104. script.Parent.MouseButton1Click:connect(function()
  105. workspace.Events.ChangeHealth:FireServer(30000)
  106. end)
  107.  
  108. end
  109. coroutine.resume(coroutine.create(SCRIPT_KAJH75_FAKESCRIPT))
  110. function SCRIPT_GEHN79_FAKESCRIPT() -- Beam.Script
  111. local script = Instance.new('Script')
  112. script.Parent = Beam
  113. script.Parent.MouseButton1Click:connect(function()
  114. workspace.Events.Vampire.Supersonic:FireServer(true)
  115. end)
  116.  
  117. end
  118. coroutine.resume(coroutine.create(SCRIPT_GEHN79_FAKESCRIPT))
  119. function SCRIPT_BIAO75_FAKESCRIPT() -- Beam_2.Script
  120. local script = Instance.new('Script')
  121. script.Parent = Beam_2
  122. script.Parent.MouseButton1Click:connect(function()
  123. workspace.ItsBeautifulWater.Humanoid.HipHeight = 8
  124. wait(3)
  125. workspace.Events.Vampire.Supersonic:FireServer(true)
  126. wait(1)
  127. workspace.Events.ChangeHealth:FireServer(25000)
  128. wait(1)
  129. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 20, "", true) --20
  130. wait(0.25)
  131. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 20, "", true) --40
  132. wait(0.25)
  133. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 20, "", true) --60
  134. wait(0.25)
  135. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 17, "", true) --77
  136. wait(0.25)
  137. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 10, "", true) --87
  138. wait(0.25)
  139. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 8, "", true) -- 95
  140. wait(0.25)
  141. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 3, "", true) --98
  142. wait(0.25)
  143. workspace.Events.DamagePerson:FireServer(a["Right Arm"], 1, "", true) --99
  144. wait(1)
  145. workspace.ItsBeautifulWater.Humanoid.HipHeight = 2.5
  146. end)
  147.  
  148.  
  149. end
  150. coroutine.resume(coroutine.create(SCRIPT_BIAO75_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement