0% found this document useful (0 votes)
11 views3 pages

Untitled

Uploaded by

kanjohattori03
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views3 pages

Untitled

Uploaded by

kanjohattori03
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

if not game:IsLoaded() then game.

Loaded:Wait() end
local Library =
loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-
libs/main/wizard"))()
roles = game:GetService("ReplicatedStorage"):FindFirstChild("GetPlayerData",
true):InvokeServer()
local MMV = Library:NewWindow("Kazuya Cheats")

local Mains = MMV:NewSection("Main")

if not workspace:FindFirstChild("KillpartsVisual") then


local folder = Instance.new("Folder", workspace)
folder.Name = "KillpartsVisual"
end

function CreateHighlight()
for i, v in pairs(game.Players:GetPlayers()) do
if v ~= game:GetService("Players").LocalPlayer and v.Character ~= nil
and v.Character:FindFirstChild("HumanoidRootPart") and not
v.Character:FindFirstChild("ESP_Highlight") then
local esphigh = Instance.new("Highlight", v.Character)
esphigh.Name = "ESP_Highlight"
esphigh.FillColor = Color3.fromRGB(160, 160, 160)
esphigh.OutlineTransparency = 1
esphigh.FillTransparency = applyesptrans
end
end
end

function UpdateHighlights()
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= game:GetService("Players").LocalPlayer and v.Character ~= nil
and v.Character:FindFirstChild("HumanoidRootPart") and
v.Character:FindFirstChild("ESP_Highlight") then
local Highlight = v.Character:FindFirstChild("ESP_Highlight")
if v.Name == Sheriff and IsAlive(v) then
Highlight.FillColor = Color3.fromRGB(0, 0, 225)
Highlight.FillTransparency = applyesptrans
elseif v.Name == Murder and IsAlive(v) then
Highlight.FillColor = Color3.fromRGB(225, 0, 0)
Highlight.FillTransparency = applyesptrans
elseif v.Name == Hero and IsAlive(v) and
v.Backpack:FindFirstChild("Gun") then
Highlight.FillColor = Color3.fromRGB(255, 255, 0)
Highlight.FillTransparency = applyesptrans
elseif v.Name == Hero and IsAlive(v) and
v.Character:FindFirstChild("Gun") then
Highlight.FillColor = Color3.fromRGB(255, 255, 0)
Highlight.FillTransparency = applyesptrans
elseif not IsAlive(v) then
Highlight.FillColor = Color3.fromRGB(100, 100, 100)
Highlight.FillTransparency = applyesptrans
else
Highlight.FillColor = Color3.fromRGB(0, 225, 0)
Highlight.FillTransparency = applyesptrans
end
end
end
end
function IsAlive(Player)
for i, v in pairs(roles) do
if Player.Name == i then
if not v.Killed and not v.Dead then
return true
else
return false
end
end
end
end

function HideHighlights()
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= game:GetService("Players").LocalPlayer and v.Character ~= nil
and v.Character:FindFirstChild("ESP_Highlight") then
v.Character:FindFirstChild("ESP_Highlight"):Destroy()
end
end
end

applyesptrans = 0.5
Mains:CreateToggle("ESP Players", function(SeeRoles)
if SeeRoles then
SSeeRoles = true
while SSeeRoles == true do
roles = game:GetService("ReplicatedStorage"):FindFirstChild("GetPlayerData",
true):InvokeServer()
for i, v in pairs(roles) do
if v.Role == "Murderer" then
Murder = i
elseif v.Role == "Sheriff" then
Sheriff = i
elseif v.Role == "Hero" then
Hero = i
end
end
CreateHighlight()
UpdateHighlights()
end
else
SSeeRoles = false
task.wait(0.2)
HideHighlights()
end
end)

Mains:CreateToggle("ESP Gun Drop", function(SeeGun)


if SeeGun then
SSeeGun = true
while SSeeGun == true do
repeat wait()
until workspace:FindFirstChild("GunDrop")
if workspace:FindFirstChild("GunDrop") and not
workspace.GunDrop:FindFirstChild("Esp_gun") then
if SSeeGun == true then
game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "MM2 Mods",
Text = "Gun is Dropped",
Duration = 2
})
local espgunhigh = Instance.new("Highlight",
workspace:FindFirstChild("GunDrop"))
espgunhigh.Name = "Esp_gun"
espgunhigh.FillColor = Color3.fromRGB(0, 0, 0)
espgunhigh.OutlineTransparency = 1
espgunhigh.FillTransparency = 0
end
end
end
else
SSeeGun = false
task.wait(0.2)
if workspace:FindFirstChild("GunDrop") and
workspace.GunDrop:FindFirstChild("Esp_gun") then
workspace.GunDrop:FindFirstChild("Esp_gun"):Destroy()
end
end
end)

Mains:CreateSlider("ESP Transparency", 0, 1, 0.5, true, function(esptrans)


applyesptrans = esptrans
end)

You might also like