Advertisement
ScriptsForRainDrop

Murder Mystery X GUI

Apr 26th, 2018
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 74.72 KB | None | 0 0
  1. function Introduction()
  2. -- Objects
  3.  
  4. local Intro = Instance.new("ScreenGui")
  5. local Intro_2 = Instance.new("Frame")
  6. local Letter = Instance.new("Frame")
  7. local Frame = Instance.new("Frame")
  8. local Frame_2 = Instance.new("Frame")
  9. local Frame_3 = Instance.new("Frame")
  10. local Frame_4 = Instance.new("Frame")
  11. local Frame_5 = Instance.new("Frame")
  12. local Top = Instance.new("Frame")
  13.  
  14. -- Properties
  15.  
  16. Intro.Name = "Intro"
  17. Intro.Parent = game.Players.LocalPlayer.PlayerGui
  18.  
  19. Intro_2.Name = "Intro"
  20. Intro_2.Parent = Intro
  21. Intro_2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  22. Intro_2.BorderColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  23. Intro_2.BorderSizePixel = 0
  24. Intro_2.Size = UDim2.new(1, 0, 1, 0)
  25.  
  26. Letter.Name = "Letter"
  27. Letter.Parent = Intro_2
  28. Letter.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  29. Letter.BackgroundTransparency = 1
  30. Letter.BorderColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  31. Letter.BorderSizePixel = 0
  32. Letter.Position = UDim2.new(0.5, -100, 0.5, -100)
  33. Letter.Size = UDim2.new(0, 200, 0, 200)
  34.  
  35. Frame.Parent = Letter
  36. Frame.BackgroundColor3 = Color3.new(0, 1, 1)
  37. Frame.BorderSizePixel = 0
  38. Frame.Size = UDim2.new(0, 200, 0, 40)
  39.  
  40. Frame_2.Parent = Letter
  41. Frame_2.BackgroundColor3 = Color3.new(0, 1, 1)
  42. Frame_2.BorderSizePixel = 0
  43. Frame_2.Position = UDim2.new(0, 0, 0, 40)
  44. Frame_2.Size = UDim2.new(0, 40, 0, 80)
  45.  
  46. Frame_3.Parent = Letter
  47. Frame_3.BackgroundColor3 = Color3.new(0, 1, 1)
  48. Frame_3.BorderSizePixel = 0
  49. Frame_3.Position = UDim2.new(0, 160, 0, 120)
  50. Frame_3.Size = UDim2.new(0, 40, 0, 80)
  51.  
  52. Frame_4.Parent = Letter
  53. Frame_4.BackgroundColor3 = Color3.new(0, 1, 1)
  54. Frame_4.BorderSizePixel = 0
  55. Frame_4.Position = UDim2.new(0, 0, 0, 90)
  56. Frame_4.Size = UDim2.new(0, 200, 0, 40)
  57.  
  58. Frame_5.Parent = Letter
  59. Frame_5.BackgroundColor3 = Color3.new(0, 1, 1)
  60. Frame_5.BorderSizePixel = 0
  61. Frame_5.Position = UDim2.new(0, 0, 0, 180)
  62. Frame_5.Size = UDim2.new(0, 200, 0, 40)
  63.  
  64. Top.Name = "Top"
  65. Top.Parent = Intro_2
  66. Top.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  67. Top.BorderSizePixel = 0
  68. Top.Position = UDim2.new(0, 0, 0, -100)
  69. Top.Size = UDim2.new(1, 0, 0, 100)
  70.  
  71. local top = 255
  72. while Intro == nil do wait() end
  73. local intro_frame = Intro_2
  74. intro_frame.Visible = true
  75. wait(1) --A fail proof wait, yisss
  76.  
  77. local flies = Instance.new("Sound")
  78. flies.Name = "Flies"
  79. flies.SoundId = "rbxassetid://258663133"
  80. flies.MaxDistance = "10000.000"
  81. flies.Parent = Intro
  82.  
  83. local Intro1 = Instance.new("Sound")
  84. Intro1.Name = "Intro"
  85. Intro1.SoundId = "rbxassetid://258666677"
  86. Intro1.MaxDistance = "10000.000"
  87. Intro1.Parent = Intro
  88.  
  89. local snd_flies = flies
  90. local snd_intro = Intro1
  91.  
  92.  
  93. local camera = game.Workspace.CurrentCamera
  94. local RenderStepped = game:GetService("RunService").RenderStepped
  95.  
  96. local letter = Letter
  97. letter:ClearAllChildren()
  98.  
  99.  
  100. local function V2Interp(v1, v2, t)
  101. return v1 + (v2 - v1) * t
  102. end
  103.  
  104. local function FollowInterp(v1, v2, max_dist, speed, delta)
  105. local mag = (v1 - v2).magnitude
  106. if mag > max_dist then
  107. v1 = V2Interp(v1, v2, (mag - max_dist) / mag)
  108. end
  109. return V2Interp(v1, v2, math.min(1, 1 - (1 - speed) ^ delta))
  110. end
  111.  
  112. function Shake2D(speed, speed2, radius)
  113. local old_radius = radius
  114.  
  115. local function GetNextPos()
  116. local roll = Vector2.new(math.random() - 0.5, math.random() - 0.5)
  117. if roll.x == 0 and roll.y == 0 then
  118. return Vector2.new(0, 1) * radius * (math.random() - 0.5) * 2
  119. else
  120. return roll.unit * radius * (math.random() - 0.5) * 2
  121. end
  122. end
  123.  
  124. local start = nil
  125. local pos1 = Vector2.new(0, 0)
  126. local pos2 = GetNextPos()
  127. local time_req = (pos2 - pos1).magnitude / speed
  128.  
  129. local shaker_pos = pos1
  130.  
  131. local last_update = nil
  132. local function Update(force_radius)
  133. if force_radius ~= nil then
  134. radius = force_radius
  135. end
  136. if start == nil then
  137. start = tick()
  138. last_update = tick()
  139. end
  140. local delta = tick() - last_update
  141. last_update = tick()
  142.  
  143. local amm = (tick() - start) / time_req
  144. local over_time = tick() - start - time_req
  145.  
  146. local follow_pos = V2Interp(pos1, pos2, math.min(1, amm))
  147. shaker_pos = FollowInterp(shaker_pos, follow_pos, old_radius, speed2, math.max(0, delta - math.max(0, over_time)))
  148. if over_time > 0 then
  149. pos1 = pos2
  150. pos2 = GetNextPos()
  151. local new_time_req = (pos2 - pos1).magnitude / speed
  152.  
  153. start = math.min(start + time_req, tick() + new_time_req)
  154. time_req = new_time_req
  155.  
  156. local amm = (tick() - start) / time_req
  157. local follow_pos = V2Interp(pos1, pos2, math.min(1, amm))
  158. shaker_pos = FollowInterp(shaker_pos, follow_pos, old_radius, speed2, over_time)
  159. end
  160.  
  161. return shaker_pos
  162. end
  163.  
  164. return {Update = Update}
  165. end
  166.  
  167. local neon_list = {
  168. Vector3.new(1, 0, 0),
  169. Vector3.new(1, 0, 1),
  170. Vector3.new(1, 1, 0),
  171. Vector3.new(0, 1, 0),
  172. Vector3.new(1, 180 / 255, 0),
  173. Vector3.new(0, 1, 1),
  174. }
  175.  
  176. local m_code = {
  177. "1111111111",
  178. "1111111111",
  179. "1100000000",
  180. "1100000000",
  181. "1111111111",
  182. "1111111111",
  183. "0000000011",
  184. "0000000011",
  185. "1111111111",
  186. "1111111111",
  187. }
  188.  
  189. local m_partics = {}
  190. for y, str_lin in pairs(m_code) do
  191. for x = 1, str_lin:len() do
  192. if str_lin:sub(x, x) == "1" then
  193. local n_p = Instance.new("Frame")
  194. n_p.BorderSizePixel = 0
  195. n_p.Size = UDim2.new(0, 20, 0, 20)
  196. n_p.BackgroundColor3 = Color3.new(0, 0, 0)
  197. n_p.Position = UDim2.new(0, (x - 1) * 20, 0, (y - 1) * 20)
  198. n_p.Parent = letter
  199.  
  200. local orig_pos = Vector2.new((x - 1) * 20, (y - 1) * 20)
  201. local shaker = Shake2D(1000, 0.95, 400)
  202.  
  203. table.insert(m_partics, {n_p, orig_pos, shaker})
  204. end
  205. end
  206. end
  207.  
  208. local BEAT = 0.476
  209.  
  210. local start = tick()
  211. snd_flies:Play()
  212.  
  213. local intro_played = false
  214. local last_swap = 0
  215. local curr_neon = 1 --neon_list
  216.  
  217. while true do
  218. local amm = math.min(1 , (tick() - start) / 10)
  219. if amm < 0.1 then
  220. snd_flies.Volume = amm * 10
  221. elseif amm > 0.1 and amm < 0.4 then
  222. snd_flies.Volume = 1
  223. else
  224. snd_flies.Volume = 0
  225. end
  226.  
  227. if amm > 0.4 then
  228. if not intro_played then
  229. snd_intro:Play()
  230. intro_played = true
  231. end
  232. if tick() - last_swap > BEAT or last_swap == 0 then
  233. if last_swap == 0 then
  234. last_swap = tick()
  235. else
  236. last_swap = last_swap + BEAT
  237. end
  238. curr_neon = curr_neon + 1
  239. if curr_neon > #neon_list then
  240. curr_neon = 1
  241. end
  242. end
  243. local gen_col = neon_list[curr_neon]
  244.  
  245. end
  246.  
  247.  
  248. for _, p in pairs(m_partics) do
  249. local gen_pos
  250. if amm < 0.5 then
  251. gen_pos = p[2] + p[3].Update()
  252. else
  253. gen_pos = p[2] + p[3].Update(math.max(0, 400 - ((amm - 0.5) * 1000)))
  254. end
  255. p[1].Position = UDim2.new(0, gen_pos.x, 0, gen_pos.y)
  256. p[1].BackgroundColor3 = Color3.new(0,255,255)
  257. end
  258.  
  259. if tick() - start > 10 then break end
  260. RenderStepped:wait()
  261. end
  262.  
  263. local start2 = tick()
  264. while true do
  265. if tick() - last_swap > BEAT then
  266. last_swap = last_swap + BEAT
  267. curr_neon = curr_neon + 1
  268. if curr_neon > #neon_list then
  269. curr_neon = 1
  270. end
  271. end
  272. local gen_col = neon_list[curr_neon]
  273.  
  274. if tick() - start2 > 9 then break end
  275. RenderStepped:wait()
  276. end
  277.  
  278. --------------------------------
  279. wait(0.1)
  280.  
  281. snd_flies:Stop()
  282. snd_intro:Stop()
  283.  
  284. --The end
  285. Intro_2:TweenPosition(UDim2.new(0, 0, -1.2, 0), 'Out', 'Elastic', 1.2)
  286. end
  287. Introduction()
  288.  
  289. -- Objects
  290.  
  291. local Work = game.Workspace
  292. coinEspEnabled = false
  293. local BodyParts = {
  294. "Head";
  295. "Torso";
  296. "Left Leg";
  297. "Right Leg";
  298. "Right Arm";
  299. "Left Arm";
  300. }
  301. local ESP = Instance.new("BoxHandleAdornment")
  302. ESP.AlwaysOnTop = true
  303. ESP.Name = "MurderChams"
  304. ESP.ZIndex = 2
  305. ESP.Parent = Work
  306.  
  307. local ESP1 = Instance.new("BoxHandleAdornment")
  308. ESP1.AlwaysOnTop = true
  309. ESP1.Name = "EveryoneChams"
  310. ESP1.ZIndex = 2
  311. ESP1.Parent = Work
  312.  
  313. local ESP2 = Instance.new("BoxHandleAdornment")
  314. ESP2.AlwaysOnTop = true
  315. ESP2.Name = "SheriffChams"
  316. ESP2.ZIndex = 2
  317. ESP2.Parent = Work
  318.  
  319. local ESP3 = Instance.new("BoxHandleAdornment")
  320. ESP3.AlwaysOnTop = true
  321. ESP3.Name = "CoinChams"
  322. ESP3.ZIndex = 2
  323. ESP3.Parent = Work
  324.  
  325. local ESP4 = Instance.new("BoxHandleAdornment")
  326. ESP4.AlwaysOnTop = true
  327. ESP4.Name = "GunChams"
  328. ESP4.ZIndex = 2
  329. ESP4.Parent = Work
  330. local plr = game:GetService("Players")
  331. local LP = game.Players.LocalPlayer
  332. local MMXGuibySquid = Instance.new("ScreenGui")
  333. local MMXGui = Instance.new("Frame")
  334. local CloseButton = Instance.new("ImageButton")
  335. local Roles = Instance.new("TextButton")
  336. local Murderer = Instance.new("TextButton")
  337. local Property1 = Instance.new("TextLabel")
  338. local Property2 = Instance.new("TextLabel")
  339. local Property3 = Instance.new("TextLabel")
  340. local Toggle = Instance.new("TextButton")
  341. local HighlightUI = Instance.new("TextButton")
  342. local Detective = Instance.new("TextButton")
  343. local Toggle_2 = Instance.new("TextButton")
  344. local Property1_2 = Instance.new("TextLabel")
  345. local Property2_2 = Instance.new("TextLabel")
  346. local Property3_2 = Instance.new("TextLabel")
  347. local HighlightUI_2 = Instance.new("TextButton")
  348. local Everyone = Instance.new("TextButton")
  349. local Property1_3 = Instance.new("TextLabel")
  350. local Property2_3 = Instance.new("TextLabel")
  351. local Property3_3 = Instance.new("TextLabel")
  352. local Toggle_3 = Instance.new("TextButton")
  353. local HighlightUI_3 = Instance.new("TextButton")
  354. local Clear = Instance.new("TextButton")
  355. local HighlightUI_4 = Instance.new("TextButton")
  356. local Toggle_4 = Instance.new("TextButton")
  357. local Property1_4 = Instance.new("TextLabel")
  358. local Property2_4 = Instance.new("TextLabel")
  359. local Property3_4 = Instance.new("TextLabel")
  360. local TopLevelBAR = Instance.new("TextButton")
  361. local Game = Instance.new("TextButton")
  362. local Coin = Instance.new("TextButton")
  363. local Property1_5 = Instance.new("TextLabel")
  364. local Property2_5 = Instance.new("TextLabel")
  365. local Property3_5 = Instance.new("TextLabel")
  366. local Toggle_5 = Instance.new("TextButton")
  367. local HighlightUI_5 = Instance.new("TextButton")
  368. local Gun = Instance.new("TextButton")
  369. local Property1_6 = Instance.new("TextLabel")
  370. local Property2_6 = Instance.new("TextLabel")
  371. local Property3_6 = Instance.new("TextLabel")
  372. local On = Instance.new("TextButton")
  373. local HighlightUI_6 = Instance.new("TextButton")
  374. local CoinsESP = Instance.new("TextButton")
  375. local Toggle_6 = Instance.new("TextButton")
  376. local Property1_7 = Instance.new("TextLabel")
  377. local Property2_7 = Instance.new("TextLabel")
  378. local Property3_7 = Instance.new("TextLabel")
  379. local HighlightUI_7 = Instance.new("TextButton")
  380. local GunESP = Instance.new("TextButton")
  381. local HighlightUI_8 = Instance.new("TextButton")
  382. local Toggle_7 = Instance.new("TextButton")
  383. local Property1_8 = Instance.new("TextLabel")
  384. local Property2_8 = Instance.new("TextLabel")
  385. local Property3_8 = Instance.new("TextLabel")
  386. local TopLevelBAR_2 = Instance.new("TextButton")
  387. local Player = Instance.new("TextButton")
  388. local Noclip = Instance.new("TextButton")
  389. local Property1_9 = Instance.new("TextLabel")
  390. local Property2_9 = Instance.new("TextLabel")
  391. local Property3_9 = Instance.new("TextLabel")
  392. local On_2 = Instance.new("TextButton")
  393. local HighlightUI_9 = Instance.new("TextButton")
  394. local Fly = Instance.new("TextButton")
  395. local Property1_10 = Instance.new("TextLabel")
  396. local Property2_10 = Instance.new("TextLabel")
  397. local Property3_10 = Instance.new("TextLabel")
  398. local Toggle_8 = Instance.new("TextButton")
  399. local HighlightUI_10 = Instance.new("TextButton")
  400. local HighJump = Instance.new("TextButton")
  401. local Toggle_9 = Instance.new("TextButton")
  402. local Property1_11 = Instance.new("TextLabel")
  403. local Property2_11 = Instance.new("TextLabel")
  404. local Property3_11 = Instance.new("TextLabel")
  405. local HighlightUI_11 = Instance.new("TextButton")
  406. local Speed = Instance.new("TextButton")
  407. local HighlightUI_12 = Instance.new("TextButton")
  408. local Toggle_10 = Instance.new("TextButton")
  409. local Property1_12 = Instance.new("TextLabel")
  410. local Property2_12 = Instance.new("TextLabel")
  411. local Property3_12 = Instance.new("TextLabel")
  412. local TopLevelBAR_3 = Instance.new("TextButton")
  413. local DividerUI = Instance.new("TextButton")
  414. local Credits = Instance.new("TextButton")
  415. local TopLevelBAR_4 = Instance.new("TextButton")
  416. local Creds = Instance.new("TextLabel")
  417. local DividerUI_2 = Instance.new("TextButton")
  418. local Creds_2 = Instance.new("TextLabel")
  419. local Creds_3 = Instance.new("TextLabel")
  420. local DividerUI_3 = Instance.new("TextButton")
  421. local Creds_4 = Instance.new("TextLabel")
  422. local TransparencyAERO = Instance.new("TextLabel")
  423. local MMXText = Instance.new("TextLabel")
  424. local SelectTabHint = Instance.new("TextLabel")
  425. local solarBUX = Instance.new("ImageButton")
  426. local OpenButton = Instance.new("TextButton")
  427.  
  428. -- Properties
  429.  
  430. MMXGuibySquid.Name = "MMX Gui by Squid"
  431. MMXGuibySquid.Parent = game.CoreGui
  432.  
  433. MMXGui.Name = "MMXGui"
  434. MMXGui.Parent = MMXGuibySquid
  435. MMXGui.BackgroundColor3 = Color3.new(0.0588235, 0.0901961, 0.117647)
  436. MMXGui.BorderColor3 = Color3.new(0.117647, 0.00392157, 0.00392157)
  437. MMXGui.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
  438. MMXGui.Size = UDim2.new(0, 700, 0, 400)
  439. MMXGui.Visible = false
  440.  
  441. CloseButton.Name = "CloseButton"
  442. CloseButton.Parent = MMXGui
  443. CloseButton.BackgroundColor3 = Color3.new(1, 1, 1)
  444. CloseButton.BackgroundTransparency = 1
  445. CloseButton.BorderColor3 = Color3.new(0, 0, 0)
  446. CloseButton.Position = UDim2.new(0.949999988, 0, -0.00999999978, 0)
  447. CloseButton.Size = UDim2.new(0, 20, 0, 18)
  448. CloseButton.Image = "http://www.roblox.com/asset/?id=157136587"
  449.  
  450. Roles.Name = "Roles"
  451. Roles.Parent = MMXGui
  452. Roles.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  453. Roles.BackgroundTransparency = 1
  454. Roles.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  455. Roles.BorderSizePixel = 0
  456. Roles.Position = UDim2.new(0.300000012, 0, 0.0199999996, 0)
  457. Roles.Size = UDim2.new(0, 80, 0, 40)
  458. Roles.Font = Enum.Font.SourceSans
  459. Roles.FontSize = Enum.FontSize.Size24
  460. Roles.Text = "Roles"
  461. Roles.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  462. Roles.TextSize = 24
  463.  
  464. Murderer.Name = "Murderer"
  465. Murderer.Parent = Roles
  466. Murderer.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  467. Murderer.Position = UDim2.new(0, 10, 0, 100)
  468. Murderer.Size = UDim2.new(0, 100, 0, 100)
  469. Murderer.Visible = false
  470. Murderer.Font = Enum.Font.ArialBold
  471. Murderer.FontSize = Enum.FontSize.Size24
  472. Murderer.Text = "Murderer"
  473. Murderer.TextColor3 = Color3.new(1, 1, 1)
  474. Murderer.TextSize = 20
  475.  
  476. Property1.Name = "Property1"
  477. Property1.Parent = Murderer
  478. Property1.BackgroundColor3 = Color3.new(1, 1, 1)
  479. Property1.BackgroundTransparency = 1
  480. Property1.Position = UDim2.new(0, -160, 0, 140)
  481. Property1.Size = UDim2.new(0, 450, 0, 30)
  482. Property1.Visible = false
  483. Property1.Font = Enum.Font.ArialBold
  484. Property1.FontSize = Enum.FontSize.Size18
  485. Property1.Text = "See the murderer (ESP)"
  486. Property1.TextColor3 = Color3.new(1, 1, 1)
  487. Property1.TextSize = 18
  488. Property1.TextXAlignment = Enum.TextXAlignment.Left
  489.  
  490. Property2.Name = "Property2"
  491. Property2.Parent = Murderer
  492. Property2.BackgroundColor3 = Color3.new(1, 1, 1)
  493. Property2.BackgroundTransparency = 1
  494. Property2.Position = UDim2.new(0, -160, 0, 170)
  495. Property2.Size = UDim2.new(0, 450, 0, 30)
  496. Property2.Visible = false
  497. Property2.Font = Enum.Font.ArialBold
  498. Property2.FontSize = Enum.FontSize.Size18
  499. Property2.Text = "Works in MMX / MM2"
  500. Property2.TextColor3 = Color3.new(1, 1, 1)
  501. Property2.TextSize = 18
  502. Property2.TextXAlignment = Enum.TextXAlignment.Left
  503.  
  504. Property3.Name = "Property3"
  505. Property3.Parent = Murderer
  506. Property3.BackgroundColor3 = Color3.new(1, 1, 1)
  507. Property3.BackgroundTransparency = 1
  508. Property3.Position = UDim2.new(0, -160, 0, 200)
  509. Property3.Size = UDim2.new(0, 450, 0, 30)
  510. Property3.Visible = false
  511. Property3.Font = Enum.Font.ArialBold
  512. Property3.FontSize = Enum.FontSize.Size18
  513. Property3.Text = "You can't hide from me murderer..."
  514. Property3.TextColor3 = Color3.new(1, 1, 1)
  515. Property3.TextSize = 18
  516. Property3.TextXAlignment = Enum.TextXAlignment.Left
  517.  
  518. Toggle.Name = "Toggle"
  519. Toggle.Parent = Murderer
  520. Toggle.Active = false
  521. Toggle.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  522. Toggle.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  523. Toggle.Position = UDim2.new(0, 270, 0, 150)
  524. Toggle.Size = UDim2.new(0, 100, 0, 60)
  525. Toggle.Visible = false
  526. Toggle.Font = Enum.Font.ArialBold
  527. Toggle.FontSize = Enum.FontSize.Size24
  528. Toggle.Text = "ESP"
  529. Toggle.TextColor3 = Color3.new(1, 1, 1)
  530. Toggle.TextSize = 24
  531.  
  532. HighlightUI.Name = "HighlightUI"
  533. HighlightUI.Parent = Murderer
  534. HighlightUI.BackgroundColor3 = Color3.new(1, 1, 1)
  535. HighlightUI.Position = UDim2.new(0, 0, 0, -10)
  536. HighlightUI.Size = UDim2.new(0, 100, 0, 1)
  537. HighlightUI.Visible = false
  538. HighlightUI.Font = Enum.Font.SourceSans
  539. HighlightUI.FontSize = Enum.FontSize.Size14
  540. HighlightUI.Text = ""
  541. HighlightUI.TextSize = 14
  542. HighlightUI.TextWrapped = true
  543.  
  544. Detective.Name = "Detective"
  545. Detective.Parent = Roles
  546. Detective.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.498039)
  547. Detective.Position = UDim2.new(0, 350, 0, 100)
  548. Detective.Size = UDim2.new(0, 100, 0, 100)
  549. Detective.Visible = false
  550. Detective.Font = Enum.Font.ArialBold
  551. Detective.FontSize = Enum.FontSize.Size24
  552. Detective.Text = "Detective"
  553. Detective.TextColor3 = Color3.new(1, 1, 1)
  554. Detective.TextSize = 20
  555.  
  556. Toggle_2.Name = "Toggle"
  557. Toggle_2.Parent = Detective
  558. Toggle_2.Active = false
  559. Toggle_2.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  560. Toggle_2.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  561. Toggle_2.Position = UDim2.new(0, -60, 0, 150)
  562. Toggle_2.Size = UDim2.new(0, 100, 0, 60)
  563. Toggle_2.Visible = false
  564. Toggle_2.Font = Enum.Font.ArialBold
  565. Toggle_2.FontSize = Enum.FontSize.Size24
  566. Toggle_2.Text = "ESP"
  567. Toggle_2.TextColor3 = Color3.new(1, 1, 1)
  568. Toggle_2.TextSize = 24
  569.  
  570. Property1_2.Name = "Property1"
  571. Property1_2.Parent = Detective
  572. Property1_2.BackgroundColor3 = Color3.new(1, 1, 1)
  573. Property1_2.BackgroundTransparency = 1
  574. Property1_2.Position = UDim2.new(0, -500, 0, 140)
  575. Property1_2.Size = UDim2.new(0, 450, 0, 30)
  576. Property1_2.Visible = false
  577. Property1_2.Font = Enum.Font.ArialBold
  578. Property1_2.FontSize = Enum.FontSize.Size18
  579. Property1_2.Text = "See who is the detective (ESP)"
  580. Property1_2.TextColor3 = Color3.new(1, 1, 1)
  581. Property1_2.TextSize = 18
  582. Property1_2.TextXAlignment = Enum.TextXAlignment.Left
  583.  
  584. Property2_2.Name = "Property2"
  585. Property2_2.Parent = Detective
  586. Property2_2.BackgroundColor3 = Color3.new(1, 1, 1)
  587. Property2_2.BackgroundTransparency = 1
  588. Property2_2.Position = UDim2.new(0, -500, 0, 170)
  589. Property2_2.Size = UDim2.new(0, 450, 0, 30)
  590. Property2_2.Visible = false
  591. Property2_2.Font = Enum.Font.ArialBold
  592. Property2_2.FontSize = Enum.FontSize.Size18
  593. Property2_2.Text = "Works in MMX / MM2"
  594. Property2_2.TextColor3 = Color3.new(1, 1, 1)
  595. Property2_2.TextSize = 18
  596. Property2_2.TextXAlignment = Enum.TextXAlignment.Left
  597.  
  598. Property3_2.Name = "Property3"
  599. Property3_2.Parent = Detective
  600. Property3_2.BackgroundColor3 = Color3.new(1, 1, 1)
  601. Property3_2.BackgroundTransparency = 1
  602. Property3_2.Position = UDim2.new(0, -500, 0, 200)
  603. Property3_2.Size = UDim2.new(0, 450, 0, 30)
  604. Property3_2.Visible = false
  605. Property3_2.Font = Enum.Font.ArialBold
  606. Property3_2.FontSize = Enum.FontSize.Size18
  607. Property3_2.Text = "I am the undercover..."
  608. Property3_2.TextColor3 = Color3.new(1, 1, 1)
  609. Property3_2.TextSize = 18
  610. Property3_2.TextXAlignment = Enum.TextXAlignment.Left
  611.  
  612. HighlightUI_2.Name = "HighlightUI"
  613. HighlightUI_2.Parent = Detective
  614. HighlightUI_2.BackgroundColor3 = Color3.new(1, 1, 1)
  615. HighlightUI_2.Position = UDim2.new(0, 0, 0, -10)
  616. HighlightUI_2.Size = UDim2.new(0, 100, 0, 1)
  617. HighlightUI_2.Visible = false
  618. HighlightUI_2.Font = Enum.Font.SourceSans
  619. HighlightUI_2.FontSize = Enum.FontSize.Size14
  620. HighlightUI_2.Text = ""
  621. HighlightUI_2.TextSize = 14
  622. HighlightUI_2.TextWrapped = true
  623.  
  624. Everyone.Name = "Everyone"
  625. Everyone.Parent = Roles
  626. Everyone.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  627. Everyone.Position = UDim2.new(0, -150, 0, 100)
  628. Everyone.Size = UDim2.new(0, 100, 0, 100)
  629. Everyone.Visible = false
  630. Everyone.Font = Enum.Font.ArialBold
  631. Everyone.FontSize = Enum.FontSize.Size24
  632. Everyone.Text = "Everyone"
  633. Everyone.TextColor3 = Color3.new(1, 1, 1)
  634. Everyone.TextSize = 24
  635.  
  636. Property1_3.Name = "Property1"
  637. Property1_3.Parent = Everyone
  638. Property1_3.BackgroundColor3 = Color3.new(1, 1, 1)
  639. Property1_3.BackgroundTransparency = 1
  640. Property1_3.Position = UDim2.new(0, 0, 0, 140)
  641. Property1_3.Size = UDim2.new(0, 450, 0, 30)
  642. Property1_3.Font = Enum.Font.ArialBold
  643. Property1_3.FontSize = Enum.FontSize.Size18
  644. Property1_3.Text = "See where is everyone at (ESP)"
  645. Property1_3.TextColor3 = Color3.new(1, 1, 1)
  646. Property1_3.TextSize = 18
  647. Property1_3.TextXAlignment = Enum.TextXAlignment.Left
  648.  
  649. Property2_3.Name = "Property2"
  650. Property2_3.Parent = Everyone
  651. Property2_3.BackgroundColor3 = Color3.new(1, 1, 1)
  652. Property2_3.BackgroundTransparency = 1
  653. Property2_3.Position = UDim2.new(0, 0, 0, 170)
  654. Property2_3.Size = UDim2.new(0, 450, 0, 30)
  655. Property2_3.Font = Enum.Font.ArialBold
  656. Property2_3.FontSize = Enum.FontSize.Size18
  657. Property2_3.Text = "Works in MMX / MM2"
  658. Property2_3.TextColor3 = Color3.new(1, 1, 1)
  659. Property2_3.TextSize = 18
  660. Property2_3.TextXAlignment = Enum.TextXAlignment.Left
  661.  
  662. Property3_3.Name = "Property3"
  663. Property3_3.Parent = Everyone
  664. Property3_3.BackgroundColor3 = Color3.new(1, 1, 1)
  665. Property3_3.BackgroundTransparency = 1
  666. Property3_3.Position = UDim2.new(0, 0, 0, 200)
  667. Property3_3.Size = UDim2.new(0, 450, 0, 30)
  668. Property3_3.Font = Enum.Font.ArialBold
  669. Property3_3.FontSize = Enum.FontSize.Size18
  670. Property3_3.Text = "I see everybody..."
  671. Property3_3.TextColor3 = Color3.new(1, 1, 1)
  672. Property3_3.TextSize = 18
  673. Property3_3.TextXAlignment = Enum.TextXAlignment.Left
  674.  
  675. Toggle_3.Name = "Toggle"
  676. Toggle_3.Parent = Everyone
  677. Toggle_3.Active = false
  678. Toggle_3.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  679. Toggle_3.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  680. Toggle_3.Position = UDim2.new(0, 390, 0, 150)
  681. Toggle_3.Size = UDim2.new(0, 100, 0, 60)
  682. Toggle_3.Font = Enum.Font.ArialBold
  683. Toggle_3.FontSize = Enum.FontSize.Size24
  684. Toggle_3.Text = "ESP"
  685. Toggle_3.TextColor3 = Color3.new(1, 1, 1)
  686. Toggle_3.TextSize = 24
  687.  
  688. HighlightUI_3.Name = "HighlightUI"
  689. HighlightUI_3.Parent = Everyone
  690. HighlightUI_3.BackgroundColor3 = Color3.new(1, 1, 1)
  691. HighlightUI_3.Position = UDim2.new(0, 0, 0, -10)
  692. HighlightUI_3.Size = UDim2.new(0, 100, 0, 1)
  693. HighlightUI_3.Font = Enum.Font.SourceSans
  694. HighlightUI_3.FontSize = Enum.FontSize.Size14
  695. HighlightUI_3.Text = ""
  696. HighlightUI_3.TextSize = 14
  697. HighlightUI_3.TextWrapped = true
  698.  
  699. Clear.Name = "Clear"
  700. Clear.Parent = Roles
  701. Clear.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  702. Clear.Position = UDim2.new(0, 180, 0, 100)
  703. Clear.Size = UDim2.new(0, 100, 0, 100)
  704. Clear.Visible = false
  705. Clear.Font = Enum.Font.ArialBold
  706. Clear.FontSize = Enum.FontSize.Size24
  707. Clear.Text = "Clear ESP"
  708. Clear.TextColor3 = Color3.new(1, 1, 1)
  709. Clear.TextSize = 24
  710.  
  711. HighlightUI_4.Name = "HighlightUI"
  712. HighlightUI_4.Parent = Clear
  713. HighlightUI_4.BackgroundColor3 = Color3.new(1, 1, 1)
  714. HighlightUI_4.Position = UDim2.new(0, 0, 0, -10)
  715. HighlightUI_4.Size = UDim2.new(0, 100, 0, 1)
  716. HighlightUI_4.Visible = false
  717. HighlightUI_4.Font = Enum.Font.SourceSans
  718. HighlightUI_4.FontSize = Enum.FontSize.Size14
  719. HighlightUI_4.Text = ""
  720. HighlightUI_4.TextSize = 14
  721. HighlightUI_4.TextWrapped = true
  722.  
  723. Toggle_4.Name = "Toggle"
  724. Toggle_4.Parent = Clear
  725. Toggle_4.Active = false
  726. Toggle_4.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  727. Toggle_4.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  728. Toggle_4.Position = UDim2.new(0, 120, 0, 150)
  729. Toggle_4.Size = UDim2.new(0, 100, 0, 60)
  730. Toggle_4.Visible = false
  731. Toggle_4.Font = Enum.Font.ArialBold
  732. Toggle_4.FontSize = Enum.FontSize.Size24
  733. Toggle_4.Text = "Clear"
  734. Toggle_4.TextColor3 = Color3.new(1, 1, 1)
  735. Toggle_4.TextSize = 24
  736.  
  737. Property1_4.Name = "Property1"
  738. Property1_4.Parent = Clear
  739. Property1_4.BackgroundColor3 = Color3.new(1, 1, 1)
  740. Property1_4.BackgroundTransparency = 1
  741. Property1_4.Position = UDim2.new(0, -330, 0, 140)
  742. Property1_4.Size = UDim2.new(0, 450, 0, 30)
  743. Property1_4.Visible = false
  744. Property1_4.Font = Enum.Font.ArialBold
  745. Property1_4.FontSize = Enum.FontSize.Size18
  746. Property1_4.Text = "Clear ESP"
  747. Property1_4.TextColor3 = Color3.new(1, 1, 1)
  748. Property1_4.TextSize = 18
  749. Property1_4.TextXAlignment = Enum.TextXAlignment.Left
  750.  
  751. Property2_4.Name = "Property2"
  752. Property2_4.Parent = Clear
  753. Property2_4.BackgroundColor3 = Color3.new(1, 1, 1)
  754. Property2_4.BackgroundTransparency = 1
  755. Property2_4.Position = UDim2.new(0, -330, 0, 170)
  756. Property2_4.Size = UDim2.new(0, 450, 0, 30)
  757. Property2_4.Visible = false
  758. Property2_4.Font = Enum.Font.ArialBold
  759. Property2_4.FontSize = Enum.FontSize.Size18
  760. Property2_4.Text = "Works in MMX / MM2"
  761. Property2_4.TextColor3 = Color3.new(1, 1, 1)
  762. Property2_4.TextSize = 18
  763. Property2_4.TextXAlignment = Enum.TextXAlignment.Left
  764.  
  765. Property3_4.Name = "Property3"
  766. Property3_4.Parent = Clear
  767. Property3_4.BackgroundColor3 = Color3.new(1, 1, 1)
  768. Property3_4.BackgroundTransparency = 1
  769. Property3_4.Position = UDim2.new(0, -330, 0, 200)
  770. Property3_4.Size = UDim2.new(0, 450, 0, 30)
  771. Property3_4.Visible = false
  772. Property3_4.Font = Enum.Font.ArialBold
  773. Property3_4.FontSize = Enum.FontSize.Size18
  774. Property3_4.Text = "RIP"
  775. Property3_4.TextColor3 = Color3.new(1, 1, 1)
  776. Property3_4.TextSize = 18
  777. Property3_4.TextXAlignment = Enum.TextXAlignment.Left
  778.  
  779. TopLevelBAR.Name = "TopLevelBAR"
  780. TopLevelBAR.Parent = Roles
  781. TopLevelBAR.BackgroundColor3 = Color3.new(1, 1, 1)
  782. TopLevelBAR.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  783. TopLevelBAR.BorderSizePixel = 0
  784. TopLevelBAR.Size = UDim2.new(0, 80, 0, 1)
  785. TopLevelBAR.Visible = false
  786. TopLevelBAR.Font = Enum.Font.SourceSans
  787. TopLevelBAR.FontSize = Enum.FontSize.Size24
  788. TopLevelBAR.Text = ""
  789. TopLevelBAR.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  790. TopLevelBAR.TextSize = 24
  791.  
  792. Game.Name = "Game"
  793. Game.Parent = MMXGui
  794. Game.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  795. Game.BackgroundTransparency = 1
  796. Game.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  797. Game.BorderSizePixel = 0
  798. Game.Position = UDim2.new(0.449999988, 0, 0.0199999996, 0)
  799. Game.Size = UDim2.new(0, 80, 0, 40)
  800. Game.Font = Enum.Font.SourceSans
  801. Game.FontSize = Enum.FontSize.Size24
  802. Game.Text = "Game"
  803. Game.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  804. Game.TextSize = 24
  805.  
  806. Coin.Name = "Coin"
  807. Coin.Parent = Game
  808. Coin.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  809. Coin.Position = UDim2.new(0, -95, 0, 100)
  810. Coin.Size = UDim2.new(0, 100, 0, 100)
  811. Coin.Visible = false
  812. Coin.Font = Enum.Font.ArialBold
  813. Coin.FontSize = Enum.FontSize.Size24
  814. Coin.Text = "Get Coins"
  815. Coin.TextColor3 = Color3.new(1, 1, 1)
  816. Coin.TextSize = 20
  817.  
  818. Property1_5.Name = "Property1"
  819. Property1_5.Parent = Coin
  820. Property1_5.BackgroundColor3 = Color3.new(1, 1, 1)
  821. Property1_5.BackgroundTransparency = 1
  822. Property1_5.Position = UDim2.new(0, -160, 0, 140)
  823. Property1_5.Size = UDim2.new(0, 450, 0, 30)
  824. Property1_5.Visible = false
  825. Property1_5.Font = Enum.Font.ArialBold
  826. Property1_5.FontSize = Enum.FontSize.Size18
  827. Property1_5.Text = "Teleports coins to you"
  828. Property1_5.TextColor3 = Color3.new(1, 1, 1)
  829. Property1_5.TextSize = 18
  830. Property1_5.TextXAlignment = Enum.TextXAlignment.Left
  831.  
  832. Property2_5.Name = "Property2"
  833. Property2_5.Parent = Coin
  834. Property2_5.BackgroundColor3 = Color3.new(1, 1, 1)
  835. Property2_5.BackgroundTransparency = 1
  836. Property2_5.Position = UDim2.new(0, -160, 0, 170)
  837. Property2_5.Size = UDim2.new(0, 450, 0, 30)
  838. Property2_5.Visible = false
  839. Property2_5.Font = Enum.Font.ArialBold
  840. Property2_5.FontSize = Enum.FontSize.Size18
  841. Property2_5.Text = "Works in MMX"
  842. Property2_5.TextColor3 = Color3.new(1, 1, 1)
  843. Property2_5.TextSize = 18
  844. Property2_5.TextXAlignment = Enum.TextXAlignment.Left
  845.  
  846. Property3_5.Name = "Property3"
  847. Property3_5.Parent = Coin
  848. Property3_5.BackgroundColor3 = Color3.new(1, 1, 1)
  849. Property3_5.BackgroundTransparency = 1
  850. Property3_5.Position = UDim2.new(0, -160, 0, 200)
  851. Property3_5.Size = UDim2.new(0, 450, 0, 30)
  852. Property3_5.Visible = false
  853. Property3_5.Font = Enum.Font.ArialBold
  854. Property3_5.FontSize = Enum.FontSize.Size18
  855. Property3_5.Text = "Sir, you are under arrest for theft."
  856. Property3_5.TextColor3 = Color3.new(1, 1, 1)
  857. Property3_5.TextSize = 18
  858. Property3_5.TextXAlignment = Enum.TextXAlignment.Left
  859.  
  860. Toggle_5.Name = "Toggle"
  861. Toggle_5.Parent = Coin
  862. Toggle_5.Active = false
  863. Toggle_5.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  864. Toggle_5.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  865. Toggle_5.Position = UDim2.new(0, 270, 0, 150)
  866. Toggle_5.Size = UDim2.new(0, 100, 0, 60)
  867. Toggle_5.Visible = false
  868. Toggle_5.Font = Enum.Font.ArialBold
  869. Toggle_5.FontSize = Enum.FontSize.Size24
  870. Toggle_5.Text = "Collect"
  871. Toggle_5.TextColor3 = Color3.new(1, 1, 1)
  872. Toggle_5.TextSize = 24
  873.  
  874. HighlightUI_5.Name = "HighlightUI"
  875. HighlightUI_5.Parent = Coin
  876. HighlightUI_5.BackgroundColor3 = Color3.new(1, 1, 1)
  877. HighlightUI_5.Position = UDim2.new(0, 0, 0, -10)
  878. HighlightUI_5.Size = UDim2.new(0, 100, 0, 1)
  879. HighlightUI_5.Visible = false
  880. HighlightUI_5.Font = Enum.Font.SourceSans
  881. HighlightUI_5.FontSize = Enum.FontSize.Size14
  882. HighlightUI_5.Text = ""
  883. HighlightUI_5.TextSize = 14
  884. HighlightUI_5.TextWrapped = true
  885.  
  886. Gun.Name = "Gun"
  887. Gun.Parent = Game
  888. Gun.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  889. Gun.Position = UDim2.new(0, -255, 0, 100)
  890. Gun.Size = UDim2.new(0, 100, 0, 100)
  891. Gun.Visible = false
  892. Gun.Font = Enum.Font.ArialBold
  893. Gun.FontSize = Enum.FontSize.Size24
  894. Gun.Text = "Get Gun"
  895. Gun.TextColor3 = Color3.new(1, 1, 1)
  896. Gun.TextSize = 24
  897.  
  898. Property1_6.Name = "Property1"
  899. Property1_6.Parent = Gun
  900. Property1_6.BackgroundColor3 = Color3.new(1, 1, 1)
  901. Property1_6.BackgroundTransparency = 1
  902. Property1_6.Position = UDim2.new(0, 0, 0, 140)
  903. Property1_6.Size = UDim2.new(0, 450, 0, 30)
  904. Property1_6.Font = Enum.Font.ArialBold
  905. Property1_6.FontSize = Enum.FontSize.Size18
  906. Property1_6.Text = "Teleports the gun to you"
  907. Property1_6.TextColor3 = Color3.new(1, 1, 1)
  908. Property1_6.TextSize = 18
  909. Property1_6.TextXAlignment = Enum.TextXAlignment.Left
  910.  
  911. Property2_6.Name = "Property2"
  912. Property2_6.Parent = Gun
  913. Property2_6.BackgroundColor3 = Color3.new(1, 1, 1)
  914. Property2_6.BackgroundTransparency = 1
  915. Property2_6.Position = UDim2.new(0, 0, 0, 170)
  916. Property2_6.Size = UDim2.new(0, 450, 0, 30)
  917. Property2_6.Font = Enum.Font.ArialBold
  918. Property2_6.FontSize = Enum.FontSize.Size18
  919. Property2_6.Text = "Works in MMX only"
  920. Property2_6.TextColor3 = Color3.new(1, 1, 1)
  921. Property2_6.TextSize = 18
  922. Property2_6.TextXAlignment = Enum.TextXAlignment.Left
  923.  
  924. Property3_6.Name = "Property3"
  925. Property3_6.Parent = Gun
  926. Property3_6.BackgroundColor3 = Color3.new(1, 1, 1)
  927. Property3_6.BackgroundTransparency = 1
  928. Property3_6.Position = UDim2.new(0, 0, 0, 200)
  929. Property3_6.Size = UDim2.new(0, 450, 0, 30)
  930. Property3_6.Font = Enum.Font.ArialBold
  931. Property3_6.FontSize = Enum.FontSize.Size18
  932. Property3_6.Text = "Get rekt camper..."
  933. Property3_6.TextColor3 = Color3.new(1, 1, 1)
  934. Property3_6.TextSize = 18
  935. Property3_6.TextXAlignment = Enum.TextXAlignment.Left
  936.  
  937. On.Name = "On"
  938. On.Parent = Gun
  939. On.Active = false
  940. On.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  941. On.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  942. On.Position = UDim2.new(0, 390, 0, 150)
  943. On.Size = UDim2.new(0, 100, 0, 60)
  944. On.Font = Enum.Font.ArialBold
  945. On.FontSize = Enum.FontSize.Size24
  946. On.Text = "Toggle"
  947. On.TextColor3 = Color3.new(1, 1, 1)
  948. On.TextSize = 24
  949.  
  950. HighlightUI_6.Name = "HighlightUI"
  951. HighlightUI_6.Parent = Gun
  952. HighlightUI_6.BackgroundColor3 = Color3.new(1, 1, 1)
  953. HighlightUI_6.Position = UDim2.new(0, 0, 0, -10)
  954. HighlightUI_6.Size = UDim2.new(0, 100, 0, 1)
  955. HighlightUI_6.Font = Enum.Font.SourceSans
  956. HighlightUI_6.FontSize = Enum.FontSize.Size14
  957. HighlightUI_6.Text = ""
  958. HighlightUI_6.TextSize = 14
  959. HighlightUI_6.TextWrapped = true
  960.  
  961. CoinsESP.Name = "CoinsESP"
  962. CoinsESP.Parent = Game
  963. CoinsESP.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.498039)
  964. CoinsESP.Position = UDim2.new(0, 245, 0, 100)
  965. CoinsESP.Size = UDim2.new(0, 100, 0, 100)
  966. CoinsESP.Visible = false
  967. CoinsESP.Font = Enum.Font.ArialBold
  968. CoinsESP.FontSize = Enum.FontSize.Size24
  969. CoinsESP.Text = "Coins ESP"
  970. CoinsESP.TextColor3 = Color3.new(1, 1, 1)
  971. CoinsESP.TextSize = 20
  972.  
  973. Toggle_6.Name = "Toggle"
  974. Toggle_6.Parent = CoinsESP
  975. Toggle_6.Active = false
  976. Toggle_6.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  977. Toggle_6.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  978. Toggle_6.Position = UDim2.new(0, -60, 0, 150)
  979. Toggle_6.Size = UDim2.new(0, 100, 0, 60)
  980. Toggle_6.Visible = false
  981. Toggle_6.Font = Enum.Font.ArialBold
  982. Toggle_6.FontSize = Enum.FontSize.Size24
  983. Toggle_6.Text = "Toggle"
  984. Toggle_6.TextColor3 = Color3.new(1, 1, 1)
  985. Toggle_6.TextSize = 24
  986.  
  987. Property1_7.Name = "Property1"
  988. Property1_7.Parent = CoinsESP
  989. Property1_7.BackgroundColor3 = Color3.new(1, 1, 1)
  990. Property1_7.BackgroundTransparency = 1
  991. Property1_7.Position = UDim2.new(0, -500, 0, 140)
  992. Property1_7.Size = UDim2.new(0, 450, 0, 30)
  993. Property1_7.Visible = false
  994. Property1_7.Font = Enum.Font.ArialBold
  995. Property1_7.FontSize = Enum.FontSize.Size18
  996. Property1_7.Text = "Predict the future... || Fixed by checkraisefold"
  997. Property1_7.TextColor3 = Color3.new(1, 1, 1)
  998. Property1_7.TextSize = 18
  999. Property1_7.TextXAlignment = Enum.TextXAlignment.Left
  1000.  
  1001. Property2_7.Name = "Property2"
  1002. Property2_7.Parent = CoinsESP
  1003. Property2_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1004. Property2_7.BackgroundTransparency = 1
  1005. Property2_7.Position = UDim2.new(0, -500, 0, 170)
  1006. Property2_7.Size = UDim2.new(0, 450, 0, 30)
  1007. Property2_7.Visible = false
  1008. Property2_7.Font = Enum.Font.ArialBold
  1009. Property2_7.FontSize = Enum.FontSize.Size18
  1010. Property2_7.Text = "Works in MMX"
  1011. Property2_7.TextColor3 = Color3.new(1, 1, 1)
  1012. Property2_7.TextSize = 18
  1013. Property2_7.TextXAlignment = Enum.TextXAlignment.Left
  1014.  
  1015. Property3_7.Name = "Property3"
  1016. Property3_7.Parent = CoinsESP
  1017. Property3_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1018. Property3_7.BackgroundTransparency = 1
  1019. Property3_7.Position = UDim2.new(0, -500, 0, 200)
  1020. Property3_7.Size = UDim2.new(0, 450, 0, 30)
  1021. Property3_7.Visible = false
  1022. Property3_7.Font = Enum.Font.ArialBold
  1023. Property3_7.FontSize = Enum.FontSize.Size18
  1024. Property3_7.Text = "I see the riches hidden in the deep."
  1025. Property3_7.TextColor3 = Color3.new(1, 1, 1)
  1026. Property3_7.TextSize = 18
  1027. Property3_7.TextXAlignment = Enum.TextXAlignment.Left
  1028.  
  1029. HighlightUI_7.Name = "HighlightUI"
  1030. HighlightUI_7.Parent = CoinsESP
  1031. HighlightUI_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1032. HighlightUI_7.Position = UDim2.new(0, 0, 0, -10)
  1033. HighlightUI_7.Size = UDim2.new(0, 100, 0, 1)
  1034. HighlightUI_7.Visible = false
  1035. HighlightUI_7.Font = Enum.Font.SourceSans
  1036. HighlightUI_7.FontSize = Enum.FontSize.Size14
  1037. HighlightUI_7.Text = ""
  1038. HighlightUI_7.TextSize = 14
  1039. HighlightUI_7.TextWrapped = true
  1040.  
  1041. GunESP.Name = "GunESP"
  1042. GunESP.Parent = Game
  1043. GunESP.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  1044. GunESP.Position = UDim2.new(0, 75, 0, 100)
  1045. GunESP.Size = UDim2.new(0, 100, 0, 100)
  1046. GunESP.Visible = false
  1047. GunESP.Font = Enum.Font.ArialBold
  1048. GunESP.FontSize = Enum.FontSize.Size24
  1049. GunESP.Text = "Gun ESP"
  1050. GunESP.TextColor3 = Color3.new(1, 1, 1)
  1051. GunESP.TextSize = 24
  1052.  
  1053. HighlightUI_8.Name = "HighlightUI"
  1054. HighlightUI_8.Parent = GunESP
  1055. HighlightUI_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1056. HighlightUI_8.Position = UDim2.new(0, 0, 0, -10)
  1057. HighlightUI_8.Size = UDim2.new(0, 100, 0, 1)
  1058. HighlightUI_8.Visible = false
  1059. HighlightUI_8.Font = Enum.Font.SourceSans
  1060. HighlightUI_8.FontSize = Enum.FontSize.Size14
  1061. HighlightUI_8.Text = ""
  1062. HighlightUI_8.TextSize = 14
  1063. HighlightUI_8.TextWrapped = true
  1064.  
  1065. Toggle_7.Name = "Toggle"
  1066. Toggle_7.Parent = GunESP
  1067. Toggle_7.Active = false
  1068. Toggle_7.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1069. Toggle_7.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1070. Toggle_7.Position = UDim2.new(0, 120, 0, 150)
  1071. Toggle_7.Size = UDim2.new(0, 100, 0, 60)
  1072. Toggle_7.Visible = false
  1073. Toggle_7.Font = Enum.Font.ArialBold
  1074. Toggle_7.FontSize = Enum.FontSize.Size24
  1075. Toggle_7.Text = "Toggle"
  1076. Toggle_7.TextColor3 = Color3.new(1, 1, 1)
  1077. Toggle_7.TextSize = 24
  1078.  
  1079. Property1_8.Name = "Property1"
  1080. Property1_8.Parent = GunESP
  1081. Property1_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1082. Property1_8.BackgroundTransparency = 1
  1083. Property1_8.Position = UDim2.new(0, -330, 0, 140)
  1084. Property1_8.Size = UDim2.new(0, 450, 0, 30)
  1085. Property1_8.Visible = false
  1086. Property1_8.Font = Enum.Font.ArialBold
  1087. Property1_8.FontSize = Enum.FontSize.Size18
  1088. Property1_8.Text = "See where is the gun at"
  1089. Property1_8.TextColor3 = Color3.new(1, 1, 1)
  1090. Property1_8.TextSize = 18
  1091. Property1_8.TextXAlignment = Enum.TextXAlignment.Left
  1092.  
  1093. Property2_8.Name = "Property2"
  1094. Property2_8.Parent = GunESP
  1095. Property2_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1096. Property2_8.BackgroundTransparency = 1
  1097. Property2_8.Position = UDim2.new(0, -330, 0, 170)
  1098. Property2_8.Size = UDim2.new(0, 450, 0, 30)
  1099. Property2_8.Visible = false
  1100. Property2_8.Font = Enum.Font.ArialBold
  1101. Property2_8.FontSize = Enum.FontSize.Size18
  1102. Property2_8.Text = "Works in MMX"
  1103. Property2_8.TextColor3 = Color3.new(1, 1, 1)
  1104. Property2_8.TextSize = 18
  1105. Property2_8.TextXAlignment = Enum.TextXAlignment.Left
  1106.  
  1107. Property3_8.Name = "Property3"
  1108. Property3_8.Parent = GunESP
  1109. Property3_8.BackgroundColor3 = Color3.new(1, 1, 1)
  1110. Property3_8.BackgroundTransparency = 1
  1111. Property3_8.Position = UDim2.new(0, -330, 0, 200)
  1112. Property3_8.Size = UDim2.new(0, 450, 0, 30)
  1113. Property3_8.Visible = false
  1114. Property3_8.Font = Enum.Font.ArialBold
  1115. Property3_8.FontSize = Enum.FontSize.Size18
  1116. Property3_8.Text = "I know where is the gun..."
  1117. Property3_8.TextColor3 = Color3.new(1, 1, 1)
  1118. Property3_8.TextSize = 18
  1119. Property3_8.TextXAlignment = Enum.TextXAlignment.Left
  1120.  
  1121. TopLevelBAR_2.Name = "TopLevelBAR"
  1122. TopLevelBAR_2.Parent = Game
  1123. TopLevelBAR_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1124. TopLevelBAR_2.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1125. TopLevelBAR_2.BorderSizePixel = 0
  1126. TopLevelBAR_2.Size = UDim2.new(0, 80, 0, 1)
  1127. TopLevelBAR_2.Visible = false
  1128. TopLevelBAR_2.Font = Enum.Font.SourceSans
  1129. TopLevelBAR_2.FontSize = Enum.FontSize.Size24
  1130. TopLevelBAR_2.Text = ""
  1131. TopLevelBAR_2.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  1132. TopLevelBAR_2.TextSize = 24
  1133.  
  1134. Player.Name = "Player"
  1135. Player.Parent = MMXGui
  1136. Player.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1137. Player.BackgroundTransparency = 1
  1138. Player.BorderColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  1139. Player.BorderSizePixel = 0
  1140. Player.Position = UDim2.new(0.600000024, 0, 0.0199999996, 0)
  1141. Player.Size = UDim2.new(0, 80, 0, 40)
  1142. Player.Font = Enum.Font.SourceSans
  1143. Player.FontSize = Enum.FontSize.Size24
  1144. Player.Text = "Player"
  1145. Player.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  1146. Player.TextSize = 24
  1147.  
  1148. Noclip.Name = "Noclip"
  1149. Noclip.Parent = Player
  1150. Noclip.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  1151. Noclip.Position = UDim2.new(0, -360, 0, 100)
  1152. Noclip.Size = UDim2.new(0, 100, 0, 100)
  1153. Noclip.Visible = false
  1154. Noclip.Font = Enum.Font.ArialBold
  1155. Noclip.FontSize = Enum.FontSize.Size24
  1156. Noclip.Text = "Noclip"
  1157. Noclip.TextColor3 = Color3.new(1, 1, 1)
  1158. Noclip.TextSize = 24
  1159.  
  1160. Property1_9.Name = "Property1"
  1161. Property1_9.Parent = Noclip
  1162. Property1_9.BackgroundColor3 = Color3.new(1, 1, 1)
  1163. Property1_9.BackgroundTransparency = 1
  1164. Property1_9.Position = UDim2.new(0, 0, 0, 140)
  1165. Property1_9.Size = UDim2.new(0, 450, 0, 30)
  1166. Property1_9.Font = Enum.Font.ArialBold
  1167. Property1_9.FontSize = Enum.FontSize.Size18
  1168. Property1_9.Text = "Noclip + Fly"
  1169. Property1_9.TextColor3 = Color3.new(1, 1, 1)
  1170. Property1_9.TextSize = 18
  1171. Property1_9.TextXAlignment = Enum.TextXAlignment.Left
  1172.  
  1173. Property2_9.Name = "Property2"
  1174. Property2_9.Parent = Noclip
  1175. Property2_9.BackgroundColor3 = Color3.new(1, 1, 1)
  1176. Property2_9.BackgroundTransparency = 1
  1177. Property2_9.Position = UDim2.new(0, 0, 0, 170)
  1178. Property2_9.Size = UDim2.new(0, 450, 0, 30)
  1179. Property2_9.Font = Enum.Font.ArialBold
  1180. Property2_9.FontSize = Enum.FontSize.Size18
  1181. Property2_9.Text = "Works in R6 only"
  1182. Property2_9.TextColor3 = Color3.new(1, 1, 1)
  1183. Property2_9.TextSize = 18
  1184. Property2_9.TextXAlignment = Enum.TextXAlignment.Left
  1185.  
  1186. Property3_9.Name = "Property3"
  1187. Property3_9.Parent = Noclip
  1188. Property3_9.BackgroundColor3 = Color3.new(1, 1, 1)
  1189. Property3_9.BackgroundTransparency = 1
  1190. Property3_9.Position = UDim2.new(0, 0, 0, 200)
  1191. Property3_9.Size = UDim2.new(0, 450, 0, 30)
  1192. Property3_9.Font = Enum.Font.ArialBold
  1193. Property3_9.FontSize = Enum.FontSize.Size18
  1194. Property3_9.Text = "Walk through walls to avoid murderer(s) to win!"
  1195. Property3_9.TextColor3 = Color3.new(1, 1, 1)
  1196. Property3_9.TextSize = 18
  1197. Property3_9.TextXAlignment = Enum.TextXAlignment.Left
  1198.  
  1199. On_2.Name = "On"
  1200. On_2.Parent = Noclip
  1201. On_2.Active = false
  1202. On_2.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1203. On_2.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1204. On_2.Position = UDim2.new(0, 390, 0, 150)
  1205. On_2.Size = UDim2.new(0, 100, 0, 60)
  1206. On_2.Font = Enum.Font.ArialBold
  1207. On_2.FontSize = Enum.FontSize.Size24
  1208. On_2.Text = "Toggle"
  1209. On_2.TextColor3 = Color3.new(1, 1, 1)
  1210. On_2.TextSize = 24
  1211.  
  1212. HighlightUI_9.Name = "HighlightUI"
  1213. HighlightUI_9.Parent = Noclip
  1214. HighlightUI_9.BackgroundColor3 = Color3.new(1, 1, 1)
  1215. HighlightUI_9.Position = UDim2.new(0, 0, 0, -10)
  1216. HighlightUI_9.Size = UDim2.new(0, 100, 0, 1)
  1217. HighlightUI_9.Font = Enum.Font.SourceSans
  1218. HighlightUI_9.FontSize = Enum.FontSize.Size14
  1219. HighlightUI_9.Text = ""
  1220. HighlightUI_9.TextSize = 14
  1221. HighlightUI_9.TextWrapped = true
  1222.  
  1223. Fly.Name = "Fly"
  1224. Fly.Parent = Player
  1225. Fly.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  1226. Fly.Position = UDim2.new(0, -200, 0, 100)
  1227. Fly.Size = UDim2.new(0, 100, 0, 100)
  1228. Fly.Visible = false
  1229. Fly.Font = Enum.Font.ArialBold
  1230. Fly.FontSize = Enum.FontSize.Size24
  1231. Fly.Text = "Fly"
  1232. Fly.TextColor3 = Color3.new(1, 1, 1)
  1233. Fly.TextSize = 24
  1234.  
  1235. Property1_10.Name = "Property1"
  1236. Property1_10.Parent = Fly
  1237. Property1_10.BackgroundColor3 = Color3.new(1, 1, 1)
  1238. Property1_10.BackgroundTransparency = 1
  1239. Property1_10.Position = UDim2.new(0, -160, 0, 140)
  1240. Property1_10.Size = UDim2.new(0, 450, 0, 30)
  1241. Property1_10.Visible = false
  1242. Property1_10.Font = Enum.Font.ArialBold
  1243. Property1_10.FontSize = Enum.FontSize.Size18
  1244. Property1_10.Text = "Fly (Do not toggle with noclip)"
  1245. Property1_10.TextColor3 = Color3.new(1, 1, 1)
  1246. Property1_10.TextSize = 18
  1247. Property1_10.TextXAlignment = Enum.TextXAlignment.Left
  1248.  
  1249. Property2_10.Name = "Property2"
  1250. Property2_10.Parent = Fly
  1251. Property2_10.BackgroundColor3 = Color3.new(1, 1, 1)
  1252. Property2_10.BackgroundTransparency = 1
  1253. Property2_10.Position = UDim2.new(0, -160, 0, 170)
  1254. Property2_10.Size = UDim2.new(0, 450, 0, 30)
  1255. Property2_10.Visible = false
  1256. Property2_10.Font = Enum.Font.ArialBold
  1257. Property2_10.FontSize = Enum.FontSize.Size18
  1258. Property2_10.Text = "Works in R6 || R15 not sure"
  1259. Property2_10.TextColor3 = Color3.new(1, 1, 1)
  1260. Property2_10.TextSize = 18
  1261. Property2_10.TextXAlignment = Enum.TextXAlignment.Left
  1262.  
  1263. Property3_10.Name = "Property3"
  1264. Property3_10.Parent = Fly
  1265. Property3_10.BackgroundColor3 = Color3.new(1, 1, 1)
  1266. Property3_10.BackgroundTransparency = 1
  1267. Property3_10.Position = UDim2.new(0, -160, 0, 200)
  1268. Property3_10.Size = UDim2.new(0, 450, 0, 30)
  1269. Property3_10.Visible = false
  1270. Property3_10.Font = Enum.Font.ArialBold
  1271. Property3_10.FontSize = Enum.FontSize.Size18
  1272. Property3_10.Text = "Makes you fly away into the skies"
  1273. Property3_10.TextColor3 = Color3.new(1, 1, 1)
  1274. Property3_10.TextSize = 18
  1275. Property3_10.TextXAlignment = Enum.TextXAlignment.Left
  1276.  
  1277. Toggle_8.Name = "Toggle"
  1278. Toggle_8.Parent = Fly
  1279. Toggle_8.Active = false
  1280. Toggle_8.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1281. Toggle_8.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1282. Toggle_8.Position = UDim2.new(0, 270, 0, 150)
  1283. Toggle_8.Size = UDim2.new(0, 100, 0, 60)
  1284. Toggle_8.Visible = false
  1285. Toggle_8.Font = Enum.Font.ArialBold
  1286. Toggle_8.FontSize = Enum.FontSize.Size24
  1287. Toggle_8.Text = "Toggle"
  1288. Toggle_8.TextColor3 = Color3.new(1, 1, 1)
  1289. Toggle_8.TextSize = 24
  1290.  
  1291. HighlightUI_10.Name = "HighlightUI"
  1292. HighlightUI_10.Parent = Fly
  1293. HighlightUI_10.BackgroundColor3 = Color3.new(1, 1, 1)
  1294. HighlightUI_10.Position = UDim2.new(0, 0, 0, -10)
  1295. HighlightUI_10.Size = UDim2.new(0, 100, 0, 1)
  1296. HighlightUI_10.Visible = false
  1297. HighlightUI_10.Font = Enum.Font.SourceSans
  1298. HighlightUI_10.FontSize = Enum.FontSize.Size14
  1299. HighlightUI_10.Text = ""
  1300. HighlightUI_10.TextSize = 14
  1301. HighlightUI_10.TextWrapped = true
  1302.  
  1303. HighJump.Name = "HighJump"
  1304. HighJump.Parent = Player
  1305. HighJump.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.498039)
  1306. HighJump.Position = UDim2.new(0, 140, 0, 100)
  1307. HighJump.Size = UDim2.new(0, 100, 0, 100)
  1308. HighJump.Visible = false
  1309. HighJump.Font = Enum.Font.ArialBold
  1310. HighJump.FontSize = Enum.FontSize.Size24
  1311. HighJump.Text = "High Jump"
  1312. HighJump.TextColor3 = Color3.new(1, 1, 1)
  1313. HighJump.TextSize = 20
  1314.  
  1315. Toggle_9.Name = "Toggle"
  1316. Toggle_9.Parent = HighJump
  1317. Toggle_9.Active = false
  1318. Toggle_9.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1319. Toggle_9.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1320. Toggle_9.Position = UDim2.new(0, -60, 0, 150)
  1321. Toggle_9.Size = UDim2.new(0, 100, 0, 60)
  1322. Toggle_9.Visible = false
  1323. Toggle_9.Font = Enum.Font.ArialBold
  1324. Toggle_9.FontSize = Enum.FontSize.Size24
  1325. Toggle_9.Text = "Toggle"
  1326. Toggle_9.TextColor3 = Color3.new(1, 1, 1)
  1327. Toggle_9.TextSize = 24
  1328.  
  1329. Property1_11.Name = "Property1"
  1330. Property1_11.Parent = HighJump
  1331. Property1_11.BackgroundColor3 = Color3.new(1, 1, 1)
  1332. Property1_11.BackgroundTransparency = 1
  1333. Property1_11.Position = UDim2.new(0, -500, 0, 140)
  1334. Property1_11.Size = UDim2.new(0, 450, 0, 30)
  1335. Property1_11.Visible = false
  1336. Property1_11.Font = Enum.Font.ArialBold
  1337. Property1_11.FontSize = Enum.FontSize.Size18
  1338. Property1_11.Text = "Gives you high jump"
  1339. Property1_11.TextColor3 = Color3.new(1, 1, 1)
  1340. Property1_11.TextSize = 18
  1341. Property1_11.TextXAlignment = Enum.TextXAlignment.Left
  1342.  
  1343. Property2_11.Name = "Property2"
  1344. Property2_11.Parent = HighJump
  1345. Property2_11.BackgroundColor3 = Color3.new(1, 1, 1)
  1346. Property2_11.BackgroundTransparency = 1
  1347. Property2_11.Position = UDim2.new(0, -500, 0, 170)
  1348. Property2_11.Size = UDim2.new(0, 450, 0, 30)
  1349. Property2_11.Visible = false
  1350. Property2_11.Font = Enum.Font.ArialBold
  1351. Property2_11.FontSize = Enum.FontSize.Size18
  1352. Property2_11.Text = "Works in R6"
  1353. Property2_11.TextColor3 = Color3.new(1, 1, 1)
  1354. Property2_11.TextSize = 18
  1355. Property2_11.TextXAlignment = Enum.TextXAlignment.Left
  1356.  
  1357. Property3_11.Name = "Property3"
  1358. Property3_11.Parent = HighJump
  1359. Property3_11.BackgroundColor3 = Color3.new(1, 1, 1)
  1360. Property3_11.BackgroundTransparency = 1
  1361. Property3_11.Position = UDim2.new(0, -500, 0, 200)
  1362. Property3_11.Size = UDim2.new(0, 450, 0, 30)
  1363. Property3_11.Visible = false
  1364. Property3_11.Font = Enum.Font.ArialBold
  1365. Property3_11.FontSize = Enum.FontSize.Size18
  1366. Property3_11.Text = "Now jump into the skies and juke the murderer!"
  1367. Property3_11.TextColor3 = Color3.new(1, 1, 1)
  1368. Property3_11.TextSize = 18
  1369. Property3_11.TextXAlignment = Enum.TextXAlignment.Left
  1370.  
  1371. HighlightUI_11.Name = "HighlightUI"
  1372. HighlightUI_11.Parent = HighJump
  1373. HighlightUI_11.BackgroundColor3 = Color3.new(1, 1, 1)
  1374. HighlightUI_11.Position = UDim2.new(0, 0, 0, -10)
  1375. HighlightUI_11.Size = UDim2.new(0, 100, 0, 1)
  1376. HighlightUI_11.Visible = false
  1377. HighlightUI_11.Font = Enum.Font.SourceSans
  1378. HighlightUI_11.FontSize = Enum.FontSize.Size14
  1379. HighlightUI_11.Text = ""
  1380. HighlightUI_11.TextSize = 14
  1381. HighlightUI_11.TextWrapped = true
  1382.  
  1383. Speed.Name = "Speed"
  1384. Speed.Parent = Player
  1385. Speed.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  1386. Speed.Position = UDim2.new(0, -30, 0, 100)
  1387. Speed.Size = UDim2.new(0, 100, 0, 100)
  1388. Speed.Visible = false
  1389. Speed.Font = Enum.Font.ArialBold
  1390. Speed.FontSize = Enum.FontSize.Size24
  1391. Speed.Text = "Speed"
  1392. Speed.TextColor3 = Color3.new(1, 1, 1)
  1393. Speed.TextSize = 24
  1394.  
  1395. HighlightUI_12.Name = "HighlightUI"
  1396. HighlightUI_12.Parent = Speed
  1397. HighlightUI_12.BackgroundColor3 = Color3.new(1, 1, 1)
  1398. HighlightUI_12.Position = UDim2.new(0, 0, 0, -10)
  1399. HighlightUI_12.Size = UDim2.new(0, 100, 0, 1)
  1400. HighlightUI_12.Visible = false
  1401. HighlightUI_12.Font = Enum.Font.SourceSans
  1402. HighlightUI_12.FontSize = Enum.FontSize.Size14
  1403. HighlightUI_12.Text = ""
  1404. HighlightUI_12.TextSize = 14
  1405. HighlightUI_12.TextWrapped = true
  1406.  
  1407. Toggle_10.Name = "Toggle"
  1408. Toggle_10.Parent = Speed
  1409. Toggle_10.Active = false
  1410. Toggle_10.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1411. Toggle_10.BorderColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1412. Toggle_10.Position = UDim2.new(0, 120, 0, 150)
  1413. Toggle_10.Size = UDim2.new(0, 100, 0, 60)
  1414. Toggle_10.Visible = false
  1415. Toggle_10.Font = Enum.Font.ArialBold
  1416. Toggle_10.FontSize = Enum.FontSize.Size24
  1417. Toggle_10.Text = "Toggle"
  1418. Toggle_10.TextColor3 = Color3.new(1, 1, 1)
  1419. Toggle_10.TextSize = 24
  1420.  
  1421. Property1_12.Name = "Property1"
  1422. Property1_12.Parent = Speed
  1423. Property1_12.BackgroundColor3 = Color3.new(1, 1, 1)
  1424. Property1_12.BackgroundTransparency = 1
  1425. Property1_12.Position = UDim2.new(0, -330, 0, 140)
  1426. Property1_12.Size = UDim2.new(0, 450, 0, 30)
  1427. Property1_12.Visible = false
  1428. Property1_12.Font = Enum.Font.ArialBold
  1429. Property1_12.FontSize = Enum.FontSize.Size18
  1430. Property1_12.Text = "Speed hack"
  1431. Property1_12.TextColor3 = Color3.new(1, 1, 1)
  1432. Property1_12.TextSize = 18
  1433. Property1_12.TextXAlignment = Enum.TextXAlignment.Left
  1434.  
  1435. Property2_12.Name = "Property2"
  1436. Property2_12.Parent = Speed
  1437. Property2_12.BackgroundColor3 = Color3.new(1, 1, 1)
  1438. Property2_12.BackgroundTransparency = 1
  1439. Property2_12.Position = UDim2.new(0, -330, 0, 170)
  1440. Property2_12.Size = UDim2.new(0, 450, 0, 30)
  1441. Property2_12.Visible = false
  1442. Property2_12.Font = Enum.Font.ArialBold
  1443. Property2_12.FontSize = Enum.FontSize.Size18
  1444. Property2_12.Text = "Works in R6 + R15!"
  1445. Property2_12.TextColor3 = Color3.new(1, 1, 1)
  1446. Property2_12.TextSize = 18
  1447. Property2_12.TextXAlignment = Enum.TextXAlignment.Left
  1448.  
  1449. Property3_12.Name = "Property3"
  1450. Property3_12.Parent = Speed
  1451. Property3_12.BackgroundColor3 = Color3.new(1, 1, 1)
  1452. Property3_12.BackgroundTransparency = 1
  1453. Property3_12.Position = UDim2.new(0, -330, 0, 200)
  1454. Property3_12.Size = UDim2.new(0, 450, 0, 30)
  1455. Property3_12.Visible = false
  1456. Property3_12.Font = Enum.Font.ArialBold
  1457. Property3_12.FontSize = Enum.FontSize.Size18
  1458. Property3_12.Text = "Gives you 50 walkspeed to escape or kill fast!"
  1459. Property3_12.TextColor3 = Color3.new(1, 1, 1)
  1460. Property3_12.TextSize = 18
  1461. Property3_12.TextXAlignment = Enum.TextXAlignment.Left
  1462.  
  1463. TopLevelBAR_3.Name = "TopLevelBAR"
  1464. TopLevelBAR_3.Parent = Player
  1465. TopLevelBAR_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1466. TopLevelBAR_3.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1467. TopLevelBAR_3.BorderSizePixel = 0
  1468. TopLevelBAR_3.Size = UDim2.new(0, 80, 0, 1)
  1469. TopLevelBAR_3.Visible = false
  1470. TopLevelBAR_3.Font = Enum.Font.SourceSans
  1471. TopLevelBAR_3.FontSize = Enum.FontSize.Size24
  1472. TopLevelBAR_3.Text = ""
  1473. TopLevelBAR_3.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  1474. TopLevelBAR_3.TextSize = 24
  1475.  
  1476. DividerUI.Name = "DividerUI"
  1477. DividerUI.Parent = Player
  1478. DividerUI.BackgroundColor3 = Color3.new(1, 1, 1)
  1479. DividerUI.Position = UDim2.new(0, -350, 0, 220)
  1480. DividerUI.Size = UDim2.new(0, 600, 0, 1)
  1481. DividerUI.Visible = false
  1482. DividerUI.Font = Enum.Font.SourceSans
  1483. DividerUI.FontSize = Enum.FontSize.Size14
  1484. DividerUI.Text = ""
  1485. DividerUI.TextSize = 14
  1486.  
  1487. Credits.Name = "Credits"
  1488. Credits.Parent = MMXGui
  1489. Credits.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1490. Credits.BackgroundTransparency = 1
  1491. Credits.BorderColor3 = Color3.new(0.67451, 0.67451, 0.67451)
  1492. Credits.BorderSizePixel = 0
  1493. Credits.Position = UDim2.new(0.74000001, 0, 0.0199999996, 0)
  1494. Credits.Size = UDim2.new(0, 80, 0, 40)
  1495. Credits.Font = Enum.Font.SourceSans
  1496. Credits.FontSize = Enum.FontSize.Size24
  1497. Credits.Text = "Credits"
  1498. Credits.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  1499. Credits.TextSize = 24
  1500.  
  1501. TopLevelBAR_4.Name = "TopLevelBAR"
  1502. TopLevelBAR_4.Parent = Credits
  1503. TopLevelBAR_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1504. TopLevelBAR_4.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  1505. TopLevelBAR_4.BorderSizePixel = 0
  1506. TopLevelBAR_4.Size = UDim2.new(0, 80, 0, 1)
  1507. TopLevelBAR_4.Visible = false
  1508. TopLevelBAR_4.Font = Enum.Font.SourceSans
  1509. TopLevelBAR_4.FontSize = Enum.FontSize.Size24
  1510. TopLevelBAR_4.Text = ""
  1511. TopLevelBAR_4.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  1512. TopLevelBAR_4.TextSize = 24
  1513.  
  1514. Creds.Name = "Creds"
  1515. Creds.Parent = Credits
  1516. Creds.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1517. Creds.BackgroundTransparency = 1
  1518. Creds.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  1519. Creds.BorderSizePixel = 0
  1520. Creds.Position = UDim2.new(0, -355, 0, 50)
  1521. Creds.Size = UDim2.new(0, 400, 0, 100)
  1522. Creds.Visible = false
  1523. Creds.Font = Enum.Font.SourceSans
  1524. Creds.FontSize = Enum.FontSize.Size36
  1525. Creds.Text = "MMX GUI by Squid || Credits"
  1526. Creds.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  1527. Creds.TextSize = 35
  1528.  
  1529. DividerUI_2.Name = "DividerUI"
  1530. DividerUI_2.Parent = Credits
  1531. DividerUI_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1532. DividerUI_2.Position = UDim2.new(0, -455, 0, 125)
  1533. DividerUI_2.Size = UDim2.new(0, 600, 0, 1)
  1534. DividerUI_2.Visible = false
  1535. DividerUI_2.Font = Enum.Font.SourceSans
  1536. DividerUI_2.FontSize = Enum.FontSize.Size14
  1537. DividerUI_2.Text = ""
  1538. DividerUI_2.TextSize = 14
  1539.  
  1540. Creds_2.Name = "Creds"
  1541. Creds_2.Parent = Credits
  1542. Creds_2.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1543. Creds_2.BackgroundTransparency = 1
  1544. Creds_2.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  1545. Creds_2.BorderSizePixel = 0
  1546. Creds_2.Position = UDim2.new(0, -400, 0, 130)
  1547. Creds_2.Size = UDim2.new(0, 500, 0, 50)
  1548. Creds_2.Visible = false
  1549. Creds_2.Font = Enum.Font.SourceSans
  1550. Creds_2.FontSize = Enum.FontSize.Size36
  1551. Creds_2.Text = "Kujo (UID = 312) || Noclip Script"
  1552. Creds_2.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  1553. Creds_2.TextSize = 35
  1554.  
  1555. Creds_3.Name = "Creds"
  1556. Creds_3.Parent = Credits
  1557. Creds_3.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1558. Creds_3.BackgroundTransparency = 1
  1559. Creds_3.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  1560. Creds_3.BorderSizePixel = 0
  1561. Creds_3.Position = UDim2.new(0, -400, 0, 180)
  1562. Creds_3.Size = UDim2.new(0, 500, 0, 50)
  1563. Creds_3.Visible = false
  1564. Creds_3.Font = Enum.Font.SourceSans
  1565. Creds_3.FontSize = Enum.FontSize.Size36
  1566. Creds_3.Text = "Ignoramical (UID = 235495) || Fly Script"
  1567. Creds_3.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  1568. Creds_3.TextSize = 35
  1569.  
  1570. DividerUI_3.Name = "DividerUI"
  1571. DividerUI_3.Parent = Credits
  1572. DividerUI_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1573. DividerUI_3.Position = UDim2.new(0, -455, 0, 245)
  1574. DividerUI_3.Size = UDim2.new(0, 600, 0, 1)
  1575. DividerUI_3.Visible = false
  1576. DividerUI_3.Font = Enum.Font.SourceSans
  1577. DividerUI_3.FontSize = Enum.FontSize.Size14
  1578. DividerUI_3.Text = ""
  1579. DividerUI_3.TextSize = 14
  1580.  
  1581. Creds_4.Name = "Creds"
  1582. Creds_4.Parent = Credits
  1583. Creds_4.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1584. Creds_4.BackgroundTransparency = 1
  1585. Creds_4.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  1586. Creds_4.BorderSizePixel = 0
  1587. Creds_4.Position = UDim2.new(0, -400, 0, 250)
  1588. Creds_4.Size = UDim2.new(0, 500, 0, 50)
  1589. Creds_4.Visible = false
  1590. Creds_4.Font = Enum.Font.SourceSans
  1591. Creds_4.FontSize = Enum.FontSize.Size36
  1592. Creds_4.Text = "Squid"
  1593. Creds_4.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  1594. Creds_4.TextSize = 35
  1595.  
  1596. TransparencyAERO.Name = "TransparencyAERO"
  1597. TransparencyAERO.Parent = MMXGui
  1598. TransparencyAERO.BackgroundColor3 = Color3.new(1, 1, 1)
  1599. TransparencyAERO.BackgroundTransparency = 0.80000001192093
  1600. TransparencyAERO.BorderColor3 = Color3.new(1, 1, 1)
  1601. TransparencyAERO.Position = UDim2.new(0, 0, -0.0299999993, 0)
  1602. TransparencyAERO.Size = UDim2.new(1, 0, 0, 10)
  1603. TransparencyAERO.Font = Enum.Font.SourceSans
  1604. TransparencyAERO.FontSize = Enum.FontSize.Size14
  1605. TransparencyAERO.Text = ""
  1606. TransparencyAERO.TextSize = 14
  1607.  
  1608. MMXText.Name = "MMXText"
  1609. MMXText.Parent = MMXGui
  1610. MMXText.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1611. MMXText.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  1612. MMXText.BorderSizePixel = 0
  1613. MMXText.Position = UDim2.new(0.0500000007, 0, 0, -30)
  1614. MMXText.Size = UDim2.new(0, 100, 0, 100)
  1615. MMXText.Font = Enum.Font.SourceSans
  1616. MMXText.FontSize = Enum.FontSize.Size48
  1617. MMXText.Text = "MMX"
  1618. MMXText.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  1619. MMXText.TextSize = 48
  1620.  
  1621. SelectTabHint.Name = "SelectTabHint"
  1622. SelectTabHint.Parent = MMXGui
  1623. SelectTabHint.BackgroundColor3 = Color3.new(0.780392, 0.192157, 0.0901961)
  1624. SelectTabHint.BackgroundTransparency = 1
  1625. SelectTabHint.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  1626. SelectTabHint.BorderSizePixel = 0
  1627. SelectTabHint.Position = UDim2.new(0.234999999, 0, 0, 150)
  1628. SelectTabHint.Size = UDim2.new(0, 400, 0, 100)
  1629. SelectTabHint.Visible = true
  1630. SelectTabHint.Font = Enum.Font.SourceSans
  1631. SelectTabHint.FontSize = Enum.FontSize.Size36
  1632. SelectTabHint.Text = "MMX Gui by Squid || Press any tab to begin"
  1633. SelectTabHint.TextColor3 = Color3.new(0.996078, 0.996078, 0.996078)
  1634. SelectTabHint.TextSize = 35
  1635.  
  1636. solarBUX.Name = "solarBUX"
  1637. solarBUX.Parent = MMXGuibySquid
  1638. solarBUX.BackgroundColor3 = Color3.new(1, 1, 1)
  1639. solarBUX.BackgroundTransparency = 1
  1640. solarBUX.Position = UDim2.new(0, 0, 0.449999988, 0)
  1641. solarBUX.Size = UDim2.new(0, 60, 0, 60)
  1642. solarBUX.Selected = true
  1643. solarBUX.Image = "rbxassetid://507103941"
  1644.  
  1645. OpenButton.Name = "OpenButton"
  1646. OpenButton.Parent = solarBUX
  1647. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  1648. OpenButton.BackgroundTransparency = 0.89999997615814
  1649. OpenButton.BorderSizePixel = 0
  1650. OpenButton.Position = UDim2.new(0, 70, 0, 15)
  1651. OpenButton.Size = UDim2.new(0, 80, 0, 25)
  1652. OpenButton.Font = Enum.Font.ArialBold
  1653. OpenButton.FontSize = Enum.FontSize.Size24
  1654. OpenButton.Text = "Open"
  1655. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  1656. OpenButton.TextSize = 24
  1657.  
  1658. local StoreGUIFrame = MMXGui
  1659. local OpenButtonz = OpenButton
  1660. local CloseButtonz = CloseButton
  1661. local TabHintz = SelectTabHint
  1662. local Playerz = Player
  1663. local PlayerTabz = Player.TopLevelBAR
  1664.  
  1665. local Noclipz = Playerz.Noclip
  1666. local Speedz = Playerz.Speed
  1667. local Flyz = Playerz.Fly
  1668. local HighJumpz = Playerz.HighJump
  1669.  
  1670. StoreGUIFrame.Size = UDim2.new(0,0,0,0);
  1671. StoreGUIFrame.Position = UDim2.new(0, 0, .450, 0)
  1672. StoreGUIFrame.Visible = false;
  1673.  
  1674. function onClickOpen()
  1675. StoreGUIFrame.Position = UDim2.new(0, 0, .450, 0)
  1676. wait()
  1677. StoreGUIFrame.Visible = true;
  1678. StoreGUIFrame:TweenSizeAndPosition(UDim2.new(0, 700, 0, 400), UDim2.new(.5, -350, .5, -200), "Out", "Elastic", 2)
  1679. end
  1680.  
  1681. OpenButtonz.MouseButton1Click:connect(onClickOpen)
  1682.  
  1683. function onClickPlayer()
  1684. wait()
  1685. PlayerTabz.Visible = true;
  1686. TabHintz.Visible = false;
  1687. Noclipz.Visible = true;
  1688. Speedz.Visible = true;
  1689. Flyz.Visible = true;
  1690. HighJumpz.Visible = true;
  1691. for _,v in pairs(Credits:GetChildren()) do
  1692. v.Visible = false;
  1693. end
  1694. for _,v in pairs(Game:GetChildren()) do
  1695. v.Visible = false;
  1696. end
  1697. for _,v in pairs(Player:GetChildren()) do
  1698. v.Visible = true;
  1699. end
  1700. for _,v in pairs(Roles:GetChildren()) do
  1701. v.Visible = false;
  1702. end
  1703. end
  1704.  
  1705. Playerz.MouseButton1Click:connect(onClickPlayer)
  1706.  
  1707. --Noclip buttons
  1708. function onClickNoclip()
  1709. wait()
  1710. for _,v in pairs(Speedz:GetChildren()) do
  1711. v.Visible = false;
  1712. end
  1713. for _,v in pairs(HighJumpz:GetChildren()) do
  1714. v.Visible = false;
  1715. end
  1716. for _,v in pairs(Flyz:GetChildren()) do
  1717. v.Visible = false;
  1718. end
  1719. Noclipz.Visible = true;
  1720. for _,v in pairs(Noclipz:GetChildren()) do
  1721. v.Visible = true;
  1722. end
  1723. end
  1724.  
  1725. Noclipz.MouseButton1Click:connect(onClickNoclip)
  1726.  
  1727. noclip = false
  1728. function ToggleNoclip()
  1729. if noclip == false then
  1730. noclip = true
  1731. Noclipz.On.BackgroundColor3 = Color3.new(0,255,0)
  1732. local mouse = game.Players.LocalPlayer:GetMouse()
  1733. local torso = game.Players.LocalPlayer.Character.Torso
  1734. local dir = {w = 0, s = 0, a = 0, d = 0}
  1735. local spd = 2
  1736. mouse.KeyDown:connect(function(key)
  1737. if key:lower() == "w" then dir.w = 1
  1738. elseif key:lower() == "s" then dir.s = 1
  1739. elseif key:lower() == "a" then dir.a = 1
  1740. elseif key:lower() == "d" then dir.d = 1
  1741. elseif key:lower() == "q" then spd = spd + 1
  1742. elseif key:lower() == "e" then spd = spd - 1
  1743. end end)
  1744. mouse.KeyUp:connect(function(key)
  1745. if key:lower() == "w" then
  1746. dir.w = 0
  1747. elseif key:lower() == "s" then dir.s = 0
  1748. elseif key:lower() == "a" then dir.a = 0
  1749. elseif key:lower() == "d" then dir.d = 0
  1750. end end)
  1751. repeat wait(1/44)
  1752. game.Players.LocalPlayer.Character.Torso.Anchored = true
  1753. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  1754. torso.CFrame = CFrame.new(torso.Position, game.Workspace.CurrentCamera.CoordinateFrame.p) * CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd)
  1755. until noclip == false
  1756. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  1757. game.Players.LocalPlayer.Character.Torso.Anchored = false
  1758. elseif noclip == true then
  1759. noclip = false
  1760. Noclipz.On.BackgroundColor3 = Color3.new(255,0,0)
  1761. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  1762. game.Players.LocalPlayer.Character.Torso.Anchored = false
  1763. end
  1764. end
  1765.  
  1766. Noclipz.On.MouseButton1Click:connect(ToggleNoclip)
  1767. --Noclip end
  1768. --Speed button
  1769. function onClickSpeed()
  1770. wait()
  1771. for _,v in pairs(Speedz:GetChildren()) do
  1772. v.Visible = true;
  1773. end
  1774. Speedz.Visible = true
  1775. for _,v in pairs(HighJumpz:GetChildren()) do
  1776. v.Visible = false;
  1777. end
  1778. for _,v in pairs(Flyz:GetChildren()) do
  1779. v.Visible = false;
  1780. end
  1781. for _,v in pairs(Noclipz:GetChildren()) do
  1782. v.Visible = false;
  1783. end
  1784. end
  1785.  
  1786. Speedz.MouseButton1Click:connect(onClickSpeed)
  1787.  
  1788. speed = false
  1789.  
  1790. function ToggleSpeed()
  1791. if speed == false then
  1792. speed = true
  1793. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  1794. Speedz.Toggle.BackgroundColor3 = Color3.new(0,255,0)
  1795. else if speed == true then
  1796. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  1797. Speedz.Toggle.BackgroundColor3 = Color3.new(255,0,0)
  1798. end
  1799. end
  1800. end
  1801.  
  1802. Speedz.Toggle.MouseButton1Click:connect(ToggleSpeed)
  1803. --End of speed
  1804. --Fly Button
  1805. function onClickFly()
  1806. wait()
  1807. for _,v in pairs(Speedz:GetChildren()) do
  1808. v.Visible = false;
  1809. end
  1810. for _,v in pairs(HighJumpz:GetChildren()) do
  1811. v.Visible = false;
  1812. end
  1813. for _,v in pairs(Flyz:GetChildren()) do
  1814. v.Visible = true;
  1815. end
  1816. Flyz.Visible = true;
  1817. for _,v in pairs(Noclipz:GetChildren()) do
  1818. v.Visible = false;
  1819. end
  1820. end
  1821.  
  1822. Flyz.MouseButton1Click:connect(onClickFly)
  1823.  
  1824. flying = false
  1825. repeat wait()
  1826. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  1827. local mouse = game.Players.LocalPlayer:GetMouse()
  1828. repeat wait() until mouse
  1829. local plr = game.Players.LocalPlayer
  1830. local torso = plr.Character.Torso
  1831. local flying = true
  1832. local deb = true
  1833. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  1834. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1835. local maxspeed = 50
  1836. local speed = 0
  1837.  
  1838. function Fly1()
  1839. if flying == false then
  1840. flying = true
  1841. Flyz.Toggle.BackgroundColor3 = Color3.new(0,255,0)
  1842. local bg = Instance.new("BodyGyro", torso)
  1843. bg.P = 9e4
  1844. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1845. bg.cframe = torso.CFrame
  1846. local bv = Instance.new("BodyVelocity", torso)
  1847. bv.velocity = Vector3.new(0,0.1,0)
  1848. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1849. repeat wait()
  1850. plr.Character.Humanoid.PlatformStand = true
  1851. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  1852. speed = speed+.5+(speed/maxspeed)
  1853. if speed > maxspeed then
  1854. speed = maxspeed
  1855. end
  1856. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  1857. speed = speed-1
  1858. if speed < 0 then
  1859. speed = 0
  1860. end
  1861. end
  1862. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  1863. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  1864. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  1865. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  1866. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  1867. else
  1868. bv.velocity = Vector3.new(0,0.1,0)
  1869. end
  1870. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  1871. until not flying
  1872. ctrl = {f = 0, b = 0, l = 0, r = 0}
  1873. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1874. speed = 0
  1875. bg:Destroy()
  1876. bv:Destroy()
  1877. plr.Character.Humanoid.PlatformStand = false
  1878. elseif flying == true then
  1879. flying = false
  1880. Flyz.Toggle.BackgroundColor3 = Color3.new(255,0,0)
  1881. end
  1882. end
  1883. mouse.KeyDown:connect(function(key)
  1884. if key:lower() == "w" then
  1885. ctrl.f = 1
  1886. elseif key:lower() == "s" then
  1887. ctrl.b = -1
  1888. elseif key:lower() == "a" then
  1889. ctrl.l = -1
  1890. elseif key:lower() == "d" then
  1891. ctrl.r = 1
  1892. end
  1893. end)
  1894. mouse.KeyUp:connect(function(key)
  1895. if key:lower() == "w" then
  1896. ctrl.f = 0
  1897. elseif key:lower() == "s" then
  1898. ctrl.b = 0
  1899. elseif key:lower() == "a" then
  1900. ctrl.l = 0
  1901. elseif key:lower() == "d" then
  1902. ctrl.r = 0
  1903. end
  1904. end)
  1905. Fly1()
  1906.  
  1907. Flyz.Toggle.MouseButton1Click:connect(Fly1)
  1908. --end of Fly
  1909. --toggle off
  1910. function onClickHighJump()
  1911. wait()
  1912. for _,v in pairs(Speedz:GetChildren()) do
  1913. v.Visible = false;
  1914. end
  1915. for _,v in pairs(HighJumpz:GetChildren()) do
  1916. v.Visible = true;
  1917. end
  1918. for _,v in pairs(Flyz:GetChildren()) do
  1919. v.Visible = false;
  1920. end
  1921. HighJumpz.Visible = true;
  1922. for _,v in pairs(Noclipz:GetChildren()) do
  1923. v.Visible = false;
  1924. end
  1925. end
  1926.  
  1927. HighJumpz.MouseButton1Click:connect(onClickHighJump)
  1928.  
  1929. highjump = false
  1930. function HighJumpT()
  1931. if highjump == false then
  1932. highjump = true
  1933. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  1934. HighJumpz.Toggle.BackgroundColor3 = Color3.new(0,255,0)
  1935. else if highjump == true then
  1936. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  1937. HighJumpz.Toggle.BackgroundColor3 = Color3.new(255,0,0)
  1938. end
  1939. end
  1940. end
  1941.  
  1942. HighJumpz.Toggle.MouseButton1Click:connect(HighJumpT)
  1943.  
  1944. function onClickClose()
  1945. StoreGUIFrame:TweenSizeAndPosition(UDim2.new(0,700, 0, 400), UDim2.new(-.8, 0, .450, 0), "Out", "Quint", 2)
  1946. wait(1.4)
  1947. StoreGUIFrame.Visible = false;
  1948. end
  1949.  
  1950. CloseButtonz.MouseButton1Click:connect(onClickClose)
  1951.  
  1952. local Credz = Credits
  1953. local CredzTab = Credz.TopLevelBAR
  1954.  
  1955. function onClickCredz()
  1956. wait()
  1957. Credz.Visible = true;
  1958. CredzTab.Visible = false;
  1959. TabHintz.Visible = false;
  1960. for _,v in pairs(Credz:GetChildren()) do
  1961. v.Visible = true;
  1962. end
  1963. for _,v in pairs(Game:GetChildren()) do
  1964. v.Visible = false;
  1965. end
  1966. for _,v in pairs(Player:GetChildren()) do
  1967. v.Visible = false;
  1968. end
  1969. for _,v in pairs(Roles:GetChildren()) do
  1970. v.Visible = false;
  1971. end
  1972. end
  1973.  
  1974. Credz.MouseButton1Click:connect(onClickCredz)
  1975. --GameESP
  1976. local Gamez = Game
  1977. local GamezTab = Gamez.TopLevelBAR
  1978.  
  1979. function onClickGamez()
  1980. wait()
  1981. Gamez.Visible = true;
  1982. GamezTab.Visible = false;
  1983. TabHintz.Visible = false;
  1984. for _,v in pairs(Credz:GetChildren()) do
  1985. v.Visible = false;
  1986. end
  1987. for _,v in pairs(Game:GetChildren()) do
  1988. v.Visible = true;
  1989. end
  1990. for _,v in pairs(Player:GetChildren()) do
  1991. v.Visible = false;
  1992. end
  1993. for _,v in pairs(Roles:GetChildren()) do
  1994. v.Visible = false;
  1995. end
  1996. end
  1997.  
  1998. Gamez.MouseButton1Click:connect(onClickGamez)
  1999.  
  2000. --Coins
  2001. function onClickCoins()
  2002. wait()
  2003. for _,v in pairs(Coin:GetChildren()) do
  2004. v.Visible = true;
  2005. end
  2006. for _,v in pairs(CoinsESP:GetChildren()) do
  2007. v.Visible = false;
  2008. end
  2009. for _,v in pairs(Gun:GetChildren()) do
  2010. v.Visible = false;
  2011. end
  2012. Coin.Visible = true;
  2013. for _,v in pairs(GunESP:GetChildren()) do
  2014. v.Visible = false;
  2015. end
  2016. end
  2017.  
  2018. Gamez.Coin.MouseButton1Click:connect(onClickCoins)
  2019.  
  2020. function ToggleCoins()
  2021. for i=1,50 do
  2022. wait(0.5)
  2023. for coin,v in pairs(game.Workspace:GetChildren()) do
  2024. if v.Name == "Coin" then v.CFrame=game.Players.LocalPlayer.Character.Torso.CFrame
  2025. end
  2026. end
  2027. end
  2028. end
  2029.  
  2030. Gamez.Coin.Toggle.MouseButton1Click:connect(ToggleCoins)
  2031. --CoinsEnd
  2032. --Gun
  2033. function onClickGun()
  2034. wait()
  2035. for _,v in pairs(Coin:GetChildren()) do
  2036. v.Visible = false;
  2037. end
  2038. for _,v in pairs(CoinsESP:GetChildren()) do
  2039. v.Visible = false;
  2040. end
  2041. for _,v in pairs(Gun:GetChildren()) do
  2042. v.Visible = true;
  2043. end
  2044. Gun.Visible = true;
  2045. for _,v in pairs(GunESP:GetChildren()) do
  2046. v.Visible = false;
  2047. end
  2048. end
  2049.  
  2050. Gamez.Gun.MouseButton1Click:connect(onClickGun)
  2051.  
  2052. function ToggleGun()
  2053. if game.Workspace:FindFirstChild("RevolverPickUp") then
  2054. if game.Workspace.RevolverPickUp:IsA("Model") then
  2055. game.Workspace.RevolverPickUp:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  2056. end
  2057. end
  2058. end
  2059.  
  2060. Gamez.Gun.On.MouseButton1Click:connect(ToggleGun)
  2061. --GunEnd
  2062. --CoinsESP
  2063. function onClickCESP()
  2064. wait()
  2065. for _,v in pairs(Coin:GetChildren()) do
  2066. v.Visible = false;
  2067. end
  2068. for _,v in pairs(CoinsESP:GetChildren()) do
  2069. v.Visible = true;
  2070. end
  2071. for _,v in pairs(Gun:GetChildren()) do
  2072. v.Visible = false;
  2073. end
  2074. CoinsESP.Visible = true;
  2075. for _,v in pairs(GunESP:GetChildren()) do
  2076. v.Visible = false;
  2077. end
  2078. end
  2079.  
  2080. Gamez.CoinsESP.MouseButton1Click:connect(onClickCESP)
  2081.  
  2082. coinEspEnabled = false
  2083. function ToggleCoinESP()
  2084. for i,v in pairs(game.Workspace:GetChildren()) do
  2085. if v.Name == "Coin" then
  2086. coinEspEnabled = true
  2087. local ChamsClone = game.Workspace:FindFirstChild("CoinChams"):Clone()
  2088. ChamsClone.AlwaysOnTop = true
  2089. ChamsClone.Name = "CoinChams"
  2090. ChamsClone.ZIndex = 2
  2091. ChamsClone.Parent = game.Workspace
  2092. ChamsClone.Adornee = v
  2093. ChamsClone.Color3 = Color3.new(1,1,0)
  2094. ChamsClone.Size = v.Size
  2095. end
  2096. end
  2097. end
  2098.  
  2099. Gamez.CoinsESP.Toggle.MouseButton1Click:connect(ToggleCoinESP)
  2100. --End CoinESP
  2101. --GunESP
  2102. function onClickGESP()
  2103. wait()
  2104. for _,v in pairs(Coin:GetChildren()) do
  2105. v.Visible = false;
  2106. end
  2107. for _,v in pairs(CoinsESP:GetChildren()) do
  2108. v.Visible = false;
  2109. end
  2110. for _,v in pairs(Gun:GetChildren()) do
  2111. v.Visible = false;
  2112. end
  2113. GunESP.Visible = true;
  2114. for _,v in pairs(GunESP:GetChildren()) do
  2115. v.Visible = true;
  2116. end
  2117. end
  2118.  
  2119. Gamez.GunESP.MouseButton1Click:connect(onClickGESP)
  2120.  
  2121. function ToggleGunESP()
  2122. if game.Workspace:FindFirstChild("RevolverPickUp") then
  2123. for i, c in pairs(game.Workspace.RevolverPickUp:GetChildren()) do
  2124. local ChamsClone = game.Workspace:FindFirstChild("GunChams"):Clone()
  2125. ChamsClone.AlwaysOnTop = true
  2126. ChamsClone.Name = "GunChams"
  2127. ChamsClone.ZIndex = 2
  2128. ChamsClone.Parent = game.Workspace
  2129. ChamsClone.Adornee = c
  2130. ChamsClone.Color3 = Color3.new(1,1,1)
  2131. ChamsClone.Size = c.Size
  2132. end
  2133. end
  2134. end
  2135.  
  2136. Gamez.GunESP.Toggle.MouseButton1Click:connect(ToggleGunESP)
  2137. --End CoinESP
  2138. local Rolez = Roles
  2139. local RolezTab = Rolez.TopLevelBAR
  2140.  
  2141. function onClickGamez()
  2142. wait()
  2143. Rolez.Visible = true;
  2144. RolezTab.Visible = false;
  2145. TabHintz.Visible = false;
  2146. for _,v in pairs(Credz:GetChildren()) do
  2147. v.Visible = false;
  2148. end
  2149. for _,v in pairs(Game:GetChildren()) do
  2150. v.Visible = false;
  2151. end
  2152. for _,v in pairs(Player:GetChildren()) do
  2153. v.Visible = false;
  2154. end
  2155. for _,v in pairs(Roles:GetChildren()) do
  2156. v.Visible = true;
  2157. end
  2158. end
  2159.  
  2160. Rolez.MouseButton1Click:connect(onClickGamez)
  2161.  
  2162. --MurdererChams
  2163.  
  2164. function onClickMurder()
  2165. wait()
  2166. for _,v in pairs(Murderer:GetChildren()) do
  2167. v.Visible = true;
  2168. end
  2169. for _,v in pairs(Detective:GetChildren()) do
  2170. v.Visible = false;
  2171. end
  2172. for _,v in pairs(Everyone:GetChildren()) do
  2173. v.Visible = false;
  2174. end
  2175. Murderer.Visible = true;
  2176. for _,v in pairs(Clear:GetChildren()) do
  2177. v.Visible = false;
  2178. end
  2179. end
  2180.  
  2181.  
  2182. Murderer.MouseButton1Click:connect(onClickMurder)
  2183.  
  2184. function ToggleMurder()
  2185. for i,v in pairs(game.Players:GetChildren()) do
  2186. if v:FindFirstChild("Backpack") then
  2187. if v.Backpack:FindFirstChild("Knife") then
  2188. print(v.Name.."is murderer")
  2189. if v.Name ~= LP.Name then
  2190. local ChamsClone = Work:FindFirstChild("MurderChams"):Clone()
  2191. ChamsClone.AlwaysOnTop = true
  2192. ChamsClone.Name = "MurderChams"
  2193. ChamsClone.ZIndex = 4
  2194. ChamsClone.Parent = Work
  2195. ChamsClone.Adornee = v.Character.Torso
  2196. ChamsClone.Color3 = Color3.new(1,0,0)
  2197. ChamsClone.Size = v.Character.Torso.Size
  2198. end
  2199. end
  2200. end
  2201. end
  2202. end
  2203.  
  2204. Murderer.Toggle.MouseButton1Click:connect(ToggleMurder)
  2205. --EndMurdererChams
  2206. --Sheriff Chams
  2207. function onClickSheriff()
  2208. wait()
  2209. for _,v in pairs(Murderer:GetChildren()) do
  2210. v.Visible = false;
  2211. end
  2212. for _,v in pairs(Detective:GetChildren()) do
  2213. v.Visible = true;
  2214. end
  2215. for _,v in pairs(Everyone:GetChildren()) do
  2216. v.Visible = false;
  2217. end
  2218. Detective.Visible = true;
  2219. for _,v in pairs(Clear:GetChildren()) do
  2220. v.Visible = false;
  2221. end
  2222. end
  2223.  
  2224.  
  2225. Detective.MouseButton1Click:connect(onClickSheriff)
  2226.  
  2227. function ToggleDetective()
  2228. for i,v in pairs(game.Players:GetChildren()) do
  2229. if v:FindFirstChild("Backpack") then
  2230. if v.Backpack:FindFirstChild("Revolver") then
  2231. print(v.Name.."is Sheriff!")
  2232. if v.Name ~= LP.Name then
  2233. local ChamsClone = Work:FindFirstChild("MurderChams"):Clone()
  2234. ChamsClone.AlwaysOnTop = true
  2235. ChamsClone.Name = "SheriffChams"
  2236. ChamsClone.ZIndex = 4
  2237. ChamsClone.Parent = Work
  2238. ChamsClone.Adornee = v.Character.Torso
  2239. ChamsClone.Color3 = Color3.new(0,0,1)
  2240. ChamsClone.Size = v.Character.Torso.Size
  2241. end
  2242. end
  2243. end
  2244. end
  2245. end
  2246.  
  2247. Detective.Toggle.MouseButton1Click:connect(ToggleDetective)
  2248. --EndDetectiveChams
  2249. --EveryoneChams
  2250. function onClickEveryone()
  2251. wait()
  2252. for _,v in pairs(Murderer:GetChildren()) do
  2253. v.Visible = false;
  2254. end
  2255. for _,v in pairs(Detective:GetChildren()) do
  2256. v.Visible = false;
  2257. end
  2258. for _,v in pairs(Everyone:GetChildren()) do
  2259. v.Visible = true;
  2260. end
  2261. Everyone.Visible = true;
  2262. for _,v in pairs(Clear:GetChildren()) do
  2263. v.Visible = false;
  2264. end
  2265. end
  2266.  
  2267.  
  2268. Everyone.MouseButton1Click:connect(onClickEveryone)
  2269.  
  2270.  
  2271. function ToggleEveryone()
  2272. for i,v in pairs(game.Players:GetChildren()) do
  2273. if v:FindFirstChild("Backpack") then
  2274. if v.Name ~= LP.Name then
  2275. local ChamsClone = Work:FindFirstChild("MurderChams"):Clone()
  2276. ChamsClone.AlwaysOnTop = true
  2277. ChamsClone.Name = "EveryoneChams"
  2278. ChamsClone.ZIndex = 2
  2279. ChamsClone.Parent = Work
  2280. ChamsClone.Adornee = v.Character.Torso
  2281. ChamsClone.Color3 = Color3.new(0,1,0)
  2282. ChamsClone.Size = v.Character.Torso.Size
  2283. end
  2284. end
  2285. end
  2286. end
  2287.  
  2288. Everyone.Toggle.MouseButton1Click:connect(ToggleEveryone)
  2289. --EndDetectiveChams
  2290. --ClearChams
  2291. function onClickClear()
  2292. wait()
  2293. for _,v in pairs(Murderer:GetChildren()) do
  2294. v.Visible = false;
  2295. end
  2296. for _,v in pairs(Detective:GetChildren()) do
  2297. v.Visible = false;
  2298. end
  2299. for _,v in pairs(Everyone:GetChildren()) do
  2300. v.Visible = false;
  2301. end
  2302. Clear.Visible = true;
  2303. for _,v in pairs(Clear:GetChildren()) do
  2304. v.Visible = true;
  2305. end
  2306. end
  2307.  
  2308.  
  2309. Clear.MouseButton1Click:connect(onClickClear)
  2310.  
  2311. function ToggleClear()
  2312. for i, v in pairs(Work:GetChildren()) do
  2313. if Work:FindFirstChild("MurderChams") then
  2314. Work.MurderChams:Remove()
  2315. end
  2316. if Work:FindFirstChild("SheriffChams") then
  2317. Work.SheriffChams:Remove()
  2318. end
  2319. if Work:FindFirstChild("EveryoneChams") then
  2320. Work.EveryoneChams:Remove()
  2321. end
  2322. if Work:FindFirstChild("GunChams") then
  2323. Work.GunChams:Remove()
  2324. end
  2325. if Work:FindFirstChild("CoinChams") then
  2326. Work.CoinChams:Remove()
  2327. end
  2328. end
  2329. local ESP = Instance.new("BoxHandleAdornment")
  2330. ESP.AlwaysOnTop = true
  2331. ESP.Name = "MurderChams"
  2332. ESP.ZIndex = 2
  2333. ESP.Parent = Work
  2334.  
  2335. local ESP1 = Instance.new("BoxHandleAdornment")
  2336. ESP1.AlwaysOnTop = true
  2337. ESP1.Name = "EveryoneChams"
  2338. ESP1.ZIndex = 2
  2339. ESP1.Parent = Work
  2340.  
  2341. local ESP2 = Instance.new("BoxHandleAdornment")
  2342. ESP2.AlwaysOnTop = true
  2343. ESP2.Name = "SheriffChams"
  2344. ESP2.ZIndex = 2
  2345. ESP2.Parent = Work
  2346.  
  2347. local ESP3 = Instance.new("BoxHandleAdornment")
  2348. ESP3.AlwaysOnTop = true
  2349. ESP3.Name = "CoinChams"
  2350. ESP3.ZIndex = 2
  2351. ESP3.Parent = Work
  2352.  
  2353. local ESP4 = Instance.new("BoxHandleAdornment")
  2354. ESP4.AlwaysOnTop = true
  2355. ESP4.Name = "GunChams"
  2356. ESP4.ZIndex = 2
  2357. ESP4.Parent = Work
  2358. coinEspEnabled = false
  2359. end
  2360.  
  2361. Clear.Toggle.MouseButton1Click:connect(ToggleClear)
  2362.  
  2363.  
  2364. game.Workspace.ChildAdded:connect(function(child)
  2365. if child.Name == "Coin" and coinEspEnabled == true then
  2366. local ChamsClone = game.Workspace:FindFirstChild("CoinChams"):Clone()
  2367. ChamsClone.AlwaysOnTop = true
  2368. ChamsClone.Name = "CoinChams"
  2369. ChamsClone.ZIndex = 2
  2370. ChamsClone.Parent = game.Workspace
  2371. ChamsClone.Adornee = child
  2372. ChamsClone.Color3 = Color3.new(1,1,0)
  2373. ChamsClone.Size = child.Size
  2374. end
  2375. end)
  2376.  
  2377. --EndChams
  2378. while true do
  2379. wait()
  2380. if Player.DividerUI.Visible == false then
  2381. Player.DividerUI.Visible = true
  2382. end
  2383. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement