Advertisement
Guest User

VH2 Avengers gui 1.0

a guest
May 24th, 2019
1,362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.87 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local VH2AvengersGUI = Instance.new("ScreenGui")
  5. local Open = Instance.new("TextButton")
  6. local Frame = Instance.new("Frame")
  7. local AvengersGUI = Instance.new("TextLabel")
  8. local Thanos = Instance.new("TextButton")
  9. local Thor = Instance.new("TextButton")
  10. local IronMan = Instance.new("TextButton")
  11. --Properties:
  12. VH2AvengersGUI.Name = "VH2 Avengers GUI"
  13. VH2AvengersGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14.  
  15. Open.Name = "Open"
  16. Open.Parent = VH2AvengersGUI
  17. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  18. Open.Position = UDim2.new(0, 0, 0.5, -25)
  19. Open.Size = UDim2.new(0, 200, 0, 50)
  20. Open.Font = Enum.Font.Cartoon
  21. Open.Text = "Avengers GUI VH2"
  22. Open.TextColor3 = Color3.new(1, 0, 0)
  23. Open.TextScaled = true
  24. Open.TextSize = 14
  25. Open.TextWrapped = true
  26.  
  27. Frame.Parent = VH2AvengersGUI
  28. Frame.BackgroundColor3 = Color3.new(1, 0.6, 0.796079)
  29. Frame.BackgroundTransparency = 0.15000000596046
  30. Frame.Position = UDim2.new(0.614429533, 0, 0.652503729, 0)
  31. Frame.Size = UDim2.new(0, 385, 0, 229)
  32. Frame.Visible = false
  33.  
  34. AvengersGUI.Name = "Avengers GUI"
  35. AvengersGUI.Parent = Frame
  36. AvengersGUI.BackgroundColor3 = Color3.new(1, 0, 0)
  37. AvengersGUI.BackgroundTransparency = 0.5
  38. AvengersGUI.Size = UDim2.new(0, 385, 0, 57)
  39. AvengersGUI.Font = Enum.Font.SciFi
  40. AvengersGUI.Text = "Avengers GUI [VH2 ONLY]"
  41. AvengersGUI.TextColor3 = Color3.new(1, 0.921569, 0.0196078)
  42. AvengersGUI.TextScaled = true
  43. AvengersGUI.TextSize = 14
  44. AvengersGUI.TextWrapped = true
  45.  
  46. Thanos.Name = "Thanos"
  47. Thanos.Parent = Frame
  48. Thanos.BackgroundColor3 = Color3.new(1, 0.298039, 0.933333)
  49. Thanos.BackgroundTransparency = 0.5
  50. Thanos.Position = UDim2.new(0.319480509, 0, 0.248908281, 0)
  51. Thanos.Size = UDim2.new(0, 138, 0, 89)
  52. Thanos.Text = "Thanos"
  53. Thanos.TextColor3 = Color3.new(1, 0, 0.917647)
  54. Thanos.TextScaled = true
  55. Thanos.TextSize = 14
  56. Thanos.TextWrapped = true
  57.  
  58. Thor.Name = "Thor"
  59. Thor.Parent = Frame
  60. Thor.BackgroundColor3 = Color3.new(0, 0.14902, 1)
  61. Thor.BackgroundTransparency = 0.5
  62. Thor.Position = UDim2.new(0.763636351, 0, 0.353711784, 0)
  63. Thor.Size = UDim2.new(0, 54, 0, 40)
  64. Thor.Font = Enum.Font.SciFi
  65. Thor.Text = "Thor"
  66. Thor.TextColor3 = Color3.new(0, 0.866667, 1)
  67. Thor.TextScaled = true
  68. Thor.TextSize = 14
  69. Thor.TextStrokeTransparency = 0
  70. Thor.TextWrapped = true
  71.  
  72. IronMan.Name = "IronMan"
  73. IronMan.Parent = Frame
  74. IronMan.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  75. IronMan.BackgroundTransparency = 0.5
  76. IronMan.Position = UDim2.new(0.072727263, 0, 0.353711784, 0)
  77. IronMan.Size = UDim2.new(0, 54, 0, 40)
  78. IronMan.Font = Enum.Font.SciFi
  79. IronMan.Text = "Iron Man"
  80. IronMan.TextColor3 = Color3.new(1, 1, 1)
  81. IronMan.TextScaled = true
  82. IronMan.TextSize = 14
  83. IronMan.TextStrokeTransparency = 0
  84. IronMan.TextWrapped = true
  85. -- Scripts:
  86. function SCRIPT_GHFI76_FAKESCRIPT() -- Open.OpenScript
  87.     local script = Instance.new('Script')
  88.     script.Parent = Open
  89.     --// JAFTERGAMERTV \\--
  90.    
  91.     script.Parent.MouseButton1Click:connect(function() -- The function of when the Players Clicks.
  92.         if script.Parent.Parent.Box.Visible == false then -- This tells wither it is open or not.
  93.             script.Parent.Text = "Close" -- Tells us that it is open.
  94.             script.Parent.Parent.Box.Visible = true -- Makes the box visible.
  95.         else -- Otherwise
  96.             script.Parent.Text = "Avengers GUI VH2" -- Tells us that it is closed.
  97.             script.Parent.Parent.Box.Visible = false -- Makes the box Invisible
  98.         end -- Ends the If statement.
  99.     end) -- Ends the function in general.
  100.  
  101. end
  102. coroutine.resume(coroutine.create(SCRIPT_GHFI76_FAKESCRIPT))
  103. function SCRIPT_EBXO74_FAKESCRIPT() -- Thanos.Thanos
  104.     local script = Instance.new('Script')
  105.     script.Parent = Thanos
  106.     script.Parent.MouseButton1Click:connect(function()
  107.         loadstring(game:HttpGet("https://pastebin.com/raw/HjStP7pk"))() --thanos
  108.     end)
  109.  
  110. end
  111. coroutine.resume(coroutine.create(SCRIPT_EBXO74_FAKESCRIPT))
  112. function SCRIPT_XWPA90_FAKESCRIPT() -- Frame.draggable
  113.     local script = Instance.new('Script')
  114.     script.Parent = Frame
  115.     local frame = script.Parent.Parent.Frame -- change riskexeui to whatever frame you want to make draggable
  116.    
  117.     frame.Draggable = true
  118.     frame.Selectable = true
  119.     frame.Active = true
  120.     frame.RobloxLocked = false
  121.  
  122. end
  123. coroutine.resume(coroutine.create(SCRIPT_XWPA90_FAKESCRIPT))
  124. function SCRIPT_UNXL79_FAKESCRIPT() -- Thor.Thor
  125.     local script = Instance.new('Script')
  126.     script.Parent = Thor
  127.     script.Parent.MouseButton1Click:connect(function()
  128.         loadstring(game:HttpGet("https://pastebin.com/raw/1eyykkTM"))() --thor
  129.     end)
  130.  
  131. end
  132. coroutine.resume(coroutine.create(SCRIPT_UNXL79_FAKESCRIPT))
  133. function SCRIPT_CHOA84_FAKESCRIPT() -- IronMan.Iron Man
  134.     local script = Instance.new('Script')
  135.     script.Parent = IronMan
  136.     script.Parent.MouseButton1Click:connect(function()
  137.         loadstring(game:HttpGet("https://pastebin.com/aqkL30PZ"))() --ironman
  138.     end)
  139.  
  140. end
  141. coroutine.resume(coroutine.create(SCRIPT_CHOA84_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement