Untitled
Untitled
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")
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)