Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function findmurderer() --Find who the murderer is
- for i, v in pairs(game:GetService("Players"):GetChildren()) do
- if v ~= game:GetService("Players").LocalPlayer then
- for i,v in pairs(v.Backpack:GetChildren()) do --Checks backpack for knife
- if v.Name == "Knife" then
- warn(v.Parent.Parent.Name.. " is the murderer.")
- end
- end
- end
- end
- end
- function finddie() --Find who the murderer is
- for i, v in pairs(game:GetService("Players"):GetChildren()) do
- if v ~= workspace.Josemmoya then
- for i,v in pairs(v:GetChildren()) do --Checks backpack for knife
- if v.Name == "Knife" then
- warn(v.Parent.Name.. " is the murderer.")
- end
- end
- end
- end
- end
- finddie()
- findmurderer()
Add Comment
Please, Sign In to add comment