Tanjiro-Kamado

??SECRET㊙️?️ Murder Mystery 3| Simple GUI

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