FurkingBoi

Murder Mystery 3

Feb 3rd, 2020
3,603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/T5dD1LBr"))()
  2. local Main = Library:CreateTab("Murder Mystery 3","A GUI for murder mystery 3")
  3. local NoClip
  4.  
  5. game:GetService("RunService").Stepped:Connect(function()
  6. if NoClip == true then
  7. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(11)
  8. end
  9. end)
  10.  
  11. Main:CreateSection("Coins")
  12. Main:CreateButton("Teleport coins",function()
  13. for a,b in pairs(workspace:GetChildren()) do
  14. if b.Name == "Coin" then
  15. b.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
  16. end
  17. end
  18. end)
  19.  
  20. Main:CreateSection("Codes")
  21. Main:CreateButton("Redeem codes",function()
  22. for a,b in pairs(game:GetService("ReplicatedStorage").Codes:GetChildren()) do
  23. game:GetService("ReplicatedStorage").Interactions.Server.RedeemCode:InvokeServer(b.Name)
  24. end
  25. end)
  26.  
  27. Main:CreateSection("Character")
  28. Main:CreateCheckbox("NoClip",function(a)
  29. NoClip = a
  30. end)
  31.  
  32. Main:CreateSection("Teleports")
  33. Main:CreateButton("Coins",function()
  34. for a,b in pairs(workspace:GetChildren()) do
  35. if b.Name == "Coin" then
  36. game:GetService("Players").LocalPlayer.Character:MoveTo(b.Position)
  37. wait(0.25)
  38. end
  39. end
  40. end)
  41. Main:CreateButton("Murderer",function()
  42. for a,b in pairs(game:GetService("Players"):GetPlayers()) do
  43. for c,d in pairs(b.Backpack:GetDescendants()) do
  44. if d.Name == "Knife" then
  45. game:GetService("Players").LocalPlayer.Character:MoveTo(b.Character.HumanoidRootPart.Position+Vector3.new(0,0,2))
  46. end
  47. end
  48. for e,f in pairs(b.Character:GetDescendants()) do
  49. if f.Name == "Knife" then
  50. game:GetService("Players").LocalPlayer.Character:MoveTo(b.Character.HumanoidRootPart.Position+Vector3.new(0,0,2))
  51. end
  52. end
  53. end
  54. end)
  55. Main:CreateButton("Sheriff",function()
  56. for a,b in pairs(game:GetService("Players"):GetPlayers()) do
  57. for c,d in pairs(b.Backpack:GetDescendants()) do
  58. if d.Name == "Revolver" then
  59. game:GetService("Players").LocalPlayer.Character:MoveTo(b.Character.HumanoidRootPart.Position)
  60. end
  61. end
  62. for e,f in pairs(b.Character:GetDescendants()) do
  63. if f.Name == "Revolver" then
  64. game:GetService("Players").LocalPlayer.Character:MoveTo(b.Character.HumanoidRootPart.Position)
  65. end
  66. end
  67. end
  68. end)
  69.  
  70.  
  71. Main:CreateSection("Revolver")
  72. Main:CreateButton("Goto",function()
  73. game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Workspace").RevolverPickUp.Revolver.Position)
  74. end)
Add Comment
Please, Sign In to add comment