Advertisement
Harry989

HappyXploitz

Dec 11th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.42 KB | None | 0 0
  1. -- Made By Harrychatwin
  2.  
  3. -- Objects
  4.  
  5. local HappyXploitz = Instance.new("ScreenGui")
  6. local LoginFrame = Instance.new("Frame")
  7. local LTopBar = Instance.new("Frame")
  8. local LTitle = Instance.new("TextLabel")
  9. local UsernameBox = Instance.new("TextBox")
  10. local PasswordBox = Instance.new("TextBox")
  11. local LoginButton = Instance.new("TextButton")
  12. local Incorrect = Instance.new("TextLabel")
  13. local MainFrame = Instance.new("Frame")
  14. local MTopBar = Instance.new("Frame")
  15. local ScriptScroller = Instance.new("ScrollingFrame")
  16. local ScriptText = Instance.new("TextBox")
  17. local ExecuteButton = Instance.new("TextButton")
  18. local MTitle = Instance.new("TextLabel")
  19. local MCloseButton = Instance.new("TextButton")
  20. local PresetButton = Instance.new("TextButton")
  21. local OpenFrame = Instance.new("Frame")
  22. local OpenButton = Instance.new("TextButton")
  23. local PresetFrame = Instance.new("Frame")
  24. local PTopBar = Instance.new("Frame")
  25. local PCloseButton = Instance.new("TextButton")
  26. local GrabV4 = Instance.new("TextButton")
  27. local Tk = Instance.new("TextButton")
  28. local Glock = Instance.new("TextButton")
  29. local TKEK = Instance.new("TextButton")
  30. local Admin = Instance.new("TextButton")
  31. local SCP106 = Instance.new("TextButton")
  32.  
  33. -- Properties
  34.  
  35. HappyXploitz.Name = "HappyXploitz"
  36. HappyXploitz.Parent = game.Players.LocalPlayer.PlayerGui
  37.  
  38. LoginFrame.Name = "LoginFrame"
  39. LoginFrame.Parent = HappyXploitz
  40. LoginFrame.Active = true
  41. LoginFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  42. LoginFrame.BorderColor3 = Color3.new(0, 0, 0)
  43. LoginFrame.Draggable = true
  44. LoginFrame.Position = UDim2.new(0.0178644508, 0, 0.144537389, 0)
  45. LoginFrame.Selectable = true
  46. LoginFrame.Size = UDim2.new(0, 434, 0, 495)
  47.  
  48. LTopBar.Name = "LTopBar"
  49. LTopBar.Parent = LoginFrame
  50. LTopBar.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  51. LTopBar.BorderSizePixel = 0
  52. LTopBar.Size = UDim2.new(0, 434, 0, 34)
  53.  
  54. LTitle.Name = "LTitle"
  55. LTitle.Parent = LoginFrame
  56. LTitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  57. LTitle.BorderSizePixel = 0
  58. LTitle.Position = UDim2.new(0.110599078, 0, 0.0808080882, 0)
  59. LTitle.Size = UDim2.new(0, 338, 0, 130)
  60. LTitle.Font = Enum.Font.SourceSansBold
  61. LTitle.FontSize = Enum.FontSize.Size14
  62. LTitle.Text = "HappyXploitz Gui"
  63. LTitle.TextColor3 = Color3.new(1, 1, 1)
  64. LTitle.TextScaled = true
  65. LTitle.TextSize = 14
  66. LTitle.TextWrapped = true
  67.  
  68. UsernameBox.Name = "UsernameBox"
  69. UsernameBox.Parent = LoginFrame
  70. UsernameBox.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  71. UsernameBox.BorderColor3 = Color3.new(0, 0, 0)
  72. UsernameBox.Position = UDim2.new(0.184331805, 0, 0.452525258, 0)
  73. UsernameBox.Size = UDim2.new(0, 275, 0, 62)
  74. UsernameBox.Font = Enum.Font.SourceSansBold
  75. UsernameBox.FontSize = Enum.FontSize.Size14
  76. UsernameBox.Text = "Username"
  77. UsernameBox.TextColor3 = Color3.new(1, 1, 1)
  78. UsernameBox.TextScaled = true
  79. UsernameBox.TextSize = 14
  80. UsernameBox.TextWrapped = true
  81.  
  82. PasswordBox.Name = "PasswordBox"
  83. PasswordBox.Parent = LoginFrame
  84. PasswordBox.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  85. PasswordBox.BorderColor3 = Color3.new(0, 0, 0)
  86. PasswordBox.Position = UDim2.new(0.184331805, 0, 0.618181825, 0)
  87. PasswordBox.Size = UDim2.new(0, 275, 0, 62)
  88. PasswordBox.Font = Enum.Font.SourceSansBold
  89. PasswordBox.FontSize = Enum.FontSize.Size14
  90. PasswordBox.Text = "Password"
  91. PasswordBox.TextColor3 = Color3.new(1, 1, 1)
  92. PasswordBox.TextScaled = true
  93. PasswordBox.TextSize = 14
  94. PasswordBox.TextWrapped = true
  95.  
  96. LoginButton.Name = "LoginButton"
  97. LoginButton.Parent = LoginFrame
  98. LoginButton.BackgroundColor3 = Color3.new(0, 1, 0)
  99. LoginButton.BorderColor3 = Color3.new(0, 0, 0)
  100. LoginButton.Position = UDim2.new(0.0990783423, 0, 0.775757551, 0)
  101. LoginButton.Size = UDim2.new(0, 343, 0, 92)
  102. LoginButton.Font = Enum.Font.SourceSansBold
  103. LoginButton.FontSize = Enum.FontSize.Size14
  104. LoginButton.Text = "Login"
  105. LoginButton.TextColor3 = Color3.new(1, 1, 1)
  106. LoginButton.TextScaled = true
  107. LoginButton.TextSize = 14
  108. LoginButton.TextWrapped = true
  109. LoginButton.MouseButton1Down:connect(function()
  110. if UsernameBox.Text == "Harrychatwin" and PasswordBox.Text == "Test" then
  111. MainFrame.Visible = true
  112. LoginFrame.Visible = false
  113. else
  114. Incorrect.Visible = true
  115. wait (1)
  116. Incorrect.Visible = false
  117. end
  118. end)
  119. Incorrect.Name = "Incorrect"
  120. Incorrect.Parent = LoginFrame
  121. Incorrect.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  122. Incorrect.BorderSizePixel = 0
  123. Incorrect.Position = UDim2.new(0.389400899, 0, 0.343434334, 0)
  124. Incorrect.Size = UDim2.new(0, 97, 0, 39)
  125. Incorrect.Visible = false
  126. Incorrect.Font = Enum.Font.SourceSansBold
  127. Incorrect.FontSize = Enum.FontSize.Size14
  128. Incorrect.Text = "incorrect"
  129. Incorrect.TextColor3 = Color3.new(1, 1, 1)
  130. Incorrect.TextScaled = true
  131. Incorrect.TextSize = 14
  132. Incorrect.TextWrapped = true
  133.  
  134. MainFrame.Name = "MainFrame"
  135. MainFrame.Parent = HappyXploitz
  136. MainFrame.Active = true
  137. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  138. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  139. MainFrame.Position = UDim2.new(0.294564545, 0, 0.0480631143, 0)
  140. MainFrame.Selectable = true
  141. MainFrame.Size = UDim2.new(0, 631, 0, 631)
  142. MainFrame.Visible = false
  143.  
  144. MTopBar.Name = "MTopBar"
  145. MTopBar.Parent = MainFrame
  146. MTopBar.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  147. MTopBar.BorderSizePixel = 0
  148. MTopBar.Size = UDim2.new(0, 631, 0, 34)
  149.  
  150. ScriptScroller.Name = "ScriptScroller"
  151. ScriptScroller.Parent = MainFrame
  152. ScriptScroller.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  153. ScriptScroller.BorderColor3 = Color3.new(0, 0, 0)
  154. ScriptScroller.Position = UDim2.new(0.105388276, 0, 0.126782894, 0)
  155. ScriptScroller.Size = UDim2.new(0, 499, 0, 366)
  156. ScriptScroller.CanvasSize = UDim2.new(0, 0, 100, 0)
  157.  
  158. ScriptText.Name = "ScriptText"
  159. ScriptText.Parent = ScriptScroller
  160. ScriptText.BackgroundColor3 = Color3.new(1, 1, 1)
  161. ScriptText.BackgroundTransparency = 1
  162. ScriptText.BorderSizePixel = 0
  163. ScriptText.Size = UDim2.new(0, 485, 0, 1000)
  164. ScriptText.Font = Enum.Font.SourceSansBold
  165. ScriptText.FontSize = Enum.FontSize.Size24
  166. ScriptText.Text = "Type Lua Here..."
  167. ScriptText.TextColor3 = Color3.new(1, 1, 1)
  168. ScriptText.TextSize = 20
  169. ScriptText.TextWrapped = true
  170. ScriptText.TextXAlignment = Enum.TextXAlignment.Left
  171. ScriptText.TextYAlignment = Enum.TextYAlignment.Top
  172.  
  173. ExecuteButton.Name = "ExecuteButton"
  174. ExecuteButton.Parent = MainFrame
  175. ExecuteButton.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  176. ExecuteButton.BorderColor3 = Color3.new(0, 0, 0)
  177. ExecuteButton.Position = UDim2.new(0.105388269, 0, 0.838351786, 0)
  178. ExecuteButton.Size = UDim2.new(0, 218, 0, 63)
  179. ExecuteButton.Font = Enum.Font.SourceSansBold
  180. ExecuteButton.FontSize = Enum.FontSize.Size14
  181. ExecuteButton.Text = "Execute"
  182. ExecuteButton.TextColor3 = Color3.new(1, 1, 1)
  183. ExecuteButton.TextScaled = true
  184. ExecuteButton.TextSize = 14
  185. ExecuteButton.TextWrapped = true
  186. ExecuteButton.MouseButton1Down:connect(function()
  187. loadstring(ScriptText.Text)()
  188. end)
  189. MTitle.Name = "MTitle"
  190. MTitle.Parent = MainFrame
  191. MTitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  192. MTitle.BackgroundTransparency = 1
  193. MTitle.BorderSizePixel = 0
  194. MTitle.Position = UDim2.new(0.232171148, 0, 0.706814528, 0)
  195. MTitle.Size = UDim2.new(0, 338, 0, 83)
  196. MTitle.Font = Enum.Font.SourceSansBold
  197. MTitle.FontSize = Enum.FontSize.Size14
  198. MTitle.Text = "HappyXploitz Gui"
  199. MTitle.TextColor3 = Color3.new(1, 1, 1)
  200. MTitle.TextScaled = true
  201. MTitle.TextSize = 14
  202. MTitle.TextWrapped = true
  203.  
  204. MCloseButton.Name = "MCloseButton"
  205. MCloseButton.Parent = MainFrame
  206. MCloseButton.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  207. MCloseButton.BorderColor3 = Color3.new(0, 0, 0)
  208. MCloseButton.BorderSizePixel = 0
  209. MCloseButton.Position = UDim2.new(0.94770205, 0, 0, 0)
  210. MCloseButton.Size = UDim2.new(0, 33, 0, 33)
  211. MCloseButton.Font = Enum.Font.SourceSansBold
  212. MCloseButton.FontSize = Enum.FontSize.Size14
  213. MCloseButton.Text = "-"
  214. MCloseButton.TextColor3 = Color3.new(1, 1, 1)
  215. MCloseButton.TextScaled = true
  216. MCloseButton.TextSize = 14
  217. MCloseButton.TextWrapped = true
  218. MCloseButton.MouseButton1Down:connect(function()
  219. MainFrame.Visible = false
  220. OpenFrame.Visible = true
  221. end)
  222. PresetButton.Name = "PresetButton"
  223. PresetButton.Parent = MainFrame
  224. PresetButton.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  225. PresetButton.BorderColor3 = Color3.new(0, 0, 0)
  226. PresetButton.Position = UDim2.new(0.550713122, 0, 0.838351786, 0)
  227. PresetButton.Size = UDim2.new(0, 218, 0, 63)
  228. PresetButton.Font = Enum.Font.SourceSansBold
  229. PresetButton.FontSize = Enum.FontSize.Size14
  230. PresetButton.Text = "Pre-Set Scripts"
  231. PresetButton.TextColor3 = Color3.new(1, 1, 1)
  232. PresetButton.TextScaled = true
  233. PresetButton.TextSize = 14
  234. PresetButton.TextWrapped = true
  235. PresetButton.MouseButton1Down:connect(function()
  236. MainFrame.Visible = false
  237. PresetFrame.Visible = true
  238. end)
  239. OpenFrame.Name = "OpenFrame"
  240. OpenFrame.Parent = HappyXploitz
  241. OpenFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  242. OpenFrame.BorderColor3 = Color3.new(0, 0, 0)
  243. OpenFrame.Position = UDim2.new(0.94939208, 0, 0.938307047, 0)
  244. OpenFrame.Size = UDim2.new(0, 70, 0, 35)
  245. OpenFrame.Visible = false
  246.  
  247. OpenButton.Name = "OpenButton"
  248. OpenButton.Parent = OpenFrame
  249. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  250. OpenButton.BackgroundTransparency = 1
  251. OpenButton.BorderSizePixel = 0
  252. OpenButton.Size = UDim2.new(0, 70, 0, 35)
  253. OpenButton.Font = Enum.Font.SourceSansBold
  254. OpenButton.FontSize = Enum.FontSize.Size14
  255. OpenButton.Text = "Open"
  256. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  257. OpenButton.TextScaled = true
  258. OpenButton.TextSize = 14
  259. OpenButton.TextWrapped = true
  260. OpenButton.MouseButton1Down:connect(function()
  261. MainFrame.Visible = true
  262. OpenFrame.Visible = false
  263. end)
  264. PresetFrame.Name = "PresetFrame"
  265. PresetFrame.Parent = HappyXploitz
  266. PresetFrame.Active = true
  267. PresetFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  268. PresetFrame.BorderColor3 = Color3.new(0, 0, 0)
  269. PresetFrame.Draggable = true
  270. PresetFrame.Position = UDim2.new(0.294564545, 0, 0.0480631143, 0)
  271. PresetFrame.Selectable = true
  272. PresetFrame.Visible = false
  273. PresetFrame.Size = UDim2.new(0, 631, 0, 629)
  274.  
  275. PTopBar.Name = "PTopBar"
  276. PTopBar.Parent = PresetFrame
  277. PTopBar.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  278. PTopBar.BorderSizePixel = 0
  279. PTopBar.Size = UDim2.new(0, 631, 0, 34)
  280.  
  281. PCloseButton.Name = "PCloseButton"
  282. PCloseButton.Parent = PresetFrame
  283. PCloseButton.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  284. PCloseButton.BorderColor3 = Color3.new(0, 0, 0)
  285. PCloseButton.BorderSizePixel = 0
  286. PCloseButton.Position = UDim2.new(0.94770205, 0, 0, 0)
  287. PCloseButton.Size = UDim2.new(0, 33, 0, 33)
  288. PCloseButton.Font = Enum.Font.SourceSansBold
  289. PCloseButton.FontSize = Enum.FontSize.Size14
  290. PCloseButton.Text = "X"
  291. PCloseButton.TextColor3 = Color3.new(1, 1, 1)
  292. PCloseButton.TextScaled = true
  293. PCloseButton.TextSize = 14
  294. PCloseButton.TextWrapped = true
  295. PCloseButton.MouseButton1Down:connect(function()
  296. PresetFrame.Visible = false
  297. MainFrame.Visible = true
  298. end)
  299. GrabV4.Name = "GrabV4"
  300. GrabV4.Parent = PresetFrame
  301. GrabV4.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  302. GrabV4.BorderColor3 = Color3.new(0, 0, 0)
  303. GrabV4.Position = UDim2.new(0.341521382, 0, 0.0540540554, 0)
  304. GrabV4.Size = UDim2.new(0, 200, 0, 50)
  305. GrabV4.Font = Enum.Font.SourceSans
  306. GrabV4.FontSize = Enum.FontSize.Size14
  307. GrabV4.Text = "GrabV4"
  308. GrabV4.TextColor3 = Color3.new(1, 1, 1)
  309. GrabV4.TextScaled = true
  310. GrabV4.TextSize = 14
  311. GrabV4.TextWrapped = true
  312. GrabV4.MouseButton1Down:connect(function()
  313. loadstring(game:GetObjects('rbxassetid://01232098832')[1].Source)()
  314. end)
  315. Tk.Name = "Tk"
  316. Tk.Parent = PresetFrame
  317. Tk.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  318. Tk.BorderColor3 = Color3.new(0, 0, 0)
  319. Tk.Position = UDim2.new(-0.00079241395, 0, 0.0540540554, 0)
  320. Tk.Size = UDim2.new(0, 200, 0, 50)
  321. Tk.Font = Enum.Font.SourceSans
  322. Tk.FontSize = Enum.FontSize.Size14
  323. Tk.Text = "Telekenises"
  324. Tk.TextColor3 = Color3.new(1, 1, 1)
  325. Tk.TextScaled = true
  326. Tk.TextSize = 14
  327. Tk.TextWrapped = true
  328. Tk.MouseButton1Down:connect(function()
  329. loadstring(game:GetObjects('rbxassetid://1232413562')[1].Source)()
  330. end)
  331. Glock.Name = "Glock"
  332. Glock.Parent = PresetFrame
  333. Glock.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  334. Glock.BorderColor3 = Color3.new(0, 0, 0)
  335. Glock.Position = UDim2.new(0.682250381, 0, 0.0540540591, 0)
  336. Glock.Size = UDim2.new(0, 200, 0, 50)
  337. Glock.Font = Enum.Font.SourceSans
  338. Glock.FontSize = Enum.FontSize.Size14
  339. Glock.Text = "Glock"
  340. Glock.TextColor3 = Color3.new(1, 1, 1)
  341. Glock.TextScaled = true
  342. Glock.TextSize = 14
  343. Glock.TextWrapped = true
  344. Glock.MouseButton1Down:connect(function()
  345. loadstring(game:GetObjects('rbxassetid://1232505665')[1].Source)()
  346. end)
  347. TKEK.Name = "TKEK"
  348. TKEK.Parent = PresetFrame
  349. TKEK.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  350. TKEK.BorderColor3 = Color3.new(0, 0, 0)
  351. TKEK.Position = UDim2.new(0.341521382, 0, 0.213036567, 0)
  352. TKEK.Size = UDim2.new(0, 200, 0, 50)
  353. TKEK.Font = Enum.Font.SourceSans
  354. TKEK.FontSize = Enum.FontSize.Size14
  355. TKEK.Text = "TOPK3K 4.0"
  356. TKEK.TextColor3 = Color3.new(1, 1, 1)
  357. TKEK.TextScaled = true
  358. TKEK.TextSize = 14
  359. TKEK.TextWrapped = true
  360. TKEK.MouseButton1Down:connect(function()
  361. loadstring(game:GetObjects('rbxassetid://1232183406')[1].Source)()
  362. end)
  363. Admin.Name = "Admin"
  364. Admin.Parent = PresetFrame
  365. Admin.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  366. Admin.BorderColor3 = Color3.new(0, 0, 0)
  367. Admin.Position = UDim2.new(-0.00079241395, 0, 0.213036567, 0)
  368. Admin.Size = UDim2.new(0, 200, 0, 50)
  369. Admin.Font = Enum.Font.SourceSans
  370. Admin.FontSize = Enum.FontSize.Size14
  371. Admin.Text = "Rocky2u's Admin"
  372. Admin.TextColor3 = Color3.new(1, 1, 1)
  373. Admin.TextScaled = true
  374. Admin.TextSize = 14
  375. Admin.TextWrapped = true
  376. Admin.MouseButton1Down:connect(function()
  377. loadstring(game:GetObjects('rbxassetid://295850902')[1].Source)()
  378. end)
  379. SCP106.Name = "SCP106"
  380. SCP106.Parent = PresetFrame
  381. SCP106.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  382. SCP106.BorderColor3 = Color3.new(0, 0, 0)
  383. SCP106.Position = UDim2.new(0.682250381, 0, 0.213036567, 0)
  384. SCP106.Size = UDim2.new(0, 200, 0, 50)
  385. SCP106.Font = Enum.Font.SourceSans
  386. SCP106.FontSize = Enum.FontSize.Size14
  387. SCP106.Text = "SCP-106"
  388. SCP106.TextColor3 = Color3.new(1, 1, 1)
  389. SCP106.TextScaled = true
  390. SCP106.TextSize = 14
  391. SCP106.TextWrapped = true
  392. SCP106.MouseButton1Down:connect(function()
  393. loadstring(game:GetObjects('rbxassetid://01234835125')[1].Source)()
  394. end)
  395.  
  396. print('HappyXploitz Load Successfull')
  397. wait (1)
  398. print('Made By Harrychatwin')
  399. print('Enjoy!!!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement