Advertisement
Guest User

WarHax_V2_BetaTest

a guest
Apr 10th, 2017
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Objects
  2.  
  3. local WarHaxV2 = Instance.new("ScreenGui")
  4. local MadeInChina = Instance.new("Frame")
  5. local TextButton = Instance.new("TextButton")
  6. local Main = Instance.new("Frame")
  7. local Title = Instance.new("TextLabel")
  8. local Page1Notifier = Instance.new("Frame")
  9. local Page2Notifier = Instance.new("Frame")
  10. local Page_2 = Instance.new("Frame")
  11. local Page_1 = Instance.new("Frame")
  12. local Reserved3 = Instance.new("TextButton")
  13. local UAS = Instance.new("TextButton")
  14. local Reserved1 = Instance.new("TextButton")
  15. local Reserved2 = Instance.new("TextButton")
  16. local Reserved4 = Instance.new("TextButton")
  17. local GodShip = Instance.new("TextButton")
  18.  
  19. -- Variables
  20. local Player = game.Players.LocalPlayer
  21. local Add = false
  22. local PD = Player.PlayerData
  23. local Skins = PD.Skins
  24. local WS = game.Workspace.Revolution
  25. -- Properties
  26.  
  27. WarHaxV2.Name = "WarHaxV2"
  28. WarHaxV2.Parent = Player.PlayerGui
  29.  
  30. MadeInChina.Name = "MadeInChina"
  31. MadeInChina.Parent = WarHaxV2
  32. MadeInChina.BackgroundColor3 = Color3.new(0.564706, 0.564706, 0.564706)
  33. MadeInChina.BorderSizePixel = 5
  34. MadeInChina.Position = UDim2.new(0, 50, 0, 300)
  35. MadeInChina.Size = UDim2.new(0, 100, 0, 40)
  36. MadeInChina.Style = Enum.FrameStyle.DropShadow
  37.  
  38. TextButton.Parent = MadeInChina
  39. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextButton.BackgroundTransparency = 1
  41. TextButton.BorderSizePixel = 0
  42. TextButton.Size = UDim2.new(1, 0, 1, 0)
  43. TextButton.FontSize = Enum.FontSize.Size14
  44. TextButton.Text = "Open"
  45. TextButton.TextColor3 = Color3.new(1, 1, 1)
  46. TextButton.TextSize = 14
  47. TextButton.TextStrokeTransparency = 0
  48. TextButton.MouseButton1Click:connect(function()
  49. if Add == false then
  50. Main.Visible = true
  51. Add = true
  52. else
  53. Main.Visible = false
  54. Add = false
  55. end
  56. end)
  57.  
  58. Main.Name = "Main"
  59. Main.Parent = MadeInChina
  60. Main.BackgroundColor3 = Color3.new(1, 0, 0)
  61. Main.BackgroundTransparency = 0.5
  62. Main.Position = UDim2.new(0, 100, 0, -200)
  63. Main.Size = UDim2.new(0, 500, 0, 200)
  64.  
  65. Title.Name = "Title"
  66. Title.Parent = Main
  67. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  68. Title.BackgroundTransparency = 1
  69. Title.Size = UDim2.new(1, 0, 0, 30)
  70. Title.Font = Enum.Font.Antique
  71. Title.FontSize = Enum.FontSize.Size60
  72. Title.Text = "War_Hax_v2_Beta"
  73. Title.TextColor3 = Color3.new(1, 1, 1)
  74. Title.TextSize = 60
  75. Title.TextStrokeColor3 = Color3.new(1, 0, 0)
  76. Title.TextStrokeTransparency = 0
  77.  
  78. Page1Notifier.Name = "Page1Notifier"
  79. Page1Notifier.Parent = Title
  80. Page1Notifier.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  81. Page1Notifier.BorderColor3 = Color3.new(0, 0, 0)
  82. Page1Notifier.Position = UDim2.new(0, 10, 0, 5)
  83. Page1Notifier.Size = UDim2.new(0, 10, 0, 30)
  84.  
  85. Page2Notifier.Name = "Page2Notifier"
  86. Page2Notifier.Parent = Title
  87. Page2Notifier.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  88. Page2Notifier.BorderColor3 = Color3.new(0, 0, 0)
  89. Page2Notifier.Position = UDim2.new(0, 30, 0, 5)
  90. Page2Notifier.Size = UDim2.new(0, 10, 0, 30)
  91.  
  92. Page_2.Name = "Page_2"
  93. Page_2.Parent = Main
  94. Page_2.BackgroundColor3 = Color3.new(1, 1, 1)
  95. Page_2.Size = UDim2.new(0, 100, 0, 100)
  96. Page_2.Visible = false
  97.  
  98. Page_1.Name = "Page_1"
  99. Page_1.Parent = Main
  100. Page_1.BackgroundColor3 = Color3.new(1, 1, 1)
  101. Page_1.BackgroundTransparency = 1
  102. Page_1.BorderSizePixel = 0
  103. Page_1.Position = UDim2.new(0, 0, 0, 75)
  104. Page_1.Size = UDim2.new(1, 0, 0, 125)
  105.  
  106. Reserved3.Name = "Reserved3"
  107. Reserved3.Parent = Page_1
  108. Reserved3.BackgroundColor3 = Color3.new(1, 0, 0)
  109. Reserved3.BorderSizePixel = 0
  110. Reserved3.Position = UDim2.new(0, 175, 0, 75)
  111. Reserved3.Size = UDim2.new(0, 150, 0, 50)
  112. Reserved3.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  113. Reserved3.Font = Enum.Font.Code
  114. Reserved3.FontSize = Enum.FontSize.Size24
  115. Reserved3.Text = "Reserved"
  116. Reserved3.TextSize = 22
  117. Reserved3.TextStrokeColor3 = Color3.new(1, 0, 0)
  118. Reserved3.TextStrokeTransparency = 0
  119.  
  120. UAS.Name = "UAS"
  121. UAS.Parent = Page_1
  122. UAS.BackgroundColor3 = Color3.new(1, 0, 0)
  123. UAS.BorderSizePixel = 0
  124. UAS.Size = UDim2.new(0, 150, 0, 50)
  125. UAS.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  126. UAS.Font = Enum.Font.Code
  127. UAS.FontSize = Enum.FontSize.Size24
  128. UAS.Text = "Unlock Skins"
  129. UAS.TextSize = 24
  130. UAS.TextStrokeColor3 = Color3.new(1, 0, 0)
  131. UAS.TextStrokeTransparency = 0
  132. UAS.MouseButton1Click:connect(function()
  133. local Create1 = Instance.new("BoolValue",Skins)
  134. Create1.Name = "Ghost Ship"
  135. Create1.Value = true
  136. local Create2 = Instance.new("BoolValue",Skins)
  137. Create2.Name "Jack O' Lantern"
  138. Create2.Value = true
  139. local Create3 = Instance.new("BoolValue",Skins)
  140. Create3.Name = "Holiday Red"
  141. Create3.Value = true
  142. local Create4 = Instance.new("BoolValue",Skins)
  143. Create4.Name = "Holiday Green"
  144. Create4.Value = true
  145. local Create5 = Instance.new("BoolValue",Skins)
  146. Create5.Name = "Holiday White"
  147. Create5.Value = true
  148. for i,v in pairs(Skins:GetChildren())do
  149. v.Value = true
  150. end
  151. end)
  152.  
  153. Reserved1.Name = "Reserved1"
  154. Reserved1.Parent = Page_1
  155. Reserved1.BackgroundColor3 = Color3.new(1, 0, 0)
  156. Reserved1.BorderSizePixel = 0
  157. Reserved1.Position = UDim2.new(0, 350, 0, 0)
  158. Reserved1.Size = UDim2.new(0, 150, 0, 50)
  159. Reserved1.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  160. Reserved1.Font = Enum.Font.Code
  161. Reserved1.FontSize = Enum.FontSize.Size24
  162. Reserved1.Text = "Reserved"
  163. Reserved1.TextSize = 22
  164. Reserved1.TextStrokeColor3 = Color3.new(1, 0, 0)
  165. Reserved1.TextStrokeTransparency = 0
  166.  
  167. Reserved2.Name = "Reserved2"
  168. Reserved2.Parent = Page_1
  169. Reserved2.BackgroundColor3 = Color3.new(1, 0, 0)
  170. Reserved2.BorderSizePixel = 0
  171. Reserved2.Position = UDim2.new(0, 0, 0, 75)
  172. Reserved2.Size = UDim2.new(0, 150, 0, 50)
  173. Reserved2.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  174. Reserved2.Font = Enum.Font.Code
  175. Reserved2.FontSize = Enum.FontSize.Size24
  176. Reserved2.Text = "Reserved"
  177. Reserved2.TextSize = 24
  178. Reserved2.TextStrokeColor3 = Color3.new(1, 0, 0)
  179. Reserved2.TextStrokeTransparency = 0
  180.  
  181. Reserved4.Name = "Reserved4"
  182. Reserved4.Parent = Page_1
  183. Reserved4.BackgroundColor3 = Color3.new(1, 0, 0)
  184. Reserved4.BorderSizePixel = 0
  185. Reserved4.Position = UDim2.new(0, 350, 0, 75)
  186. Reserved4.Size = UDim2.new(0, 150, 0, 50)
  187. Reserved4.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  188. Reserved4.Font = Enum.Font.Code
  189. Reserved4.FontSize = Enum.FontSize.Size24
  190. Reserved4.Text = "Reserved"
  191. Reserved4.TextSize = 22
  192. Reserved4.TextStrokeColor3 = Color3.new(1, 0, 0)
  193. Reserved4.TextStrokeTransparency = 0
  194.  
  195. GodShip.Name = "GodShip"
  196. GodShip.Parent = Page_1
  197. GodShip.BackgroundColor3 = Color3.new(1, 0, 0)
  198. GodShip.BorderSizePixel = 0
  199. GodShip.Position = UDim2.new(0, 175, 0, 0)
  200. GodShip.Size = UDim2.new(0, 150, 0, 50)
  201. GodShip.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  202. GodShip.Font = Enum.Font.Code
  203. GodShip.FontSize = Enum.FontSize.Size24
  204. GodShip.Text = "God_WarShip"
  205. GodShip.TextSize = 22
  206. GodShip.TextStrokeColor3 = Color3.new(1, 0, 0)
  207. GodShip.TextStrokeTransparency = 0
  208. GodShip.MouseButton1Click:connect(function()
  209. WS.MaxSpeed.Value = 50
  210. WS.BulletStrength.Value = 5000
  211. WS.ReloadSpeed.Value = 0.1
  212. WS.MaxArmor.Value = 50000000
  213. WS.CurrentArmor.Value = 5000000
  214. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement