Advertisement
Scriptorz5

MM2 GUIS

May 28th, 2018
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. this one is coin grabber
  2.  
  3. For i,v in pairs(game.Workspace:GetChildren()) do
  4. local f = v:FindFirstChild("CoinContainer")
  5. local q = game.Players.LocalPlayer.Character:FindFirstChild("Torso")
  6. if q and f then
  7. for i,c in pairs(f:GetChildren()) do
  8. c.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame
  9. end
  10. end
  11. end
  12.  
  13. this one is tell u whos murder (he print u that means click F9 and wait to start the game and if u start the game click F9 it will tell u whos murder) thats awesome
  14.  
  15.  
  16. for i,v in pairs(game.Players:GetChildren()) do
  17. v.Backpack.ChildAdded:connect(function(child)
  18. if child.Name == "Knife" then
  19. print(v.Name)
  20. end
  21. end)
  22. end
  23.  
  24.  
  25. this one is tell u sherrif and murder if sherrif dies he say u did u want equip the gun
  26.  
  27. spawn(function()
  28. workspace.ChildAdded:connect(function(child)
  29. if child.Name == "GunDrop" then
  30. local cb = Instance.new("BindableFunction")
  31. cb.OnInvoke = function(arg)
  32. if arg == "Get gun!" then
  33. workspace.GunDrop.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Head.Position)
  34. end
  35. end
  36. game:GetService("StarterGui"):SetCore("SendNotification",{
  37. Title = "The sheriff has died!",
  38. Text = "Grab their gun?",
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement