Advertisement
KCROL_AdminLeaks

Murder Menu Script by KCROL

Feb 26th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.29 KB | None | 0 0
  1. local Plr = game:GetService("Players").LocalPlayer
  2.  
  3. local part = Instance.new('Part',workspace)
  4. part.Size = Vector3.new(16.6, 16.88, 0.05)
  5. part.BrickColor = BrickColor.new('Really black')
  6. part.Anchored = true
  7. part.Locked = true
  8.  
  9. game:GetService("RunService").RenderStepped:connect(function()
  10.     part.CFrame = Plr.Character.HumanoidRootPart.CFrame * CFrame.new(0,4.5,-7) * CFrame.Angles(-0.2,0,0)
  11. end)
  12.  
  13. -- Objects
  14.  
  15. local MurderUI = Instance.new("SurfaceGui")
  16. local MurderFrame = Instance.new("Frame")
  17. local MurderMenuLogo = Instance.new("ImageLabel")
  18. local Heading = Instance.new("TextLabel")
  19. local Murder = Instance.new("Frame")
  20. local TextButton = Instance.new("TextButton")
  21.  
  22. -- Properties
  23.  
  24. MurderUI.Name = "MurderUI"
  25. MurderUI.Parent = part
  26. MurderUI.Face = Enum.NormalId.Back
  27. MurderUI.LightInfluence = 1
  28.  
  29. MurderFrame.Name = "MurderFrame"
  30. MurderFrame.Parent = MurderUI
  31. MurderFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  32. MurderFrame.BorderSizePixel = 0
  33. MurderFrame.Size = UDim2.new(1, 0, 1, 0)
  34.  
  35. MurderMenuLogo.Name = "MurderMenuLogo"
  36. MurderMenuLogo.Parent = MurderFrame
  37. MurderMenuLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  38. MurderMenuLogo.BorderSizePixel = 0
  39. MurderMenuLogo.Size = UDim2.new(0, 100, 0, 75)
  40. MurderMenuLogo.Image = "rbxassetid://212456912"
  41.  
  42. Heading.Name = "Heading"
  43. Heading.Parent = MurderFrame
  44. Heading.BackgroundColor3 = Color3.new(1, 1, 1)
  45. Heading.BorderSizePixel = 0
  46. Heading.Position = UDim2.new(0.125, 0, 0, 11)
  47. Heading.Size = UDim2.new(0.850000024, 0, 0, 50)
  48. Heading.Font = Enum.Font.SourceSans
  49. Heading.Text = "    Murder Menu"
  50. Heading.TextScaled = true
  51. Heading.TextSize = 14
  52. Heading.TextWrapped = true
  53. Heading.TextXAlignment = Enum.TextXAlignment.Left
  54.  
  55. Murder.Name = "Murder"
  56. Murder.Parent = MurderFrame
  57. Murder.BackgroundColor3 = Color3.new(1, 1, 1)
  58. Murder.BorderSizePixel = 0
  59. Murder.Position = UDim2.new(0.5, -200, 0.5, -225)
  60. Murder.Size = UDim2.new(0, 450, 0, 450)
  61.  
  62. TextButton.Parent = Murder
  63. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  64. TextButton.BorderSizePixel = 0
  65. TextButton.Size = UDim2.new(1, 0, 0, 30)
  66. TextButton.Font = Enum.Font.SourceSansBold
  67. TextButton.Text = "Start!"
  68. TextButton.TextColor3 = Color3.new(0, 0, 0)
  69. TextButton.TextScaled = true
  70. TextButton.TextSize = 14
  71. TextButton.TextWrapped = true
  72.  
  73.  
  74. TextButton.MouseButton1Click:connect(function()
  75.     local down = 0
  76.     TextButton.Visible = false
  77.     for i,x in pairs(game:GetService("Players"):GetPlayers()) do
  78.         -- Objects
  79.  
  80. local MurderPlayer = Instance.new("TextButton")
  81.  
  82. -- Properties
  83.  
  84. MurderPlayer.Parent = Murder
  85. MurderPlayer.Name = "M0rderthisguy"
  86. MurderPlayer.BackgroundColor3 = Color3.new(1, 1, 1)
  87. MurderPlayer.BorderSizePixel = 0
  88. MurderPlayer.Size = UDim2.new(1, 0, 0, 30)
  89. MurderPlayer.Font = Enum.Font.SourceSansBold
  90. MurderPlayer.Text = x.Name
  91. MurderPlayer.TextColor3 = Color3.new(0, 0, 0)
  92. MurderPlayer.TextScaled = true
  93. MurderPlayer.TextSize = 14
  94. MurderPlayer.Position = UDim2.new(0,0,0,down)
  95. MurderPlayer.TextWrapped = true
  96. wait()
  97. down=down+30
  98. MurderPlayer.MouseButton1Click:connect(function()
  99.     workspace[x.Name].Humanoid.MaxHealth = 0
  100.     workspace[x.Name].Humanoid.Health = 0
  101.     MurderPlayer:Destroy()
  102.     for i,v in pairs(Murder:GetChildren()) do
  103.         if v.Name == "M0rderthisguy" then
  104.             v:Destroy()
  105.         end
  106.     end
  107.     TextButton.Text = "Go again!"
  108.     TextButton.Visible = true
  109. end)
  110.     end
  111. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement