Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- This script is to know who murderer is and who sheriff is.
- Once you get into the game (except bonus round), execute this script once then open up console.
- Mobile: Type '/console' in chat
- PC: Click F9 key
- GameName: Murder Mystery X FREE RADIO & HUNTER 2
- GameLink: https://www.roblox.com/games/7525066054/Murder-Mystery-X-FREE-RADIO-HUNTER-2
- ]]--
- local function checkTool(toolName, role)
- for _, player in pairs(game.Players:GetPlayers()) do
- local tool = player.Backpack:FindFirstChild(toolName)
- if tool then
- print(player.Name .. " = " .. role)
- end
- end
- end
- local roles = {
- { toolName = "Knife", role = "MURDERER" },
- { toolName = "Revolver", role = "SHERIFF" }
- }
- print('<<__NEW MESSAGE_________________________________________>>')
- for _, roleInfo in pairs(roles) do
- checkTool(roleInfo.toolName, roleInfo.role)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement