Скрипты на ММ2 для Роблокс
Скрипты для ММ2 Роблокс на скрытое убийство, автофарм, невидимость и другие читерные функции. Для использования скрипта, необходимо использовать эксплойт (например Solara или JJSploit можно найти в разделе читы).
Скрипт | Возможности и описание |
loadstring(game:HttpGet("https://raw.githubusercontent.com/Daxiled/OpHub/main/Synphony"))()
|
|
loadstring(game:HttpGet("https://raw.githubusercontent.com/fiveghanistan/DiamondHub/main/MurderMystery2"))()
|
|
loadstring(game:HttpGet("https://raw.githubusercontent.com/MarsQQ/ScriptHubScripts/master/MM2%20Admin%20Panel"))()
|
|
loadstring(game:HttpGet("https://raw.githubusercontent.com/Lkmojjla/Scripthub1/main/Highlight%20hub"))()
|
|
loadstring(game:HttpGet("https://raw.githubusercontent.com/SnowyV4/LunarHub/main/Loadstring.lua"))()
|
|
loadstring(game:HttpGet("https://raw.githubusercontent.com/Eblan19/875578/main/ERA-Hub"))()
| Этот скрипт позволит визуализировать местоположение всех игроков или противников на карте, даже если им мешают стены или другие препятствия. |
loadstring(game:HttpGet("https://raw.githubusercontent.com/NEWBUTIF/Universal-Script-Hub/main/Butif%20Hub"))()
| Скрипт позволяет устранить всех лиц, присутствующих в данный момент на сервере, и ее можно использовать повторно без каких-либо ограничений. |
loadstring(game:HttpGet('https://raw.githubusercontent.com/R3TH-PRIV/R3THPRIV/main/loader.lua'))()
| Функция Xray — это мощный инструмент, который позволяет игрокам видеть сквозь стены и другие твердые объекты в игре |
loadstring(game:HttpGet("https://raw.githubusercontent.com/LOLking123456/eggs/main/MM2"))()
| Многофункциональный скрипт |
loadstring(game:HttpGet(('https://paste.myconan.net/499233.txt')))()
| Многофункциональный скрипт который подходит не только для ММ2, но и для: Prision life, Сильнейшие поля боя и т.д. |
Скрипт на местоположение игроков
Player Esp — этот скрипт позволит вам видеть местоположение других игроков в игре. С помощью этой функции вы можете отслеживать перемещения других игроков и оставаться на шаг впереди конкурентов.
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local LP = Players.LocalPlayer
local roles
-- > Functions <-- function CreateHighlight() -- make any new highlights for new players for i, v in pairs(Players:GetChildren()) do if v ~= LP and v.Character and not v.Character:FindFirstChild("Highlight") then Instance.new("Highlight", v.Character) end end end function UpdateHighlights() -- Get Current Role Colors (messy) for _, v in pairs(Players:GetChildren()) do if v ~= LP and v.Character and v.Character:FindFirstChild("Highlight") then Highlight = v.Character:FindFirstChild("Highlight") if v.Name == Sheriff and IsAlive(v) then Highlight.FillColor = Color3.fromRGB(0, 0, 225) elseif v.Name == Murder and IsAlive(v) then Highlight.FillColor = Color3.fromRGB(225, 0, 0) elseif v.Name == Hero and IsAlive(v) and not IsAlive(game.Players[Sheriff]) then Highlight.FillColor = Color3.fromRGB(255, 250, 0) else Highlight.FillColor = Color3.fromRGB(0, 225, 0) end end end end function IsAlive(Player) -- Simple sexy function 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 -- > Loops < --
RunService.RenderStepped:connect(function()
roles = 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)