Advertisement
Confluent

TM

Mar 1st, 2016
3,659
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. 100% Murderer Chance:
  2.  
  3. a=game.Players.LocalPlayer.Chance
  4. while true do
  5. wait()
  6. a.Value=a.Value+100
  7. end
  8.  
  9. Anti-Exploit Bypass:
  10.  
  11. antiKek={'AntiSpeedHack','AntiDataTheft','UI','NO FF','NO FF'}
  12.  
  13. while wait() do
  14. local Player = game.Players.LocalPlayer
  15. local Gui = Player.PlayerGui
  16. for i,v in pairs(antiKek) do
  17. if Gui:FindFirstChild(v) then
  18. Gui:FindFirstChild(v):Remove()
  19. end
  20. end
  21. end
  22.  
  23. Give Credits to 1 player:
  24.  
  25. plr=game.Players:FindFirstChild"NAMEOFPLAYER"
  26. plr.DATA.Credits.Value=plr.DATA.Credits.Value+HOWMUCHYOUWANTTOGIVE -- change + to a - if you want to remove credits instead of give
  27. plr.DATA.RealCredits.Value = plr.DATA.Credits.Value + 950000
  28.  
  29. Give credits to all players:
  30.  
  31. g=game.Players:GetChildren()
  32. for i=1,#g do
  33. g[i].DATA.Credits.Value=g[i].DATA.Credits.Value+HOWMUCHYOUWANTTOGIVE -- change the + to a - if you want to remove credits instead of give
  34. g[i].DATA.RealCredits.Value = g[i].DATA.Credits.Value + 950000
  35. end
  36.  
  37. item wiper:
  38.  
  39. Victim=game.Players:FindFirstChild"WHOSERANKYOUWANTTOCHANGE"
  40. Rank=game.Players:FindFirstChild"WHOSERANKTOCHANGEITTO"
  41.  
  42. Victim.DataString.RobloxLocked=true
  43. Rank.DataString.RobloxLocked=true
  44.  
  45. Victim.DataString.Value=Rank.DataString.Value
  46.  
  47. MVP Door:
  48.  
  49. Door = game.Workspace.Lobby.MVPDoor
  50. Door.Script:Remove()
  51. a=Door.SurfaceGui.Frame
  52. a.bt:Remove''
  53. a.TextLabel.Text = 'Door unlocked by '..game.Players.LocalPlayer.Name
  54. a.TextLabel.TextLabel.Text = 'Door unlocked by '..game.Players.LocalPlayer.Name
  55. for i,v in pairs(a.TextLabel.TextLabel:children'') do
  56. v.Text = 'MVP Door Unlocked'
  57. end
  58.  
  59. Sheriff/Innocent/Murderer Reveal:
  60.  
  61. while wait(0.1) do
  62. local dir = game.CoreGui.RobloxGui.PlayerListContainer.ScrollList
  63. for i,v in pairs(dir:GetChildren()) do
  64. if game.Workspace:findFirstChild(v.Name) then
  65. local role = game.Players[v.Name].Character:findFirstChild("Role")
  66. if role then
  67. if role.Value == "Sheriff" then
  68. v.BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  69. elseif role.Value == "Murderer" then
  70. v.BGFrame.PlayerName.TextColor3 = Color3.new(1, 0, 0)
  71. else
  72. v.BGFrame.PlayerName.TextColor3 = Color3.new(0, 1, 0)
  73. end
  74. end
  75. end
  76. end
  77. for i,v in pairs(game.Players:GetChildren()) do
  78. v.CharacterAdded:connect(function()
  79. v.Character.Role.Value = "Innocent"
  80. end)
  81. end
  82. end
  83.  
  84. Unlock all items:
  85.  
  86. local TwistedMurderer = {}
  87. for i, v in pairs(game.ReplicatedStorage.Shop:GetChildren()) do
  88. for i, t in pairs(v:GetChildren()) do
  89. t:Clone().Parent = game.Players.LocalPlayer.DATA.Backpack
  90. end
  91. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement