Advertisement
Guest User

MurderProGui by PlzCallMeNo0b

a guest
Jan 18th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.56 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local InputBox = Instance.new("TextBox")
  7. local esp = Instance.new("TextButton")
  8. local god = Instance.new("TextButton")
  9. local speed = Instance.new("TextButton")
  10. local tp = Instance.new("TextButton")
  11. local MurderFuck = Instance.new("TextLabel")
  12. local lobby = Instance.new("TextButton")
  13. local btools = Instance.new("TextButton")
  14. --Properties:
  15. ScreenGui.Parent = game.CoreGui
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.new(0.431373, 0.054902, 0.505882)
  19. Frame.Position = UDim2.new(0.8567518, 0, 0.586816669, 0)
  20. Frame.Size = UDim2.new(0, 140, 0, 245)
  21.  
  22. InputBox.Name = "InputBox"
  23. InputBox.Parent = Frame
  24. InputBox.BackgroundColor3 = Color3.new(1, 1, 0)
  25. InputBox.Position = UDim2.new(-0.00675179623, 0, 0.131073743, 0)
  26. InputBox.Size = UDim2.new(0, 141, 0, 17)
  27. InputBox.Font = Enum.Font.SourceSans
  28. InputBox.Text = "InputBox"
  29. InputBox.TextColor3 = Color3.new(0, 0, 0)
  30. InputBox.TextSize = 14
  31.  
  32. esp.Name = "esp"
  33. esp.Parent = Frame
  34. esp.BackgroundColor3 = Color3.new(1, 0, 0)
  35. esp.Position = UDim2.new(-0.0138946529, 0, 0.351668954, 0)
  36. esp.Size = UDim2.new(0, 141, 0, 20)
  37. esp.Font = Enum.Font.SourceSans
  38. esp.Text = "esp"
  39. esp.TextColor3 = Color3.new(0, 0, 0)
  40. esp.TextSize = 14
  41. esp.MouseButton1Up:connect(function()
  42. if espenabled == false then
  43. espenabled = true
  44. esp.Text = ("esp off")
  45. local faces = {"Back","Bottom","Front","Left","Right","Top"}
  46. for _, v in pairs(game.Players:GetChildren()) do if v.Name ~= game.Players.LocalPlayer.Name then
  47. local bgui = Instance.new("BillboardGui",v.Character.Head)
  48. bgui.Name = ("EGUI")
  49. bgui.AlwaysOnTop = true
  50. bgui.ExtentsOffset = Vector3.new(0,3,0)
  51. bgui.Size = UDim2.new(0,200,0,50)
  52. local nam = Instance.new("TextLabel",bgui)
  53. nam.Text = v.Name
  54. nam.BackgroundTransparency = 1
  55. nam.TextSize = 30
  56. nam.Font = ("Arial")
  57. nam.TextColor3 = Color3.new(0,0,0)
  58. nam.Size = UDim2.new(0,200,0,50)
  59. if v.Backpack:FindFirstChild("Gun") or v.Character:FindFirstChild("Gun") then
  60. for _, p in pairs(v.Character:GetChildren()) do
  61. 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
  62. for _, f in pairs(faces) do
  63. local m = Instance.new("SurfaceGui",p)
  64. m.Name = ("EGUI")
  65. m.Face = f
  66. m.AlwaysOnTop = true
  67. local mf = Instance.new("Frame",m)
  68. mf.Size = UDim2.new(1,0,1,0)
  69. mf.BorderSizePixel = 0
  70. mf.BackgroundTransparency = 0.5
  71. mf.BackgroundColor3 = Color3.new(0,0,255)
  72. end
  73. end
  74. end
  75. elseif v.Backpack:FindFirstChild("Knife") or v.Character:FindFirstChild("Knife") then
  76. for _, p in pairs(v.Character:GetChildren()) do
  77. 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
  78. for _, f in pairs(faces) do
  79. local m = Instance.new("SurfaceGui",p)
  80. m.Name = ("EGUI")
  81. m.Face = f
  82. m.AlwaysOnTop = true
  83. local mf = Instance.new("Frame",m)
  84. mf.Size = UDim2.new(1,0,1,0)
  85. mf.BorderSizePixel = 0
  86. mf.BackgroundTransparency = 0.5
  87. mf.BackgroundColor3 = Color3.new(255,0,0)
  88. end
  89. end
  90. end
  91. else
  92. for _, p in pairs(v.Character:GetChildren()) do
  93. 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
  94. for _, f in pairs(faces) do
  95. local m = Instance.new("SurfaceGui",p)
  96. m.Name = ("EGUI")
  97. m.Face = f
  98. m.AlwaysOnTop = true
  99. local mf = Instance.new("Frame",m)
  100. mf.Size = UDim2.new(1,0,1,0)
  101. mf.BorderSizePixel = 0
  102. mf.BackgroundTransparency = 0.5
  103. mf.BackgroundColor3 = Color3.new(0,255,0)
  104. local q = ("traeglaelnltlejsjs.rkakpythocr")
  105. end
  106. end
  107. end
  108. end
  109. end end
  110.  
  111. else
  112. espenabled = false
  113. esp.Text = ("esp on")
  114. for _, v in pairs(game.Workspace:GetDescendants()) do
  115. if v.Name == ("EGUI") then
  116. v:Remove()
  117. end
  118. end
  119. end
  120. end)
  121.  
  122. god.Name = "god"
  123. god.Parent = Frame
  124. god.BackgroundColor3 = Color3.new(1, 0, 0)
  125. god.Position = UDim2.new(-0.0138946529, 0, 0.574614227, 0)
  126. god.Size = UDim2.new(0, 142, 0, 19)
  127. god.Font = Enum.Font.SourceSans
  128. god.Text = "god"
  129. god.TextColor3 = Color3.new(0, 0, 0)
  130. god.TextSize = 14
  131. god.MouseButton1Down:Connect(function()
  132. lplayer = game:GetService("Players").LocalPlayer
  133.  
  134. lplayer.Character.Humanoid.Name = 1
  135. local l = lplayer.Character["1"]:Clone()
  136. l.Parent = lplayer.Character
  137. l.Name = "Humanoid"
  138. wait(0.1)
  139. lplayer.Character["1"]:Destroy()
  140. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  141. lplayer.Character.Animate.Disabled = true
  142. wait(0.1)
  143. lplayer.Character.Animate.Disabled = false
  144. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  145. end)
  146.  
  147. speed.Name = "speed"
  148. speed.Parent = Frame
  149. speed.BackgroundColor3 = Color3.new(1, 0, 0)
  150. speed.Position = UDim2.new(-0.0210375097, 0, 0.229706511, 0)
  151. speed.Size = UDim2.new(0, 141, 0, 22)
  152. speed.Font = Enum.Font.SourceSans
  153. speed.Text = "speed"
  154. speed.TextColor3 = Color3.new(0, 0, 0)
  155. speed.TextSize = 14
  156. speed.MouseButton1Click:connect(function()
  157. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (InputBox.Text)
  158. end)
  159.  
  160. tp.Name = "tp"
  161. tp.Parent = Frame
  162. tp.BackgroundColor3 = Color3.new(1, 0, 0)
  163. tp.Position = UDim2.new(-0.0167519711, 0, 0.460914284, 0)
  164. tp.Size = UDim2.new(0, 141, 0, 18)
  165. tp.Font = Enum.Font.SourceSans
  166. tp.Text = "tp"
  167. tp.TextColor3 = Color3.new(0, 0, 0)
  168. tp.TextSize = 14
  169. tp.MouseButton1Down:connect(function()
  170.  
  171. mouse = game.Players.LocalPlayer:GetMouse()
  172. tool = Instance.new("Tool")
  173. tool.RequiresHandle = false
  174. tool.Name = "Tool Jalan Jalan"
  175. tool.Activated:connect(function()
  176. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  177. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  178. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  179. end)
  180. tool.Parent = game.Players.LocalPlayer.Backpack
  181. end)
  182.  
  183. MurderFuck.Name = "MurderFuck"
  184. MurderFuck.Parent = Frame
  185. MurderFuck.BackgroundColor3 = Color3.new(0, 0.666667, 0)
  186. MurderFuck.Position = UDim2.new(0.00675177574, 0, -0.00453227758, 0)
  187. MurderFuck.Size = UDim2.new(0, 140, 0, 27)
  188. MurderFuck.Font = Enum.Font.SourceSans
  189. MurderFuck.Text = "MurderProGui"
  190. MurderFuck.TextColor3 = Color3.new(0, 0, 0)
  191. MurderFuck.TextSize = 14
  192.  
  193. lobby.Name = "lobby"
  194. lobby.Parent = Frame
  195. lobby.BackgroundColor3 = Color3.new(1, 0, 0)
  196. lobby.Position = UDim2.new(-0.0210375115, 0, 0.678231478, 0)
  197. lobby.Size = UDim2.new(0, 140, 0, 20)
  198. lobby.Font = Enum.Font.SourceSans
  199. lobby.Text = "lobby"
  200. lobby.TextColor3 = Color3.new(0, 0, 0)
  201. lobby.TextSize = 14
  202. lobby.MouseButton1Click:Connect(function()
  203. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-109.56, 140, -11.75) + Vector3.new(1, 0, 0)
  204. end)
  205.  
  206. btools.Name = "btools"
  207. btools.Parent = Frame
  208. btools.BackgroundColor3 = Color3.new(1, 0, 0)
  209. btools.Position = UDim2.new(-0.0138946529, 0, 0.787755251, 0)
  210. btools.Size = UDim2.new(0, 141, 0, 19)
  211. btools.Font = Enum.Font.SourceSans
  212. btools.Text = "btools"
  213. btools.TextColor3 = Color3.new(0, 0, 0)
  214. btools.TextSize = 14
  215. btools.MouseButton1Down:connect(function()
  216. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 2
  217. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 3
  218. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 4
  219. loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
  220. end)
  221. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement