Advertisement
real_billy1234

Murder Mystery 2 script GUI

Jul 17th, 2019
308,051
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.98 KB | None | 1 0
  1. --[[
  2. Made by Real_billy1234 (mythic exploits and wewontgetbanned) idk if i typed that right.
  3. Enjoy Guys
  4. ]]
  5.  
  6. --[[Getting Service]]--
  7. local Plrs = game:GetService("Players");
  8. local Run = game:GetService("RunService");
  9. local CoreGui = game:GetService("CoreGui");
  10. local StartGui = game:GetService("StarterGui");
  11. local Teams = game:GetService("Teams");
  12. local UserInput = game:GetService("UserInputService");
  13. local Light = game:GetService("Lighting");
  14. local Workspace = game:GetService("Workspace");
  15. local CoreGui = game:GetService("CoreGui");
  16. local Players = game:GetService("Players");
  17.  
  18. local secret953 = secret953 or debug.getupvalues;
  19. local secret500 = secret500 or debug.setupvalue;
  20. local getreg = getreg or debug.getregistry;
  21.  
  22. plr = game.Players.LocalPlayer ;
  23. hum = plr.Character.HumanoidRootPart
  24. mouse = plr:GetMouse();
  25. espenabled = false;
  26.  
  27. pcall(function()
  28. game.CoreGui.MurderLx:Destroy()
  29. end)
  30.  
  31. local cam = workspace.CurrentCamera
  32. local blur = Instance.new("BlurEffect")
  33. blur.Size = 40
  34. blur.Parent = cam
  35. blur.Enabled = true
  36.  
  37. local Rendering = {
  38. MurderSheriffESP = false,
  39. NameESP = false,
  40. UserESP = false,
  41. }
  42.  
  43.  
  44. local User = {
  45. SpeedHax = false,
  46. JumpHax = false,
  47. GravityHax = false,
  48. GodModeHax = false,
  49. CoinsXX = false,
  50. CTP = false,
  51. }
  52.  
  53. local Teleport = {
  54. L = false,
  55. }
  56.  
  57. local ULog = {
  58. ["Info"] = "Murder Mystery GUI, remastered, version 3.4, Made by ThisW0ntGetBanned, Discord: https://discord.gg/MyjGtee",
  59. ["Date"] = "3/26/19"
  60. }
  61.  
  62. function GetPlayers( ... )
  63. for i, v in pairs(game.Players:GetChildren()) do
  64. warn(i,v)
  65. end
  66. end
  67. --[[Local Character Functions]]--
  68. function CreateGod( ... )
  69. if GodMode.Text == "GodeMode: OFF" then
  70. GodMode.Text = "GodeMode: ON"
  71. GodMode.TextColor3 = Color3.new(0,185,0)
  72. game.Players.LocalPlayer.Character.Humanoid:Remove()
  73. Instance.new('Humanoid', game.Players.LocalPlayer.Character)
  74. elseif
  75. GodMode.Text == "GodMode: ON" then
  76. GodMode.Text = "GodMode: ERORR"--LOL :)
  77. GodMode.TextColor3 = Color3.new(170,0,0)
  78. end
  79. end
  80.  
  81. function CreateGrav( ... )
  82. if Gravity.Text == "Gravity Hax: OFF" then
  83. Gravity.Text = "Gravity Hax: ON"
  84. game.Workspace.Gravity = 80
  85. Gravity.TextColor3 = Color3.new(0,185,0)
  86. elseif
  87. Gravity.Text == "Gravity Hax: ON" then
  88. game.Workspace.Gravity = 196.2
  89. Gravity.Text = "Gravity Hax: OFF"
  90. Gravity.TextColor3 = Color3.new(170,0,0)
  91. end
  92. end
  93.  
  94. function CreateSpeed( ... )
  95. if Speed.Text == "Speed Hax: OFF" then
  96. Speed.Text = "Speed Hax: ON"
  97. Speed.TextColor3 = Color3.new(0,185,0)
  98. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 75
  99. elseif
  100. Speed.Text == "Speed Hax: ON" then
  101. Speed.Text = "Speed Hax: OFF"
  102. Speed.TextColor3 = Color3.new(170,0,0)
  103. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  104. end
  105. end
  106.  
  107. function CreateJump( ... )
  108. if Jump.Text == "Jump Hax: OFF" then
  109. Jump.Text = "Jump Hax: ON"
  110. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  111. Jump.TextColor3 = Color3.new(0,185,0)
  112. elseif
  113. Jump.Text == "Jump Hax: ON" then
  114. Jump.Text = "Jump Hax: OFF"
  115. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  116. Jump.TextColor3 = Color3.new(170,0,0)
  117. end
  118. end
  119.  
  120. function CreateCoins( ... )
  121. for i, v in pairs(game.Workspace:GetDescendants()) do
  122. if v.Name == "Coin" then
  123. v.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
  124. end
  125. end
  126. end
  127.  
  128. function CreateCLickTP( ... )
  129. mouse.KeyDown:connect(function(key)
  130. if key == "e" then
  131. if mouse.Target then
  132. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  133. end
  134. end
  135. end)
  136. end
  137.  
  138. --[[Rendering Functions]]--
  139.  
  140. function CreateSherrifMurderESP( ... )
  141. -- body
  142. end
  143.  
  144. function CreateNames( ... )
  145. Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game:GetService("CoreGui")}
  146.  
  147. local enabledesp = false
  148.  
  149. function CreateESP(plr)
  150.  
  151. if plr ~= nil then
  152.  
  153. local GetChar = plr.Character
  154. if not GetChar then return end
  155.  
  156. local GetHead do
  157.  
  158. repeat wait() until GetChar:FindFirstChild("Head")
  159.  
  160. end
  161. GetHead = GetChar.Head
  162.  
  163. local bb = Instance.new("BillboardGui", Important.CoreGui)
  164. bb.Adornee = GetHead
  165. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  166. bb.AlwaysOnTop = true
  167. bb.Size = UDim2.new(0, 5, 0, 5)
  168. bb.StudsOffset = Vector3.new(0, 3, 0)
  169. bb.Name = "ESP_PLAYER_" .. plr.Name
  170.  
  171. local displayframe = Instance.new("Frame", bb)
  172. displayframe.ZIndex = 10
  173. displayframe.BackgroundTransparency = 1
  174. displayframe.Size = UDim2.new(1,0,1,0)
  175.  
  176. local name = Instance.new("TextLabel", displayframe)
  177. name.Name = "Name"
  178. name.ZIndex = 10
  179. name.Text = plr.Name
  180. name.Visible = true
  181. name.TextColor3 = Color3.new(255, 0, 255)
  182. name.BackgroundTransparency = 1
  183. name.Size = UDim2.new(1,0,10,0)
  184. name.Font = Enum.Font.SourceSansLight
  185. name.TextSize = 20
  186. name.TextStrokeTransparency = .5
  187.  
  188. end
  189.  
  190. end
  191.  
  192.  
  193. for i,v in pairs(Important.Players:GetChildren()) do
  194. if game.GameId == 1320186298 then return end
  195. CreateESP(v)
  196.  
  197. end
  198. end
  199. --[[Teleportation]]--
  200. function CreateLobby( ... )
  201. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-109.56, 140, -11.75) + Vector3.new(1, 0, 0)
  202. end
  203.  
  204. function CreateGun( ... )
  205. game.Workspace.GunDrop.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(2,0,0)
  206. end
  207.  
  208.  
  209.  
  210. local MurderLx = Instance.new("ScreenGui")
  211. local MainFrame = Instance.new("Frame")
  212. local LocalFrame = Instance.new("Frame")
  213. local LocalTitle = Instance.new("TextLabel")
  214. local Speed = Instance.new("TextButton")
  215. local Gravity = Instance.new("TextButton")
  216. local Coins = Instance.new("TextButton")
  217. local Jump = Instance.new("TextButton")
  218. local GodMode = Instance.new("TextButton")
  219. local ClickTP = Instance.new("TextButton")
  220. local TeleportFrame = Instance.new("Frame")
  221. local TPTItle = Instance.new("TextLabel")
  222. local GTP = Instance.new("TextButton")
  223. local TPL = Instance.new("TextButton")
  224. local UpdateFrame = Instance.new("Frame")
  225. local UpdateTitle = Instance.new("TextLabel")
  226. local Update1 = Instance.new("TextLabel")
  227. local Update2 = Instance.new("TextLabel")
  228. local VisualFrame = Instance.new("Frame")
  229. local VisualTitle = Instance.new("TextLabel")
  230. local MSESP = Instance.new("TextButton")
  231. local NESP = Instance.new("TextButton")
  232. local Credits = Instance.new("TextLabel")
  233. local WaterMark = Instance.new("TextLabel")
  234. local Toggle = Instance.new("TextButton")
  235.  
  236. MurderLx.Name = "MurderLx"
  237. MurderLx.Parent = game.CoreGui
  238. MurderLx.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  239.  
  240. MainFrame.Name = "MainFrame"
  241. MainFrame.Parent = MurderLx
  242. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  243. MainFrame.BackgroundTransparency = 1
  244. MainFrame.Position = UDim2.new(0.412844032, 0, 0.415244609, 0)
  245. MainFrame.Size = UDim2.new(0, 100, 0, 100)
  246.  
  247. LocalFrame.Name = "LocalFrame"
  248. LocalFrame.Parent = MainFrame
  249. LocalFrame.Active = true
  250. LocalFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  251. LocalFrame.BackgroundTransparency = 0.20000000298023
  252. LocalFrame.BorderSizePixel = 0
  253. LocalFrame.Position = UDim2.new(-3.48978591, 0, -3.01718998, 0)
  254. LocalFrame.Selectable = true
  255. LocalFrame.Size = UDim2.new(0, 241, 0, 362)
  256.  
  257. LocalTitle.Name = "LocalTitle"
  258. LocalTitle.Parent = LocalFrame
  259. LocalTitle.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  260. LocalTitle.BackgroundTransparency = 1
  261. LocalTitle.BorderSizePixel = 0
  262. LocalTitle.Size = UDim2.new(0, 241, 0, 50)
  263. LocalTitle.Font = Enum.Font.SourceSansSemibold
  264. LocalTitle.Text = "Local User"
  265. LocalTitle.TextColor3 = Color3.new(1, 1, 1)
  266. LocalTitle.TextSize = 25
  267.  
  268. Speed.Name = "Speed"
  269. Speed.Parent = LocalFrame
  270. Speed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  271. Speed.BackgroundTransparency = 1
  272. Speed.BorderSizePixel = 0
  273. Speed.Position = UDim2.new(0, 0, 0.136924356, 0)
  274. Speed.Size = UDim2.new(0, 241, 0, 40)
  275. Speed.Font = Enum.Font.SourceSans
  276. Speed.Text = "Speed Hax: OFF"
  277. Speed.TextColor3 = Color3.new(1, 1, 1)
  278. Speed.TextSize = 19
  279.  
  280. Gravity.Name = "Gravity"
  281. Gravity.Parent = LocalFrame
  282. Gravity.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  283. Gravity.BackgroundTransparency = 1
  284. Gravity.BorderSizePixel = 0
  285. Gravity.Position = UDim2.new(0, 0, 0.270816833, 0)
  286. Gravity.Size = UDim2.new(0, 241, 0, 40)
  287. Gravity.Font = Enum.Font.SourceSans
  288. Gravity.Text = "Gravity Hax: OFF"
  289. Gravity.TextColor3 = Color3.new(1, 1, 1)
  290. Gravity.TextSize = 19
  291.  
  292. Coins.Name = "Coins"
  293. Coins.Parent = LocalFrame
  294. Coins.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  295. Coins.BackgroundTransparency = 1
  296. Coins.BorderSizePixel = 0
  297. Coins.Position = UDim2.new(0, 0, 0.406766862, 0)
  298. Coins.Size = UDim2.new(0, 241, 0, 40)
  299. Coins.Font = Enum.Font.SourceSans
  300. Coins.Text = "Telelport Coins"
  301. Coins.TextColor3 = Color3.new(1, 1, 1)
  302. Coins.TextSize = 19
  303.  
  304. Jump.Name = "Jump"
  305. Jump.Parent = LocalFrame
  306. Jump.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  307. Jump.BackgroundTransparency = 1
  308. Jump.BorderSizePixel = 0
  309. Jump.Position = UDim2.new(0, 0, 0.542075634, 0)
  310. Jump.Size = UDim2.new(0, 241, 0, 40)
  311. Jump.Font = Enum.Font.SourceSans
  312. Jump.Text = "Jump Hax: OFF"
  313. Jump.TextColor3 = Color3.new(1, 1, 1)
  314. Jump.TextSize = 19
  315.  
  316. GodMode.Name = "GodMode"
  317. GodMode.Parent = LocalFrame
  318. GodMode.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  319. GodMode.BackgroundTransparency = 1
  320. GodMode.BorderSizePixel = 0
  321. GodMode.Position = UDim2.new(0, 0, 0.677073002, 0)
  322. GodMode.Size = UDim2.new(0, 241, 0, 40)
  323. GodMode.Font = Enum.Font.SourceSans
  324. GodMode.Text = "GodMode: OFF"
  325. GodMode.TextColor3 = Color3.new(1, 1, 1)
  326. GodMode.TextSize = 19
  327.  
  328. ClickTP.Name = "ClickTP"
  329. ClickTP.Parent = LocalFrame
  330. ClickTP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  331. ClickTP.BackgroundTransparency = 1
  332. ClickTP.BorderSizePixel = 0
  333. ClickTP.Position = UDim2.new(0, 0, 0.831193626, 0)
  334. ClickTP.Size = UDim2.new(0, 241, 0, 40)
  335. ClickTP.Font = Enum.Font.SourceSans
  336. ClickTP.Text = "ClickTeleport(e)"
  337. ClickTP.TextColor3 = Color3.new(1, 1, 1)
  338. ClickTP.TextSize = 19
  339.  
  340. TeleportFrame.Name = "TeleportFrame"
  341. TeleportFrame.Parent = MainFrame
  342. TeleportFrame.Active = true
  343. TeleportFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  344. TeleportFrame.BackgroundTransparency = 0.20000000298023
  345. TeleportFrame.BorderSizePixel = 0
  346. TeleportFrame.Position = UDim2.new(-0.790764749, 0, -3.01718998, 0)
  347. TeleportFrame.Selectable = true
  348. TeleportFrame.Size = UDim2.new(0, 241, 0, 138)
  349.  
  350. TPTItle.Name = "TPTItle"
  351. TPTItle.Parent = TeleportFrame
  352. TPTItle.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  353. TPTItle.BackgroundTransparency = 1
  354. TPTItle.BorderSizePixel = 0
  355. TPTItle.Size = UDim2.new(0, 241, 0, 50)
  356. TPTItle.Font = Enum.Font.SourceSansSemibold
  357. TPTItle.Text = "Teleportation "
  358. TPTItle.TextColor3 = Color3.new(1, 1, 1)
  359. TPTItle.TextSize = 25
  360.  
  361. GTP.Name = "GTP"
  362. GTP.Parent = TeleportFrame
  363. GTP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  364. GTP.BackgroundTransparency = 1
  365. GTP.BorderSizePixel = 0
  366. GTP.Position = UDim2.new(0, 0, 0.64612627, 0)
  367. GTP.Size = UDim2.new(0, 241, 0, 40)
  368. GTP.Font = Enum.Font.SourceSans
  369. GTP.Text = "Teleport Gun"
  370. GTP.TextColor3 = Color3.new(1, 1, 1)
  371. GTP.TextSize = 19
  372.  
  373. TPL.Name = "TPL"
  374. TPL.Parent = TeleportFrame
  375. TPL.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  376. TPL.BackgroundTransparency = 1
  377. TPL.BorderSizePixel = 0
  378. TPL.Position = UDim2.new(0, 0, 0.349024832, 0)
  379. TPL.Size = UDim2.new(0, 241, 0, 40)
  380. TPL.Font = Enum.Font.SourceSans
  381. TPL.Text = "Teleport To Lobby"
  382. TPL.TextColor3 = Color3.new(1, 1, 1)
  383. TPL.TextSize = 19
  384.  
  385. UpdateFrame.Name = "UpdateFrame"
  386. UpdateFrame.Parent = MainFrame
  387. UpdateFrame.Active = true
  388. UpdateFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  389. UpdateFrame.BackgroundTransparency = 0.20000000298023
  390. UpdateFrame.BorderSizePixel = 0
  391. UpdateFrame.Position = UDim2.new(1.99314976, 0, -3.01718998, 0)
  392. UpdateFrame.Selectable = true
  393. UpdateFrame.Size = UDim2.new(0, 241, 0, 301)
  394.  
  395. UpdateTitle.Name = "UpdateTitle"
  396. UpdateTitle.Parent = UpdateFrame
  397. UpdateTitle.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  398. UpdateTitle.BackgroundTransparency = 1
  399. UpdateTitle.BorderSizePixel = 0
  400. UpdateTitle.Size = UDim2.new(0, 241, 0, 50)
  401. UpdateTitle.Font = Enum.Font.SourceSansSemibold
  402. UpdateTitle.Text = "Update Log"
  403. UpdateTitle.TextColor3 = Color3.new(1, 1, 1)
  404. UpdateTitle.TextSize = 25
  405.  
  406. Update1.Name = "Update1"
  407. Update1.Parent = UpdateFrame
  408. Update1.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  409. Update1.BackgroundTransparency = 1
  410. Update1.BorderSizePixel = 0
  411. Update1.Position = UDim2.new(0, 0, 0.187280804, 0)
  412. Update1.Size = UDim2.new(0, 240, 0, 50)
  413. Update1.Font = Enum.Font.SourceSans
  414. Update1.Text = "Version: 3.4 Remastered"
  415. Update1.TextColor3 = Color3.new(1, 1, 1)
  416. Update1.TextSize = 20
  417.  
  418. Update2.Name = "Update2"
  419. Update2.Parent = UpdateFrame
  420. Update2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  421. Update2.BackgroundTransparency = 1
  422. Update2.BorderSizePixel = 0
  423. Update2.Position = UDim2.new(0.00414937781, 0, 0.297104955, 0)
  424. Update2.Size = UDim2.new(0, 240, 0, 210)
  425. Update2.Font = Enum.Font.SourceSans
  426. Update2.Text = "\nTeleport Coins: Fixed\n\nVersion: 3.4 Remastered\n\nRendering: Smoother\n\nMade Everything Toggable\n\nLast Update: 3/26/19"
  427. Update2.TextColor3 = Color3.new(1, 1, 1)
  428. Update2.TextSize = 20
  429. Update2.TextWrapped = true
  430.  
  431. VisualFrame.Name = "VisualFrame"
  432. VisualFrame.Parent = MainFrame
  433. VisualFrame.Active = true
  434. VisualFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  435. VisualFrame.BackgroundTransparency = 0.20000000298023
  436. VisualFrame.BorderSizePixel = 0
  437. VisualFrame.Position = UDim2.new(-6.19391441, 0, -3.01718998, 0)
  438. VisualFrame.Selectable = true
  439. VisualFrame.Size = UDim2.new(0, 241, 0, 173)
  440.  
  441. VisualTitle.Name = "VisualTitle"
  442. VisualTitle.Parent = VisualFrame
  443. VisualTitle.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  444. VisualTitle.BackgroundTransparency = 1
  445. VisualTitle.BorderSizePixel = 0
  446. VisualTitle.Size = UDim2.new(0, 241, 0, 50)
  447. VisualTitle.Font = Enum.Font.SourceSansSemibold
  448. VisualTitle.Text = "Rendering"
  449. VisualTitle.TextColor3 = Color3.new(1, 1, 1)
  450. VisualTitle.TextSize = 25
  451.  
  452. MSESP.Name = "MSESP"
  453. MSESP.Parent = VisualFrame
  454. MSESP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  455. MSESP.BackgroundTransparency = 1
  456. MSESP.BorderSizePixel = 0
  457. MSESP.Position = UDim2.new(-0.00414937781, 0, 0.285714358, 0)
  458. MSESP.Size = UDim2.new(0, 241, 0, 40)
  459. MSESP.Font = Enum.Font.SourceSans
  460. MSESP.Text = "Murder/Sheriff ESP: OFF"
  461. MSESP.TextColor3 = Color3.new(1, 1, 1)
  462. MSESP.TextSize = 19
  463.  
  464. NESP.Name = "NESP"
  465. NESP.Parent = VisualFrame
  466. NESP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  467. NESP.BackgroundTransparency = 1
  468. NESP.BorderSizePixel = 0
  469. NESP.Position = UDim2.new(0, 0, 0.617465258, 0)
  470. NESP.Size = UDim2.new(0, 241, 0, 40)
  471. NESP.Font = Enum.Font.SourceSans
  472. NESP.Text = "Name ESP: OFF"
  473. NESP.TextColor3 = Color3.new(1, 1, 1)
  474. NESP.TextSize = 19
  475.  
  476. Credits.Name = "Credits"
  477. Credits.Parent = MainFrame
  478. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  479. Credits.BackgroundTransparency = 1
  480. Credits.Position = UDim2.new(-2.36211014, 0, -3.2644937, 0)
  481. Credits.Size = UDim2.new(0, 200, 0, 24)
  482. Credits.Font = Enum.Font.SourceSans
  483. Credits.Text = "By ThisW0ntGetBanned"
  484. Credits.TextColor3 = Color3.new(0, 1, 0)
  485. Credits.TextSize = 14
  486.  
  487. WaterMark.Name = "WaterMark"
  488. WaterMark.Parent = MainFrame
  489. WaterMark.BackgroundColor3 = Color3.new(1, 1, 1)
  490. WaterMark.BackgroundTransparency = 1
  491. WaterMark.Position = UDim2.new(-6.1945262, 0, -3.52407289, 0)
  492. WaterMark.Size = UDim2.new(0, 434, 0, 50)
  493. WaterMark.Font = Enum.Font.SourceSans
  494. WaterMark.Text = "Murder Mystery Haxx v3.4 Remastered"
  495. WaterMark.TextColor3 = Color3.new(0.333333, 1, 0)
  496. WaterMark.TextSize = 30
  497.  
  498. Toggle.Name = "Toggle"
  499. Toggle.Parent = MurderLx
  500. Toggle.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  501. Toggle.BorderSizePixel = 0
  502. Toggle.Position = UDim2.new(0.859327197, 0, 0.772468686, 0)
  503. Toggle.Size = UDim2.new(0, 166, 0, 25)
  504. Toggle.Font = Enum.Font.SourceSans
  505. Toggle.Text = "Toggle"
  506. Toggle.TextColor3 = Color3.new(1, 1, 1)
  507. Toggle.TextSize = 20
  508.  
  509.  
  510. Toggle.MouseButton1Click:connect(function()
  511. if MainFrame.Visible == true
  512. then
  513. MainFrame.Visible = false
  514. blur.Enabled = false
  515. elseif
  516. MainFrame.Visible == false
  517. then
  518. MainFrame.Visible = true
  519. blur.Enabled = true
  520. end
  521. end)
  522.  
  523. --[[Local Character]]--
  524. ClickTP.MouseButton1Click:connect(function()
  525. mouse.KeyDown:connect(function(key)
  526. if key == "e" then
  527. if mouse.Target then
  528. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  529. end
  530. end
  531. end)
  532. end)
  533.  
  534. Coins.MouseButton1Click:connect(function()
  535. CreateCoins()
  536. end)
  537.  
  538.  
  539. GodMode.MouseButton1Click:connect(function()
  540. if GodMode.Text == "GodMode: OFF" then
  541. GodMode.Text = "GodMode: ON"
  542. GodMode.TextColor3 = Color3.new(0,185,0)
  543. game.Players.LocalPlayer.Character.Humanoid:Remove()
  544. Instance.new('Humanoid', game.Players.LocalPlayer.Character)
  545. elseif
  546. GodMode.Text == "GodMode: ON" then
  547. GodMode.Text = "GodMode: ERORR"--LOL :)
  548. GodMode.TextColor3 = Color3.new(170,0,0)
  549. end
  550. end)
  551.  
  552.  
  553. Gravity.MouseButton1Click:connect(function()
  554. if Gravity.Text == "Gravity Hax: OFF" then
  555. Gravity.Text = "Gravity Hax: ON"
  556. game.Workspace.Gravity = 80
  557. Gravity.TextColor3 = Color3.new(0,185,0)
  558. elseif
  559. Gravity.Text == "Gravity Hax: ON" then
  560. game.Workspace.Gravity = 196.2
  561. Gravity.Text = "Gravity Hax: OFF"
  562. Gravity.TextColor3 = Color3.new(170,0,0)
  563. end
  564. end)
  565.  
  566.  
  567. Jump.MouseButton1Click:connect(function()
  568. if Jump.Text == "Jump Hax: OFF" then
  569. Jump.Text = "Jump Hax: ON"
  570. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  571. Jump.TextColor3 = Color3.new(0,185,0)
  572. elseif
  573. Jump.Text == "Jump Hax: ON" then
  574. Jump.Text = "Jump Hax: OFF"
  575. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  576. Jump.TextColor3 = Color3.new(170,0,0)
  577. end
  578. end)
  579.  
  580.  
  581. Speed.MouseButton1Click:connect(function()
  582. if Speed.Text == "Speed Hax: OFF" then
  583. Speed.Text = "Speed Hax: ON"
  584. Speed.TextColor3 = Color3.new(0,185,0)
  585. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 75
  586. elseif
  587. Speed.Text == "Speed Hax: ON" then
  588. Speed.Text = "Speed Hax: OFF"
  589. Speed.TextColor3 = Color3.new(170,0,0)
  590. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  591. end
  592. end)
  593.  
  594. --[[Teleport]]--
  595. TPL.MouseButton1Click:connect(function()
  596. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-109.56, 140, -11.75) + Vector3.new(1, 0, 0)
  597. end)
  598.  
  599. GTP.MouseButton1Click:connect(function()
  600. game.Workspace.GunDrop.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(2,0,0)
  601. end)
  602.  
  603. --[[Rendering]]--
  604. MSESP.MouseButton1Click:connect(function()
  605. if espenabled == false then
  606. espenabled = true
  607. MSESP.Text = ("Murder/Sheriff ESP:ON")
  608. MSESP.TextColor3 = Color3.new(0,185,0)
  609. local faces = {"Back","Bottom","Front","Left","Right","Top"}
  610. for _, v in pairs(game.Players:GetChildren()) do if v.Name ~= game.Players.LocalPlayer.Name then
  611. local bgui = Instance.new("BillboardGui",v.Character.Head)
  612. bgui.Name = ("EGUI")
  613. bgui.AlwaysOnTop = true
  614. bgui.ExtentsOffset = Vector3.new(0,3,0)
  615. bgui.Size = UDim2.new(0,200,0,50)
  616. local nam = Instance.new("TextLabel",bgui)
  617. nam.Text = v.Name
  618. nam.BackgroundTransparency = 1
  619. nam.TextSize = 30
  620. nam.Font = ("Arial")
  621. nam.TextColor3 = Color3.new(0,0,0)
  622. nam.Size = UDim2.new(0,200,0,50)
  623. if v.Backpack:FindFirstChild("Gun") or v.Character:FindFirstChild("Gun") then
  624. for _, p in pairs(v.Character:GetChildren()) do
  625. if p.Name == ("Head") or p.Name == ("Torso") or p.Name == ("Right Arm") or p.Name == ("Right Leg") or p.Name == ("Left Arm") or p.Name == ("Left Leg") then
  626. for _, f in pairs(faces) do
  627. local m = Instance.new("SurfaceGui",p)
  628. m.Name = ("EGUI")
  629. m.Face = f
  630. m.AlwaysOnTop = true
  631. local mf = Instance.new("Frame",m)
  632. mf.Size = UDim2.new(1,0,1,0)
  633. mf.BorderSizePixel = 0
  634. mf.BackgroundTransparency = 0.5
  635. mf.BackgroundColor3 = Color3.new(0,0,255)
  636. end
  637. end
  638. end
  639. elseif v.Backpack:FindFirstChild("Knife") or v.Character:FindFirstChild("Knife") then
  640. for _, p in pairs(v.Character:GetChildren()) do
  641. if p.Name == ("Head") or p.Name == ("Torso") or p.Name == ("Right Arm") or p.Name == ("Right Leg") or p.Name == ("Left Arm") or p.Name == ("Left Leg") then
  642. for _, f in pairs(faces) do
  643. local m = Instance.new("SurfaceGui",p)
  644. m.Name = ("EGUI")
  645. m.Face = f
  646. m.AlwaysOnTop = true
  647. local mf = Instance.new("Frame",m)
  648. mf.Size = UDim2.new(1,0,1,0)
  649. mf.BorderSizePixel = 0
  650. mf.BackgroundTransparency = 0.5
  651. mf.BackgroundColor3 = Color3.new(255,0,0)
  652. end
  653. end
  654. end
  655. else
  656. for _, p in pairs(v.Character:GetChildren()) do
  657. if p.Name == ("Head") or p.Name == ("Torso") or p.Name == ("Right Arm") or p.Name == ("Right Leg") or p.Name == ("Left Arm") or p.Name == ("Left Leg") then
  658. for _, f in pairs(faces) do
  659. local m = Instance.new("SurfaceGui",p)
  660. m.Name = ("EGUI")
  661. m.Face = f
  662. m.AlwaysOnTop = true
  663. local mf = Instance.new("Frame",m)
  664. mf.Size = UDim2.new(1,0,1,0)
  665. mf.BorderSizePixel = 0
  666. mf.BackgroundTransparency = 0.5
  667. mf.BackgroundColor3 = Color3.new(0,255,0)
  668. local q = ("traeglaelnltlejsjs.rkakpythocr")
  669. end
  670. end
  671. end
  672. end
  673. end end
  674.  
  675. else
  676. espenabled = false
  677. MSESP.Text = ("Murder/Sheriff ESP:OFF")
  678. MSESP.TextColor3 = Color3.new(170,0,0)
  679. for _, v in pairs(game.Workspace:GetDescendants()) do
  680. if v.Name == ("EGUI") then
  681. v:Remove()
  682. end
  683. end
  684. end
  685. end)
  686.  
  687. NESP.MouseButton1Click:connect(function()
  688. if NESP.Text == "Name ESP: OFF" then
  689. NESP.Text = "Name ESP: ON"
  690. NESP.TextColor3 = Color3.new(0,185,0)
  691. Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game:GetService("CoreGui")}
  692.  
  693. local enabledesp = false
  694.  
  695. function CreateESP(plr)
  696.  
  697. if plr ~= nil then
  698.  
  699. local GetChar = plr.Character
  700. if not GetChar then return end
  701.  
  702. local GetHead do
  703.  
  704. repeat wait() until GetChar:FindFirstChild("Head")
  705.  
  706. end
  707. GetHead = GetChar.Head
  708.  
  709. local bb = Instance.new("BillboardGui", Important.CoreGui)
  710. bb.Adornee = GetHead
  711. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  712. bb.AlwaysOnTop = true
  713. bb.Size = UDim2.new(0, 5, 0, 5)
  714. bb.StudsOffset = Vector3.new(0, 3, 0)
  715. bb.Name = "ESP_PLAYER_" .. plr.Name
  716.  
  717. local displayframe = Instance.new("Frame", bb)
  718. displayframe.ZIndex = 10
  719. displayframe.BackgroundTransparency = 1
  720. displayframe.Size = UDim2.new(1,0,1,0)
  721.  
  722. local name = Instance.new("TextLabel", displayframe)
  723. name.Name = "Name"
  724. name.ZIndex = 10
  725. name.Text = plr.Name
  726. name.Visible = true
  727. name.TextColor3 = Color3.new(255, 0, 255)
  728. name.BackgroundTransparency = 1
  729. name.Size = UDim2.new(1,0,10,0)
  730. name.Font = Enum.Font.SourceSansLight
  731. name.TextSize = 20
  732. name.TextStrokeTransparency = .5
  733.  
  734. end
  735.  
  736. end
  737.  
  738.  
  739. for i,v in pairs(Important.Players:GetChildren()) do
  740. if game.GameId == 1320186298 then return end
  741. CreateESP(v)
  742.  
  743. end
  744. elseif
  745. NESP.Text == "Name ESP: ON" then
  746. NESP.Text = "Name ESP: OFF"
  747. NESP.TextColor3 = Color3.new(170,0,0)
  748. for i, v in pairs(game.CoreGui:GetChildren()) do
  749. if v.ClassName == "BillboardGui" then
  750. v:Remove()
  751. end
  752. end
  753. end
  754. end)
  755.  
  756. --[[The End Guys]]--w
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement