mm2 knife script pastebin
-- This script names the sheriff and murderer in the console (F9) and teleport's you to the gun if its dropped.
-- This script will not work if you have the dual knife effect.
-- This script was made by Luna#9505

for i,v in pairs(game.Players:GetChildren()) do
   if v.Backpack.Knife ~= nil or v.Character.Knife ~= nil then
       print(v.Name .. " is murderer")
   end
end

for i,v in pairs(game.Players:GetChildren()) do
mm2 knife script pastebin How to use it? mm2 knife script pastebin
   if v.Backpack.Gun ~= nil or v.Backpack.Revolver ~= nil or v.Character.Gun ~= nil or v.Character.Revolver ~= nil then
       print(v.Name .. " is sheriff")
   end
end

if workspace.GunDrop ~= nil then
   game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.GunDrop.Position)
end
mm2 knife script pastebin