Advertisement
Guest User

Untitled

a guest
Jun 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1.  
  2. --GUI made by Ajax
  3. --scripts from Hibernica on V3rm
  4. local ajax = Instance.new("ScreenGui")
  5. local cred = Instance.new("TextButton")
  6. local inv = Instance.new("TextButton")
  7. local god = Instance.new("TextButton")
  8. local frame = Instance.new("Frame")
  9. local cgui = Instance.new("TextLabel")
  10. local sgui = Instance.new("TextLabel")
  11. local xp = Instance.new("TextButton")
  12. local ex = Instance.new("TextButton")
  13. local open = Instance.new("TextButton")
  14.  
  15. ajax.Name = "Ajax"
  16. ajax.Parent = game.CoreGui
  17.  
  18. frame.Name = "Frame"
  19. frame.Parent = ajax
  20. frame.Position = UDim2.new(0,214,0,177)
  21. frame.Size = UDim2.new(0,244,0,370)
  22. frame.Style = "ChatRed"
  23.  
  24. ex.Name = "x"
  25. ex.Parent = frame
  26. ex.Position = UDim2.new(0,-4,0,-12)
  27. ex.Size = UDim2.new(0,71,0,37)
  28. ex.Text = "X"
  29. ex.TextSize = 17
  30. ex.BackgroundTransparency = 1
  31. ex.MouseButton1Click:connect(function()
  32. frame.Visible = false
  33. open.Visible = true
  34. end)
  35.  
  36. open.Name = "open"
  37. open.Parent = ajax
  38. open.Visible = false
  39. open.Position = UDim2.new(0,244,0,683)
  40. open.Size = UDim2.new(0,200,0,23)
  41. open.Text = "Open VH Assassin"
  42. open.TextScaled = true
  43. open.BackgroundTransparency = 0.6
  44. open.MouseButton1Click:connect(function()
  45. open.Visible = false
  46. frame.Visible = true
  47. end)
  48.  
  49. inv.Name = "inv"
  50. inv.Parent = frame
  51. inv.BackgroundColor3 = Color3.new (1,1,1)
  52. inv.Position = UDim2.new(0,-5,0,79)
  53. inv.Size = UDim2.new(0,214,0,58)
  54. inv.Text = "Invisible"
  55. inv.TextScaled = true
  56. inv.BackgroundTransparency = 1
  57. inv.MouseEnter:connect(function()
  58. inv.Text = "Click to Execute"
  59. end)
  60. inv.MouseLeave:connect(function()
  61. inv.Text = "Invisible"
  62. end)
  63. inv.MouseButton1Click:connect(function()
  64. workspace.Events.Vampire.Invisibility:FireServer(true)
  65. end)
  66.  
  67. cred.Name = "cred"
  68. cred.Parent = frame
  69. cred.BackgroundColor3 = Color3.new (1,1,1)
  70. cred.Position = UDim2.new(0,-5,0,11)
  71. cred.Size = UDim2.new(0,214,0,58)
  72. cred.Text = "Credits"
  73. cred.TextScaled = true
  74. cred.BackgroundTransparency = 1
  75. cred.MouseEnter:connect(function()
  76. cred.Text = "Click to Execute"
  77. end)
  78. cred.MouseLeave:connect(function()
  79. cred.Text = "Credits"
  80. end)
  81. cred.MouseButton1Click:connect(function()
  82. workspace.Events.GiveCR:FireServer(100000)
  83. end)
  84.  
  85. god.Name = "god"
  86. god.Parent = frame
  87. god.BackgroundColor3 = Color3.new (1,1,1)
  88. god.Position = UDim2.new(0,-5,0,149)
  89. god.Size = UDim2.new(0,214,0,58)
  90. god.Text = "God Mode"
  91. god.TextScaled = true
  92. god.BackgroundTransparency = 1
  93. god.MouseEnter:connect(function()
  94. god.Text = "Click to Execute (Reset To Turn Off)"
  95. end)
  96. god.MouseLeave:connect(function()
  97. god.Text = "God Mode"
  98. end)
  99. cred.MouseButton1Click:connect(function()
  100. workspace.Events.ChangeHealth:FireServer(100000000)
  101. end)
  102.  
  103. xp.Name = "xp"
  104. xp.Parent = frame
  105. xp.BackgroundColor3 = Color3.new (1,1,1)
  106. xp.Position = UDim2.new(0,-5,0,220)
  107. xp.Size = UDim2.new(0,214,0,58)
  108. xp.Text = "XP"
  109. xp.TextScaled = true
  110. xp.BackgroundTransparency = 1
  111. xp.MouseEnter:connect(function()
  112. xp.Text = "Click to Execute (Exec Credits after to work) "
  113. end)
  114. xp.MouseLeave:connect(function()
  115. xp.Text = "XP"
  116. end)
  117. xp.MouseButton1Click:connect(function()
  118. workspace.Events.GivePTS:FireServer(100000)
  119. end)
  120.  
  121. cgui.Parent = frame
  122. cgui.Name = "c1"
  123. cgui.Position = UDim2.new(0,3,0,317)
  124. cgui.Size = UDim2.new(0,200,0,31)
  125. cgui.Text = "GUI Made by Ajax and Totsuzo"
  126. cgui.BackgroundTransparency = 1
  127.  
  128. sgui.Parent = frame
  129. sgui.Name = "c2"
  130. sgui.Position = UDim2.new(0,1,0,278)
  131. sgui.Size = UDim2.new(0,208,0,38)
  132. sgui.Text = "Scripts made by Hibernica"
  133. sgui.BackgroundTransparency = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement