Advertisement
Guest User

gsdrthesdtgrdefbtreh

a guest
Dec 7th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 26.72 KB | None | 0 0
  1. --Login
  2.  
  3. main =  Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  4. main.Name = ("ZanikesHubLogin")
  5.  
  6. mainf = Instance.new("Frame",main)
  7. mainf.Name = ("mainFrame")
  8.  
  9. zanhub = Instance.new("TextLabel",mainf)
  10. zanhub.Name = ("zanHub")
  11.  
  12. key = Instance.new("TextBox",mainf)
  13. key.Name = ("keyBox")
  14.  
  15. login = Instance.new("TextButton",mainf)
  16. login.Name = ("loginButton")
  17.  
  18. wrong = Instance.new("TextLabel",mainf)
  19. wrong.Name = ("wrong")
  20.  
  21. destroyb = Instance.new("TextButton",mainf)
  22. destroyb.Name = ("destroyButton")
  23.  
  24. --HUB
  25.  
  26. hubsg = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  27. hubsg.Name = ("ZanikesHub")
  28.  
  29. dragbar = Instance.new("TextLabel",hubsg)
  30. dragbar.Name = ("dragbar")
  31.  
  32. hubh = Instance.new("Frame",dragbar)
  33. hubh.Name = ("hubHome")
  34.  
  35. localf = Instance.new("Frame",dragbar)
  36. localf.Name = ("localFrame")
  37.  
  38. czanf = Instance.new("Frame",dragbar)
  39. czanf.Name = ("creditsFrame")
  40.  
  41. czant = Instance.new("TextLabel",czanf)
  42. czant.Name = ("creditsFrameTitle")
  43.  
  44. cred1 = Instance.new("TextLabel",czanf)
  45. cred1.Name = ("creditOne")
  46.  
  47. localt = Instance.new("TextLabel",localf)
  48. localt.Name = ("localFrameTitle")
  49.  
  50. hubth = Instance.new("TextLabel",hubh)
  51. hubth.Name = ("hubTitle")
  52.  
  53. phaxx = Instance.new("TextButton",hubh)
  54. phaxx.Name = ("PrisonHaxx")
  55.  
  56. oc = Instance.new("TextButton",hubsg)
  57. oc.Name = ("Open/Close")
  58.  
  59. menub = Instance.new("TextButton",dragbar)
  60. menub.Name = ("menuButton")
  61.  
  62. dark = Instance.new("Frame",dragbar)
  63. dark.Name = ("dark")
  64.  
  65. menuf = Instance.new("Frame",dragbar)
  66. menuf.Name = ("menuFrame")
  67.  
  68. homeb = Instance.new("TextButton",menuf)
  69. homeb.Name = ("homeButton")
  70.  
  71. locala = Instance.new("TextButton",menuf)
  72. locala.Name = ("localButton")
  73.  
  74. xout = Instance.new("TextButton",dragbar)
  75. xout.Name = ("xOut")
  76.  
  77. jbarb = Instance.new("TextButton",hubh)
  78. jbarb.Name = ("JailbreakAutoRobButton")
  79.  
  80. apocb = Instance.new("TextButton",hubh)
  81. apocb.Name = ("apocButton")
  82.  
  83. rfgb = Instance.new("TextButton",hubh)
  84. rfgb.Name = ("RFGButton")
  85.  
  86. valueb = Instance.new("TextBox",localf)
  87. valueb.Name = ("valueBox")
  88.  
  89. speed = Instance.new("TextButton",localf)
  90. speed.Name = ("setSpeed")
  91.  
  92. jump = Instance.new("TextButton",localf)
  93. jump.Name = ("setJumpPower")
  94.  
  95. reset = Instance.new("TextButton",localf)
  96. reset.Name = ("resetJAS")
  97.  
  98. rfog = Instance.new("TextButton",localf)
  99. rfog.Name = ("removeFog")
  100.  
  101. bright = Instance.new("TextButton",localf)
  102. bright.Name = ("fullBright")
  103.  
  104. noc = Instance.new("TextButton",localf)
  105. noc.Name = ("Noclip")
  106.  
  107. airw = Instance.new("TextButton",localf)
  108. airw.Name = ("airWalk")
  109.  
  110. fly = Instance.new("TextButton",localf)
  111. fly.Name = ("getFlyTool")
  112.  
  113. flyr = Instance.new("TextButton",localf)
  114. flyr.Name = ("removeFlyTool")
  115.  
  116. aimb = Instance.new("TextButton",localf)
  117. aimb.Name = ("aimbot")
  118.  
  119. aimr = Instance.new("TextButton",localf)
  120. aimr.Name = ("removeAimbot")
  121.  
  122. czan = Instance.new("TextButton",menuf)
  123. czan.Name = ("ZanikesHubCreidts")
  124.  
  125. mors = Instance.new("TextLabel",menuf)
  126. mors.Name = ("moreSoon")
  127.  
  128. --GUI Appearance
  129.  
  130. mainf.Size = UDim2.new(0,500,0,315)
  131. mainf.Position = UDim2.new(0.01,0,0.01,0)
  132. mainf.BackgroundColor3 = Color3.fromRGB(30,30,30)
  133. mainf.BorderSizePixel = 2
  134. mainf.BorderColor3 = Color3.fromRGB(255,7,7)
  135. mainf.Active = true
  136. mainf.Draggable = true
  137.  
  138. zanhub.Size = UDim2.new(0,500,0,50)
  139. zanhub.Position = UDim2.new(0,0,0,0)
  140. zanhub.BackgroundColor3 = Color3.fromRGB(30,30,30)
  141. zanhub.BorderSizePixel = 2
  142. zanhub.BorderColor3 = Color3.fromRGB(255,7,7)
  143. zanhub.Text = ("Zanikes HUB - Login")
  144. zanhub.TextColor3 = Color3.new(1,1,1)
  145. zanhub.TextScaled = true
  146. zanhub.Font = Enum.Font.GothamBold
  147.  
  148. key.Size = UDim2.new(0,400,0,50)
  149. key.Position = UDim2.new(0,50,0,75)
  150. key.BackgroundColor3 = Color3.fromRGB(30,30,30)
  151. key.BorderSizePixel = 2
  152. key.BorderColor3 = Color3.fromRGB(255,7,7)
  153. key.Text = ("Key")
  154. key.TextColor3 = Color3.new(1,1,1)
  155. key.TextScaled = true
  156. key.Font = Enum.Font.GothamBold
  157.  
  158. login.Size = UDim2.new(0,200,0,50)
  159. login.Position = UDim2.new(0,150,0,225)
  160. login.BackgroundColor3 = Color3.fromRGB(30,30,30)
  161. login.BorderSizePixel = 2
  162. login.BorderColor3 = Color3.fromRGB(255,7,7)
  163. login.Text = ("Login")
  164. login.TextColor3 = Color3.new(1,1,1)
  165. login.TextScaled = true
  166. login.Font = Enum.Font.GothamBold
  167.  
  168. wrong.Size = UDim2.new(0,200,0,75)
  169. wrong.Position = UDim2.new(0,150,0,130)
  170. wrong.BackgroundColor3 = Color3.fromRGB(30,30,30)
  171. wrong.BorderSizePixel = 2
  172. wrong.BorderColor3 = Color3.fromRGB(255,7,7)
  173. wrong.Text = ("Incorrect key!")
  174. wrong.TextColor3 = Color3.new(1,1,1)
  175. wrong.TextScaled = true
  176. wrong.Font = Enum.Font.GothamBold
  177. wrong.BackgroundTransparency = 1
  178. wrong.Visible = false
  179.  
  180. destroyb.Size = UDim2.new(0,100,0,50)
  181. destroyb.Position = UDim2.new(0,400,0,265)
  182. destroyb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  183. destroyb.BorderSizePixel = 2
  184. destroyb.BorderColor3 = Color3.fromRGB(255,7,7)
  185. destroyb.Text = ("Destroy Gui")
  186. destroyb.TextColor3 = Color3.new(1,1,1)
  187. destroyb.TextScaled = true
  188. destroyb.Font = Enum.Font.GothamBold
  189.  
  190. hubsg.Enabled = false
  191.  
  192. dragbar.Size = UDim2.new(0,500,0,20)
  193. dragbar.Position = UDim2.new(0.01,0,0.01,0)
  194. dragbar.BackgroundColor3 = Color3.fromRGB(30,30,30)
  195. dragbar.BorderSizePixel = 2
  196. dragbar.BorderColor3 = Color3.fromRGB(255,7,7)
  197. dragbar.Text = ("--Drag--")
  198. dragbar.TextColor3 = Color3.new(1,1,1)
  199. dragbar.TextScaled = true
  200. dragbar.Font = Enum.Font.GothamBold
  201. dragbar.Active = true
  202. dragbar.Draggable = true
  203.  
  204. hubh.Size = UDim2.new(0,500,0,300)
  205. hubh.Position = UDim2.new(0,0,1.05,0)
  206. hubh.BackgroundColor3 = Color3.fromRGB(30,30,30)
  207. hubh.BorderSizePixel = 2
  208. hubh.BorderColor3 = Color3.fromRGB(255,7,7)
  209.  
  210. phaxx.Size = UDim2.new(0,450,0,50)
  211. phaxx.Position = UDim2.new(0,25,0,75)
  212. phaxx.BackgroundColor3 = Color3.fromRGB(30,30,30)
  213. phaxx.BorderSizePixel = 2
  214. phaxx.BorderColor3 = Color3.fromRGB(255,7,7)
  215. phaxx.Text = ("PrisonHaxx")
  216. phaxx.TextColor3 = Color3.new(1,1,1)
  217. phaxx.Font = Enum.Font.GothamBold
  218. phaxx.TextScaled = true
  219.  
  220. jbarb.Size = UDim2.new(0,450,0,50)
  221. jbarb.Position = UDim2.new(0,25,0,125)
  222. jbarb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  223. jbarb.BorderSizePixel = 2
  224. jbarb.BorderColor3 = Color3.fromRGB(255,7,7)
  225. jbarb.Text = ("Jailbreak Auto Rob")
  226. jbarb.TextColor3 = Color3.new(1,1,1)
  227. jbarb.Font = Enum.Font.GothamBold
  228. jbarb.TextScaled = true
  229.  
  230. apocb.Size = UDim2.new(0,450,0,50)
  231. apocb.Position = UDim2.new(0,25,0,175)
  232. apocb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  233. apocb.BorderSizePixel = 2
  234. apocb.BorderColor3 = Color3.fromRGB(255,7,7)
  235. apocb.Text = ("My Apoc Gui")
  236. apocb.TextColor3 = Color3.new(1,1,1)
  237. apocb.Font = Enum.Font.GothamBold
  238. apocb.TextScaled = true
  239.  
  240. rfgb.Size = UDim2.new(0,450,0,50)
  241. rfgb.Position = UDim2.new(0,25,0,225)
  242. rfgb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  243. rfgb.BorderSizePixel = 2
  244. rfgb.BorderColor3 = Color3.fromRGB(255,7,7)
  245. rfgb.Text = ("RFG - By M3Talic")
  246. rfgb.TextColor3 = Color3.new(1,1,1)
  247. rfgb.Font = Enum.Font.GothamBold
  248. rfgb.TextScaled = true
  249.  
  250. hubth.Size = UDim2.new(0,500,0,50)
  251. hubth.Position = UDim2.new(0,0,0,0)
  252. hubth.BackgroundTransparency = 1
  253. hubth.Text = ("Zanikes Hub - Home")
  254. hubth.TextColor3 = Color3.new(1,1,1)
  255. hubth.Font = Enum.Font.GothamBold
  256. hubth.TextScaled = true
  257.  
  258. localt.Size = UDim2.new(0,500,0,50)
  259. localt.Position = UDim2.new(0,0,0,0)
  260. localt.BackgroundTransparency = 1
  261. localt.Text = ("Zanikes Hub - Local Player")
  262. localt.TextColor3 = Color3.new(1,1,1)
  263. localt.Font = Enum.Font.GothamBold
  264. localt.TextScaled = true
  265.  
  266. czant.Size = UDim2.new(0,500,0,50)
  267. czant.Position = UDim2.new(0,0,0,0)
  268. czant.BackgroundTransparency = 1
  269. czant.Text = ("Zanikes Hub - Credits")
  270. czant.TextColor3 = Color3.new(1,1,1)
  271. czant.Font = Enum.Font.GothamBold
  272. czant.TextScaled = true
  273.  
  274. oc.Position = UDim2.new(0,10,0,550)
  275. oc.Size = UDim2.new(0,85,0,30)
  276. oc.BackgroundColor3 = Color3.fromRGB(30,30,30)
  277. oc.BorderSizePixel = 2
  278. oc.BorderColor3 = Color3.fromRGB(255,7,7)
  279. oc.Text = ("Close")
  280. oc.TextColor3 = Color3.new(1,1,1)
  281. oc.TextScaled = true
  282. oc.Font = Enum.Font.GothamBold
  283. oc.BorderSizePixel = 2.5
  284.  
  285. menub.Size = UDim2.new(0,200,0,19)
  286. menub.BackgroundColor3 = Color3.fromRGB(30,30,30)
  287. menub.BorderSizePixel = 2
  288. menub.BorderColor3 = Color3.fromRGB(255,7,7)
  289. menub.Text = ("--Menu--")
  290. menub.TextColor3 = Color3.new(1,1,1)
  291. menub.TextScaled = true
  292. menub.Font = Enum.Font.GothamBold
  293.  
  294. dark.Size = UDim2.new(0,0,0,0)
  295. dark.Position = UDim2.new(0,200,0,20)
  296. dark.BorderSizePixel = 0
  297. dark.BackgroundColor3 = Color3.new(0,0,0)
  298. dark.BackgroundTransparency = 1
  299.  
  300. menuf.Size = UDim2.new(0,200,0,0)
  301. menuf.Position = UDim2.new(0,0,0,20)
  302. menuf.BackgroundColor3 = Color3.fromRGB(30,30,30)
  303. menuf.BorderSizePixel = 0
  304. menuf.BorderColor3 = Color3.fromRGB(255,7,7)
  305.  
  306. homeb.Size = UDim2.new(0,200,0,0)
  307. homeb.BorderSizePixel = 0
  308. homeb.Text = ("")
  309. homeb.TextColor3 = Color3.new(1,1,1)
  310. homeb.Font = Enum.Font.GothamBold
  311. homeb.TextScaled = true
  312. homeb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  313.  
  314. locala.Size = UDim2.new(0,200,0,0)
  315. locala.BorderSizePixel = 0
  316. locala.Text = ("")
  317. locala.TextColor3 = Color3.new(1,1,1)
  318. locala.Font = Enum.Font.GothamBold
  319. locala.TextScaled = true
  320. locala.BackgroundColor3 = Color3.fromRGB(30,30,30)
  321.  
  322. czan.Size = UDim2.new(0,200,0,0)
  323. czan.BorderSizePixel = 0
  324. czan.Text = ("")
  325. czan.TextColor3 = Color3.new(1,1,1)
  326. czan.Font = Enum.Font.GothamBold
  327. czan.TextScaled = true
  328. czan.BackgroundColor3 = Color3.fromRGB(30,30,30)
  329.  
  330. localf.Size = UDim2.new(0,500,0,300)
  331. localf.Position = UDim2.new(0,0,1.05,0)
  332. localf.BackgroundColor3 = Color3.fromRGB(30,30,30)
  333. localf.BorderSizePixel = 2
  334. localf.BorderColor3 = Color3.fromRGB(255,7,7)
  335. localf.Visible = false
  336.  
  337. czanf.Size = UDim2.new(0,500,0,300)
  338. czanf.Position = UDim2.new(0,0,1.05,0)
  339. czanf.BackgroundColor3 = Color3.fromRGB(30,30,30)
  340. czanf.BorderSizePixel = 2
  341. czanf.BorderColor3 = Color3.fromRGB(255,7,7)
  342. czanf.Visible = false
  343.  
  344. xout.Size = UDim2.new(0,20,0,19)
  345. xout.Position = UDim2.new(0,480,0,0)
  346. xout.BackgroundColor3 = Color3.fromRGB(30,30,30)
  347. xout.BorderSizePixel = 2
  348. xout.BorderColor3 = Color3.fromRGB(255,7,7)
  349. xout.Text = ("X")
  350. xout.TextColor3 = Color3.new(1,1,1)
  351. xout.TextScaled = true
  352. xout.Font = Enum.Font.GothamBold
  353.  
  354. valueb.Size = UDim2.new(0,80,0,30)
  355. valueb.Position = UDim2.new(0,50,0,50)
  356. valueb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  357. valueb.BorderSizePixel = 2
  358. valueb.BorderColor3 = Color3.fromRGB(255,7,7)
  359. valueb.Text = ("[Value]")
  360. valueb.TextColor3 = Color3.new(1,1,1)
  361. valueb.TextScaled = true
  362. valueb.Font = Enum.Font.GothamBold
  363.  
  364. speed.Size = UDim2.new(0,80,0,30)
  365. speed.Position = UDim2.new(0,50,0,100)
  366. speed.BackgroundColor3 = Color3.fromRGB(30,30,30)
  367. speed.BorderSizePixel = 2
  368. speed.BorderColor3 = Color3.fromRGB(255,7,7)
  369. speed.Text = ("Set Walkspeed")
  370. speed.TextColor3 = Color3.new(1,1,1)
  371. speed.TextScaled = true
  372. speed.Font = Enum.Font.GothamBold
  373.  
  374. jump.Size = UDim2.new(0,80,0,30)
  375. jump.Position = UDim2.new(0,50,0,150)
  376. jump.BackgroundColor3 = Color3.fromRGB(30,30,30)
  377. jump.BorderSizePixel = 2
  378. jump.BorderColor3 = Color3.fromRGB(255,7,7)
  379. jump.Text = ("Set Jump Power")
  380. jump.TextColor3 = Color3.new(1,1,1)
  381. jump.TextScaled = true
  382. jump.Font = Enum.Font.GothamBold
  383.  
  384. reset.Size = UDim2.new(0,80,0,30)
  385. reset.Position = UDim2.new(0,50,0,200)
  386. reset.BackgroundColor3 = Color3.fromRGB(30,30,30)
  387. reset.BorderSizePixel = 2
  388. reset.BorderColor3 = Color3.fromRGB(255,7,7)
  389. reset.Text = ("Reset Jump and Speed")
  390. reset.TextColor3 = Color3.new(1,1,1)
  391. reset.TextScaled = true
  392. reset.Font = Enum.Font.GothamBold
  393.  
  394. rfog.Size = UDim2.new(0,80,0,30)
  395. rfog.Position = UDim2.new(0,50,0,250)
  396. rfog.BackgroundColor3 = Color3.fromRGB(30,30,30)
  397. rfog.BorderSizePixel = 2
  398. rfog.BorderColor3 = Color3.fromRGB(255,7,7)
  399. rfog.Text = ("Remove Fog")
  400. rfog.TextColor3 = Color3.new(1,1,1)
  401. rfog.TextScaled = true
  402. rfog.Font = Enum.Font.GothamBold
  403.  
  404. bright.Size = UDim2.new(0,80,0,30)
  405. bright.Position = UDim2.new(0,200,0,50)
  406. bright.BackgroundColor3 = Color3.fromRGB(30,30,30)
  407. bright.BorderSizePixel = 2
  408. bright.BorderColor3 = Color3.fromRGB(255,7,7)
  409. bright.Text = ("FullBright")
  410. bright.TextColor3 = Color3.new(1,1,1)
  411. bright.TextScaled = true
  412. bright.Font = Enum.Font.GothamBold
  413.  
  414. noc.Size = UDim2.new(0,80,0,30)
  415. noc.Position = UDim2.new(0,200,0,100)
  416. noc.BackgroundColor3 = Color3.fromRGB(30,30,30)
  417. noc.BorderSizePixel = 2
  418. noc.BorderColor3 = Color3.fromRGB(255,7,7)
  419. noc.Text = ("Noclip: Off")
  420. noc.TextColor3 = Color3.new(1,1,1)
  421. noc.TextScaled = true
  422. noc.Font = Enum.Font.GothamBold
  423.  
  424. airw.Size = UDim2.new(0,80,0,30)
  425. airw.Position = UDim2.new(0,200,0,150)
  426. airw.BackgroundColor3 = Color3.fromRGB(30,30,30)
  427. airw.BorderSizePixel = 2
  428. airw.BorderColor3 = Color3.fromRGB(255,7,7)
  429. airw.Text = ("Air Walk: Off")
  430. airw.TextColor3 = Color3.new(1,1,1)
  431. airw.TextScaled = true
  432. airw.Font = Enum.Font.GothamBold
  433.  
  434. fly.Size = UDim2.new(0,80,0,30)
  435. fly.Position = UDim2.new(0,200,0,200)
  436. fly.BackgroundColor3 = Color3.fromRGB(30,30,30)
  437. fly.BorderSizePixel = 2
  438. fly.BorderColor3 = Color3.fromRGB(255,7,7)
  439. fly.Text = ("Get Fly Tool")
  440. fly.TextColor3 = Color3.new(1,1,1)
  441. fly.TextScaled = true
  442. fly.Font = Enum.Font.GothamBold
  443.  
  444. flyr.Size = UDim2.new(0,80,0,30)
  445. flyr.Position = UDim2.new(0,200,0,250)
  446. flyr.BackgroundColor3 = Color3.fromRGB(30,30,30)
  447. flyr.BorderSizePixel = 2
  448. flyr.BorderColor3 = Color3.fromRGB(255,7,7)
  449. flyr.Text = ("Remove Fly Tool")
  450. flyr.TextColor3 = Color3.new(1,1,1)
  451. flyr.TextScaled = true
  452. flyr.Font = Enum.Font.GothamBold
  453.  
  454. aimb.Size = UDim2.new(0,80,0,30)
  455. aimb.Position = UDim2.new(0,350,0,50)
  456. aimb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  457. aimb.BorderSizePixel = 2
  458. aimb.BorderColor3 = Color3.fromRGB(255,7,7)
  459. aimb.Text = ("Aimbot")
  460. aimb.TextColor3 = Color3.new(1,1,1)
  461. aimb.TextScaled = true
  462. aimb.Font = Enum.Font.GothamBold
  463.  
  464. aimr.Size = UDim2.new(0,80,0,30)
  465. aimr.Position = UDim2.new(0,350,0,100)
  466. aimr.BackgroundColor3 = Color3.fromRGB(30,30,30)
  467. aimr.BorderSizePixel = 2
  468. aimr.BorderColor3 = Color3.fromRGB(255,7,7)
  469. aimr.Text = ("Remove Aimbot")
  470. aimr.TextColor3 = Color3.new(1,1,1)
  471. aimr.TextScaled = true
  472. aimr.Font = Enum.Font.GothamBold
  473.  
  474. cred1.Size = UDim2.new(0,500,0,250)
  475. cred1.Position = UDim2.new(0,0,0,50)
  476. cred1.BackgroundTransparency = 1
  477. cred1.Text = ("~Creator: Zanikes#9633       ~Emotional support: Solace#4371")
  478. cred1.TextColor3 = Color3.new(1,1,1)
  479. cred1.TextScaled = true
  480. cred1.Font = Enum.Font.GothamBold
  481.  
  482. mors.Size = UDim2.new(0,200,0,0)
  483. mors.Position = UDim2.new(0,0,0,150)
  484. mors.BackgroundTransparency = 1
  485. mors.Text = ("")
  486. mors.TextColor3 = Color3.new(0.5,1,0.5)
  487. mors.TextScaled = true
  488. mors.Font = Enum.Font.GothamBold
  489.  
  490.  
  491.  
  492.  
  493. menub.MouseEnter:connect(function()
  494.     menub.BackgroundColor3 = Color3.new(0.5,1,0.5)
  495. end)
  496.  
  497. menub.MouseLeave:connect(function()
  498.     menub.BackgroundColor3 = Color3.fromRGB(30,30,30)
  499. end)
  500.  
  501. xout.MouseEnter:connect(function()
  502.     xout.BackgroundColor3  = Color3.new(0.5,1,0.5)
  503. end)
  504.  
  505. xout.MouseLeave:connect(function()
  506.     xout.BackgroundColor3  = Color3.fromRGB(30,30,30)
  507. end)
  508.  
  509. xout.MouseButton1Click:connect(function()
  510.     hubsg:Remove()
  511. end)
  512.  
  513. destroyb.MouseButton1Click:connect(function()
  514.     main:Remove()
  515.     hubsg:Remove()
  516. end)
  517.  
  518. destroyb.MouseEnter:connect(function()
  519.     destroyb.BackgroundColor3 = Color3.new(0.5,1,0.5)
  520. end)
  521.  
  522. destroyb.MouseLeave:connect(function()
  523.     destroyb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  524. end)
  525.  
  526. locala.MouseEnter:connect(function()
  527.     locala.BackgroundColor3 = Color3.new(0.5,1,0.5)
  528. end)
  529.  
  530. locala.MouseLeave:connect(function()
  531.     locala.BackgroundColor3 = Color3.fromRGB(30,30,30)
  532. end)
  533.  
  534. locala.MouseButton1Click:connect(function()
  535.     hubh.Visible = false
  536.     localf.Visible = true
  537.     czanf.Visible = false
  538. end)
  539.  
  540. homeb.MouseEnter:connect(function()
  541.     homeb.BackgroundColor3 = Color3.new(0.5,1,0.5)
  542. end)
  543.  
  544. homeb.MouseLeave:connect(function()
  545.     homeb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  546. end)
  547.  
  548. homeb.MouseButton1Click:connect(function()
  549.     hubh.Visible = true
  550.     localf.Visible = false
  551.     czanf.Visible = false
  552. end)
  553.  
  554. czan.MouseEnter:connect(function()
  555.     czan.BackgroundColor3 = Color3.new(0.5,1,0.5)
  556. end)
  557.  
  558. czan.MouseLeave:connect(function()
  559.     czan.BackgroundColor3 = Color3.fromRGB(30,30,30)
  560. end)
  561.  
  562. czan.MouseButton1Click:connect(function()
  563.     hubh.Visible = false
  564.     localf.Visible = false
  565.     czanf.Visible = true
  566. end)
  567.  
  568. local menuopen = false
  569. menub.MouseButton1Click:connect(function()
  570.     if menuopen == false then
  571.             menuopen = true
  572.             menuf.BorderSizePixel = 2
  573.             menuf:TweenSize(UDim2.new(0,200,0,300), 'Out', 'Bounce', 2)
  574.             wait(0.25)
  575.             homeb.Text = ("Home")
  576.             locala.Text = ("Local Player")
  577.             czan.Text = ("Credits")
  578.             dark:TweenSize(UDim2.new(0,300,0,300), 'Out', 'Quad', 0.5)
  579.             homeb:TweenSize(UDim2.new(0,200,0,50), 'Out', 'Quad', 0.5)
  580.             locala:TweenSize(UDim2.new(0,200,0,50), 'Out', 'Quad', 0.5)
  581.             locala:TweenPosition(UDim2.new(0,0,0,50), 'Out', 'Quad', 0.5, true)
  582.             czan:TweenSize(UDim2.new(0,200,0,50), 'Out', 'Quad', 0.5)
  583.             czan:TweenPosition(UDim2.new(0,0,0,100), 'Out', 'Quad', 0.5, true)
  584.             dark.BackgroundTransparency = 0.9
  585.             wait(0.05)
  586.             dark.BackgroundTransparency = 0.8
  587.             wait(0.05)
  588.             dark.BackgroundTransparency = 0.7
  589.             wait(0.05)
  590.             dark.BackgroundTransparency = 0.6
  591.             wait(0.05)
  592.             dark.BackgroundTransparency = 0.5
  593.             wait(0.05)
  594.             dark.BackgroundTransparency = 0.4
  595.             wait(0.05)
  596.             dark.BackgroundTransparency = 0.3
  597.             wait(0.05)
  598.             dark.BackgroundTransparency = 0.2
  599.             wait(1)
  600.             mors.Text = ("More Coming Soon!")
  601.             mors:TweenSize(UDim2.new(0,200,0,150), 'Out', 'Quad', 0.75)
  602.         elseif menuopen == true then
  603.             menuopen = false
  604.             mors:TweenSize(UDim2.new(0,200,0,0), 'Out', 'Quad', 0.75)
  605.             wait(0.5)
  606.             mors.Text = ("")
  607.             wait(0.25)
  608.             menuf:TweenSize(UDim2.new(0,200,0,0), 'Out', 'Bounce', 2)
  609.             dark:TweenSize(UDim2.new(0,0,0,0), 'Out', 'Quad', 0.5)
  610.             homeb:TweenSize(UDim2.new(0,200,0,0), 'Out', 'Quad', 0.5)
  611.             locala:TweenSize(UDim2.new(0,200,0,0), 'Out', 'Quad', 0.5)
  612.             locala:TweenPosition(UDim2.new(0,0,0,0), 'Out', 'Quad', 0.5, true)
  613.             czan:TweenSize(UDim2.new(0,200,0,0), 'Out', 'Quad', 0.5)
  614.             czan:TweenPosition(UDim2.new(0,0,0,0), 'Out', 'Quad', 0.5, true)
  615.             dark.BackgroundTransparency = 0.2
  616.             wait(0.05)
  617.             dark.BackgroundTransparency = 0.3
  618.             wait(0.05)
  619.             dark.BackgroundTransparency = 0.4
  620.             wait(0.05)
  621.             dark.BackgroundTransparency = 0.5
  622.             wait(0.05)
  623.             dark.BackgroundTransparency = 0.6
  624.             wait(0.05)
  625.             dark.BackgroundTransparency = 0.7
  626.             wait(0.05)
  627.             dark.BackgroundTransparency = 0.8
  628.             wait(0.05)
  629.             dark.BackgroundTransparency = 0.9
  630.             wait(0.5)
  631.             dark.BackgroundTransparency = 1
  632.             homeb.Text = ("")
  633.             locala.Text = ("")
  634.             czan.Text = ("")
  635.             wait(1)
  636.             menuf.BorderSizePixel = 0
  637.         end
  638. end)
  639.  
  640. oc.MouseEnter:connect(function()
  641.     oc.BackgroundColor3 = Color3.new(0.5,1,0.5)
  642. end)
  643.  
  644. oc.MouseLeave:connect(function()
  645.     oc.BackgroundColor3 = Color3.fromRGB(30,30,30)
  646. end)
  647.  
  648. local open = true
  649. oc.MouseButton1Click:connect(function()
  650.     if open == true then
  651.         open = false
  652.         dragbar.Visible = false
  653.         oc.Text = ("Open")
  654.     elseif open == false then
  655.         open = true
  656.         dragbar.Visible = true
  657.         oc.Text = ("Close")
  658.     end
  659. end)
  660.  
  661. phaxx.MouseEnter:connect(function()
  662.     phaxx.BackgroundColor3 = Color3.new(0.5,1,0.5)
  663. end)
  664.  
  665. phaxx.MouseLeave:connect(function()
  666.     phaxx.BackgroundColor3 = Color3.fromRGB(30,30,30)
  667. end)
  668.  
  669. jbarb.MouseEnter:connect(function()
  670.     jbarb.BackgroundColor3 = Color3.new(0.5,1,0.5)
  671. end)
  672.  
  673. jbarb.MouseLeave:connect(function()
  674.     jbarb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  675. end)
  676.  
  677. jbarb.MouseButton1Click:connect(function()
  678.     loadstring(game:HttpGet("https://pastebin.com/raw/qUPwqTyr",true))()
  679. end)
  680.  
  681. apocb.MouseEnter:connect(function()
  682.     apocb.BackgroundColor3 = Color3.new(0.5,1,0.5)
  683. end)
  684.  
  685. apocb.MouseLeave:connect(function()
  686.     apocb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  687. end)
  688.  
  689. apocb.MouseButton1Click:connect(function()
  690.     loadstring(game:HttpGet("https://pastebin.com/raw/esKMvFmV",true))()
  691. end)
  692.  
  693. phaxx.MouseButton1Click:connect(function()
  694.     loadstring(game:HttpGet("https://pastebin.com/raw/5HWztjUp", true))()
  695. end)
  696.  
  697. login.MouseEnter:connect(function()
  698.     login.BackgroundColor3 = Color3.new(0.5,1,0.5)
  699. end)
  700.  
  701. login.MouseLeave:connect(function()
  702.     login.BackgroundColor3 = Color3.fromRGB(30,30,30)
  703. end)
  704.  
  705. local keyy = "Key"
  706.  
  707. login.MouseButton1Click:connect(function()
  708. if key.Text == keyy then  
  709.     hubsg.Enabled = true
  710.     main:Remove()
  711. else
  712.     wrong.Visible = true
  713.     wait(2)
  714.     wrong.Visible = false
  715.     end
  716. end)
  717.  
  718. rfgb.MouseEnter:connect(function()
  719.     rfgb.BackgroundColor3 = Color3.new(0.5,1,0.5)
  720. end)
  721.  
  722. rfgb.MouseLeave:connect(function()
  723.     rfgb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  724. end)
  725.  
  726. rfgb.MouseButton1Click:connect(function()
  727.     loadstring(game:HttpGet("https://pastebin.com/raw/FCfRy6TJ", true))()
  728. end)
  729.  
  730. speed.MouseEnter:connect(function()
  731.     speed.BackgroundColor3 = Color3.new(0.5,1,0.5)
  732. end)
  733.  
  734. speed.MouseLeave:connect(function()
  735.     speed.BackgroundColor3 = Color3.fromRGB(30,30,30)
  736. end)
  737.  
  738. speed.MouseButton1Click:connect(function()
  739.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = valueb.Text
  740. end)
  741.  
  742. jump.MouseEnter:connect(function()
  743.     jump.BackgroundColor3 = Color3.new(0.5,1,0.5)
  744. end)
  745.  
  746. jump.MouseLeave:connect(function()
  747.     jump.BackgroundColor3 = Color3.fromRGB(30,30,30)
  748. end)
  749.  
  750. jump.MouseButton1Click:connect(function()
  751.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = valueb.Text
  752. end)
  753.  
  754. reset.MouseEnter:connect(function()
  755.     reset.BackgroundColor3 = Color3.new(0.5,1,0.5)
  756. end)
  757.  
  758. reset.MouseLeave:connect(function()
  759.     reset.BackgroundColor3 = Color3.fromRGB(30,30,30)
  760. end)
  761.  
  762. reset.MouseButton1Click:connect(function()
  763.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  764.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  765. end)
  766.  
  767. rfog.MouseEnter:connect(function()
  768.     rfog.BackgroundColor3 = Color3.new(0.5,1,0.5)
  769. end)
  770.  
  771. rfog.MouseLeave:connect(function()
  772.     rfog.BackgroundColor3 = Color3.fromRGB(30,30,30)
  773. end)
  774.  
  775. rfog.MouseButton1Click:connect(function()
  776.     game.Lighting.FogEnd = 100000
  777.     game.Lighting.FogStart = 100000
  778. end)
  779.  
  780. bright.MouseEnter:connect(function()
  781.     bright.BackgroundColor3 = Color3.new(0.5,1,0.5)
  782. end)
  783.  
  784. bright.MouseLeave:connect(function()
  785.     bright.BackgroundColor3 = Color3.fromRGB(30,30,30)
  786. end)
  787.  
  788. bright.MouseButton1Click:connect(function()
  789.     game.Lighting.Brightness = 10
  790. end)
  791.  
  792. noc.MouseEnter:connect(function()
  793.     noc.BackgroundColor3 = Color3.new(0.5,1,0.5)
  794. end)
  795.  
  796. noc.MouseLeave:connect(function()
  797.     noc.BackgroundColor3 = Color3.fromRGB(30,30,30)
  798. end)
  799.  
  800. local NoClipF = false
  801. noc.MouseButton1Click:connect(function()
  802.     if not game.Players.LocalPlayer.Character:FindFirstChild("ForceField") then
  803.     if NoClipF == false then
  804.         NoClipF = true
  805.         noc.Text = ("Noclip: On")
  806.         repeat
  807.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(11);
  808.         wait()
  809.         until NoClipF == false
  810.     else
  811.         NoClipF = false
  812.         noc.Text = ("Noclip: Off")
  813.     end
  814.     end
  815.  
  816. end)
  817.  
  818. airw.MouseEnter:connect(function()
  819.     airw.BackgroundColor3 = Color3.new(0.5,1,0.5)
  820. end)
  821.  
  822. airw.MouseLeave:connect(function()
  823.     airw.BackgroundColor3 = Color3.fromRGB(30,30,30)
  824. end)
  825.  
  826. local Air = false
  827. airw.MouseButton1Click:connect(function()
  828.     if Air == false then
  829.     Air = true
  830.     airw.Text = ("Air Walk: On")
  831.     repeat
  832.         wait()
  833.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(10);
  834.     until Air == false
  835.    
  836. else
  837.     Air = false
  838.     airw.Text = ("Air Walk: Off")
  839. end
  840. end)
  841.  
  842. fly.MouseEnter:connect(function()
  843.     fly.BackgroundColor3 = Color3.new(0.5,1,0.5)
  844. end)
  845.  
  846. fly.MouseLeave:connect(function()
  847.     fly.BackgroundColor3 = Color3.fromRGB(30,30,30)
  848. end)
  849.  
  850. fly.MouseButton1Click:connect(function()
  851.     wait();
  852.  
  853. local MaxFlySpeed = 2
  854.  
  855. local UIS = game:GetService("UserInputService")
  856. local LocalPlayer = game:GetService("Players").LocalPlayer
  857. local Torso = (LocalPlayer.Character and LocalPlayer.Character:WaitForChild("Torso"))
  858. local Mouse = LocalPlayer:GetMouse()
  859. local Tool = Instance.new("Tool")
  860. Tool.RequiresHandle = false
  861. Tool.Name = "Fly_tool"
  862.  
  863. assert(Torso.ClassName == "Part", "Yikes! Torso is not a part.")
  864.  
  865. local ToolUtils do
  866.     ToolUtils = {
  867.         --// Setup Vars
  868.         Enabled = false,
  869.         WindowFocused = true,
  870.  
  871.         Keys = {},        
  872.         InternalVars = {
  873.             FlyForward = 0,
  874.             FlyBackward = 0
  875.         }      
  876.     }
  877. end
  878.  
  879. local ToolEvents do
  880.     Tool.Equipped:connect(function(Mouse)
  881.         ToolUtils.Enabled = true
  882.         Torso.Anchored = true
  883.     end)
  884.     Tool.Unequipped:connect(function(...)
  885.         ToolUtils.Enabled = false
  886.         Torso.Anchored = false
  887.     end)
  888.     UIS.InputBegan:connect(function(input, processedEvent)
  889.         ToolUtils.Keys[input.KeyCode] = true
  890.     end)
  891.     UIS.InputEnded:connect(function(input, processedEvent)
  892.         ToolUtils.Keys[input.KeyCode] = nil
  893.     end)
  894.     UIS.WindowFocusReleased:connect(function()
  895.         ToolUtils.WindowFocused = false
  896.     end)
  897.     UIS.WindowFocused:connect(function()
  898.         ToolUtils.WindowFocused = true
  899.     end)
  900. end
  901.  
  902. --// Main Event
  903. game:GetService("RunService").RenderStepped:connect(function(...)
  904.     if ToolUtils.WindowFocused and ToolUtils.Enabled then
  905.         if ToolUtils.Keys[Enum.KeyCode.W] then
  906.             if ToolUtils.InternalVars.FlyForward < MaxFlySpeed then
  907.                 ToolUtils.InternalVars.FlyForward = ToolUtils.InternalVars.FlyForward + 0.1
  908.             end
  909.         else
  910.             ToolUtils.InternalVars.FlyForward = ToolUtils.InternalVars.FlyForward * 0.9
  911.         end
  912.         if ToolUtils.Keys[Enum.KeyCode.S] then
  913.             if ToolUtils.InternalVars.FlyBackward < MaxFlySpeed then
  914.                 ToolUtils.InternalVars.FlyBackward = ToolUtils.InternalVars.FlyBackward + 0.1
  915.             end
  916.         else
  917.             ToolUtils.InternalVars.FlyBackward = ToolUtils.InternalVars.FlyBackward * 0.9          
  918.         end
  919.        
  920.         local Camera = workspace.CurrentCamera
  921.         Torso.CFrame = Torso.CFrame:lerp(
  922.             CFrame.new(Torso.Position, Camera.CFrame.p)
  923.                * CFrame.Angles(0, math.rad(180), 0)
  924.                * CFrame.new(0, 0, -(ToolUtils.InternalVars.FlyForward - ToolUtils.InternalVars.FlyBackward))
  925.                * CFrame.Angles(-(math.rad(10 * (ToolUtils.InternalVars.FlyForward / MaxFlySpeed)) - math.rad(10 * (ToolUtils.InternalVars.FlyBackward / MaxFlySpeed))), 0, 0)
  926.         , 0.9)
  927.     end
  928. end)
  929.  
  930. Tool.Parent = LocalPlayer:findFirstChild("Backpack") or Instance.new("Backpack", LocalPlayer)
  931. end)
  932.  
  933. flyr.MouseEnter:connect(function()
  934.     flyr.BackgroundColor3 = Color3.new(0.5,1,0.5)
  935. end)
  936.  
  937. flyr.MouseLeave:connect(function()
  938.     flyr.BackgroundColor3 = Color3.fromRGB(30,30,30)
  939. end)
  940.  
  941. flyr.MouseButton1Click:connect(function()
  942.     game.Players.LocalPlayer.Backpack.Fly_tool:Remove()
  943. end)
  944.  
  945. aimb.MouseEnter:connect(function()
  946.     aimb.BackgroundColor3 = Color3.new(0.5,1,0.5)
  947. end)
  948.  
  949. aimb.MouseLeave:connect(function()
  950.     aimb.BackgroundColor3 = Color3.fromRGB(30,30,30)
  951. end)
  952.  
  953. aimb.MouseButton1Click:connect(function()
  954.     loadstring(game:HttpGet("https://pastebin.com/raw/uCSJY8we", true))()
  955. end)
  956.  
  957. aimr.MouseEnter:connect(function()
  958.     aimr.BackgroundColor3 = Color3.new(0.5,1,0.5)
  959. end)
  960.  
  961. aimr.MouseLeave:connect(function()
  962.     aimr.BackgroundColor3 = Color3.fromRGB(30,30,30)
  963. end)
  964.  
  965. aimr.MouseButton1Click:connect(function()
  966.     game.CoreGui.AIMBOT:Remove()
  967. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement