Advertisement
kipr987

Murder vs Shirif

Aug 19th, 2023 (edited)
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.50 KB | None | 0 0
  1. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  2.     if v.Name == "ui" then
  3.         v:Destroy()
  4.     end
  5. end
  6. local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/QAwr1iuM"))()
  7.  
  8. local window = UI:Window("By kipr987")
  9. local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
  10. local kill = window:Tab("Kill All")
  11. local hitbox = window:Tab("Hitbox")
  12. local esp = window:Tab("Esp")
  13. local player = window:Tab("LocalPlayer")
  14. local setting = window:Tab("Setting")
  15. setting:Label("Gui Open/Close [H]")
  16. game:GetService("UserInputService").InputBegan:Connect(function(key, event)
  17.     if event then return end
  18.     pcall(function()
  19.     if key.KeyCode == Enum.KeyCode.H then
  20.         if game:GetService("CoreGui").ui.Enabled == false then
  21.             game:GetService("CoreGui").ui.Enabled = true
  22.         else
  23.             game:GetService("CoreGui").ui.Enabled = false
  24.         end
  25.     end
  26.     end)
  27. end)
  28. _G.torso = false
  29. _G.head = false
  30. _G.hitSize = 5
  31. _G.Kill = false
  32. kill:Toggle("Kill All", false, function(value)
  33. _G.Kill = value
  34. print(_G.Kill)
  35. end)
  36. kill:Label("Equiped pistol for Kill All")
  37. spawn(function()
  38. game:GetService("RunService").RenderStepped:Connect(function()
  39. if _G.Kill == false then return end
  40. pcall(function()
  41. for i, v in pairs(workspace:GetChildren()) do
  42. if v:FindFirstChild("HumanoidRootPart") then
  43. local args = {
  44.     [1] = Vector3.new(15,4,8),
  45.     [2] = Vector3.new(0,0,0),
  46.     [3] = v.HumanoidRootPart,
  47.     [4] = game:GetService("Players").LocalPlayer.Character.RightFoot.Position
  48. }
  49.  
  50. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Shoot"):FireServer(unpack(args))
  51. end
  52. end
  53. end)
  54. end)
  55. end)
  56. hitbox:Toggle("Torso", false, function(value)
  57.     _G.torso = value
  58. end)
  59. hitbox:Toggle("Head", false, function(value)
  60.     _G.head = value
  61. end)
  62. hitbox:Slider("Size", 0, 50, 5, function(value)
  63.     _G.hitSize = value
  64. end)
  65. esp:Toggle("Esp", false, function(value)
  66.     _G.Esp = value
  67. end)
  68. _G.Speed = 16
  69. local speed = player:Slider("WalkSpeed", 0, 100, 16, function(value)
  70.     _G.Speed = value
  71. end)
  72.  
  73. game:GetService("RunService").RenderStepped:Connect(function()
  74.     pcall(function()
  75.         game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = _G.Speed
  76.     end)
  77. end)
  78.  
  79. game:GetService("RunService").RenderStepped:Connect(function()
  80.     pcall(function()
  81.         if _G.torso then
  82.             if game:GetService("Players").LocalPlayer.Team == nil then
  83.                 for i, v in pairs(game:GetService("Players"):GetChildren()) do
  84.                     local HumanoidRootPart = v.Character:FindFirstChild("HumanoidRootPart")
  85.                     if v.Name ~= game:GetService("Players").LocalPlayer.Name and HumanoidRootPart then
  86.                         HumanoidRootPart.Size = Vector3.new(_G.hitSize,_G.hitSize,_G.hitSize)
  87.                         HumanoidRootPart.Transparency = .7
  88.                         HumanoidRootPart.CanCollide = false
  89.                     end
  90.                 end
  91.             else
  92.                 for i, v in pairs(game:GetService("Players"):GetChildren()) do
  93.                     local HumanoidRootPart = v.Character:FindFirstChild("HumanoidRootPart")
  94.                     if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Team ~= game:GetService("Players").LocalPlayer.Team and HumanoidRootPart and v.Character.Humanoid.Health > 0 then
  95.                         HumanoidRootPart.Size = Vector3.new(_G.hitSize,_G.hitSize,_G.hitSize)
  96.                         HumanoidRootPart.Transparency = .7
  97.                         HumanoidRootPart.CanCollide = false
  98.                     elseif v.Name ~= game:GetService("Players").LocalPlayer.Name then
  99.                         HumanoidRootPart.Size = Vector3.new(2,2,1)
  100.                         HumanoidRootPart.Transparency = 1
  101.                     end
  102.                 end
  103.             end
  104.         else
  105.             for i, v in pairs(game:GetService("Players"):GetChildren()) do
  106.                 local HumanoidRootPart = v.Character:FindFirstChild("HumanoidRootPart")
  107.                 if v.Name ~= game:GetService("Players").LocalPlayer.Name and HumanoidRootPart then
  108.                     HumanoidRootPart.Size = Vector3.new(2,2,1)
  109.                     HumanoidRootPart.Transparency = 1
  110.                 end
  111.             end
  112.         end
  113.     end)
  114. end)
  115.  
  116. game:GetService("RunService").RenderStepped:Connect(function()
  117.     pcall(function()
  118.         if _G.head then
  119.             if game:GetService("Players").LocalPlayer.Team == nil then
  120.                 for i, v in pairs(game:GetService("Players"):GetChildren()) do
  121.                     local HumanoidRootPart = v.Character:FindFirstChild("Head")
  122.                     if v.Name ~= game:GetService("Players").LocalPlayer.Name and HumanoidRootPart and HumanoidRootPart.Parent:FindFirstChild("Humanoid").Health > 0 then
  123.                         HumanoidRootPart.Massless = true
  124.                         HumanoidRootPart.Size = Vector3.new(_G.hitSize,_G.hitSize,_G.hitSize)
  125.                         HumanoidRootPart.Transparency = .7
  126.                         HumanoidRootPart.CanCollide = false
  127.                     end
  128.                 end
  129.             else
  130.                 for i, v in pairs(game:GetService("Players"):GetChildren()) do
  131.                     local HumanoidRootPart = v.Character:FindFirstChild("Head")
  132.                     if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Team ~= game:GetService("Players").LocalPlayer.Team and HumanoidRootPart and HumanoidRootPart.Parent:FindFirstChild("Humanoid").Health > 0 then
  133.                         HumanoidRootPart.Massless = true
  134.                         HumanoidRootPart.Size = Vector3.new(_G.hitSize,_G.hitSize,_G.hitSize)
  135.                         HumanoidRootPart.Transparency = .7
  136.                         HumanoidRootPart.CanCollide = false
  137.                     elseif v.Name ~= game:GetService("Players").LocalPlayer.Name then
  138.                         HumanoidRootPart.Size = Vector3.new(1,1,1)
  139.                         HumanoidRootPart.Transparency = 0
  140.                     end
  141.                 end
  142.             end
  143.         else
  144.             for i, v in pairs(game:GetService("Players"):GetChildren()) do
  145.                 local HumanoidRootPart = v.Character:FindFirstChild("Head")
  146.                 if v.Name ~= game:GetService("Players").LocalPlayer.Name and HumanoidRootPart then
  147.                     HumanoidRootPart.Size = Vector3.new(1,1,1)
  148.                     HumanoidRootPart.Transparency = 0
  149.                 end
  150.             end
  151.         end
  152.     end)
  153. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement