Foruma hoş geldin 👋, Ziyaretçi

Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.

Paylaşım Roblox Murder Mystery 2: Murderer Detector, Detective Detector, Gun Drop ESP

Paylaşım

zody

King
Moderatör
Katılım
19 Tem 2024
Mesajlar
1,401
Tepkime puanı
67
Puanları
0
-Yyarqx6OBU-image.jpg


Murder Mystery 2 gibi bir oyun için yeni ve popüler script. Bu scriptte Murderer Detector, Detective Detector, Gun Drop ESP gibi fonksiyonlar bulunmaktadır.

Script:
Kod:
game:GetService("RunService").RenderStepped:Connect(function()
    for _, plr in pairs(game.Players:GetChildren()) do
        if plr.Character and plr ~= game.Players.LocalPlayer then
            if plr.Backpack:FindFirstChild("Knife") or plr.Character:FindFirstChild("Knife") then
                if not plr.Character:FindFirstChild("MM2MDR") then
                    local hl = Instance.new("Highlight")
                    hl.Parent = plr.Character
                    hl.FillTransparency = 1
                    hl.OutlineTransparency = 0
                    hl.OutlineColor = Color3.fromRGB(255, 0, 0)
                    hl.Name = "MM2MDR"
                end
                if plr.Character:FindFirstChild("MM2MDB") then
                    plr.Character:FindFirstChild("MM2MDB"):Destroy()
                end
                if plr.Character:FindFirstChild("MM2MDW") then
                    plr.Character:FindFirstChild("MM2MDW"):Destroy()
                end
            elseif plr.Backpack:FindFirstChild("Gun") or plr.Character:FindFirstChild("Gun") then
                if not plr.Character:FindFirstChild("MM2MDB") then
                    local hl = Instance.new("Highlight")
                    hl.Parent = plr.Character
                    hl.FillTransparency = 1
                    hl.OutlineTransparency = 0
                    hl.OutlineColor = Color3.fromRGB(0, 0, 255)
                    hl.Name = "MM2MDB"
                end
                if plr.Character:FindFirstChild("MM2MDW") then
                    plr.Character:FindFirstChild("MM2MDW"):Destroy()
                end
                if plr.Character:FindFirstChild("MM2MDR") then
                    plr.Character:FindFirstChild("MM2MDR"):Destroy()
                end
            else
                if not plr.Character:FindFirstChild("MM2MDW") then
                    local hl = Instance.new("Highlight")
                    hl.Parent = plr.Character
                    hl.FillTransparency = 1
                    hl.OutlineTransparency = 0
                    hl.OutlineColor = Color3.fromRGB(255, 255, 255)
                    hl.Name = "MM2MDW"
                end
                if plr.Character:FindFirstChild("MM2MDB") then
                    plr.Character:FindFirstChild("MM2MDB"):Destroy()
                end
                if plr.Character:FindFirstChild("MM2MDR") then
                    plr.Character:FindFirstChild("MM2MDR"):Destroy()
                end
            end
        end
    end
    if workspace:FindFirstChild("GunDrop") then
        if not workspace.GunDrop:FindFirstChild("MM2MDG") then
            local hl = Instance.new("Highlight")
            hl.Parent = workspace.GunDrop
            hl.FillTransparency = 0.5
            hl.OutlineTransparency = 0
            hl.OutlineColor = Color3.fromRGB(0, 255, 0)
            hl.FillColor = Color3.fromRGB(255, 180, 29)
            hl.Name = "MM2MDG"
        end
    end
end)
 

Foruma hoş geldin 👋, Ziyaretçi

Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.