Advertisement
Pl3X

Stop it Slender 2 oP

Mar 25th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. drop alot of heads
  2.  
  3. Code:
  4. --// Vars
  5. local WS = game:GetService("Workspace")
  6. local PS = game:GetService("Players")
  7. local Event = WS.Remotes.MoveClone
  8.  
  9. for i = 1, 100 do
  10. Event:FireServer(PS.LocalPlayer.Character.Head, workspace)
  11. end
  12.  
  13.  
  14.  
  15.  
  16. unlock all gamepasses
  17.  
  18. Code:
  19. --// Vars
  20. local PS = game:GetService("Players")
  21. local WS = game:GetService("Workspace")
  22. local Passes = PS.LocalPlayer:WaitForChild("passes")
  23. local Event = WS.Remotes.ChangeValue
  24.  
  25. for _,v in pairs (Passes:GetChildren()) do
  26. if v.Value == false then
  27. Event:FireServer(v, true)
  28. end
  29. end
  30.  
  31.  
  32.  
  33.  
  34.  
  35. give everyone free gamepasses
  36.  
  37. Code:
  38. --// Vars
  39. local PS = game:GetService("Players")
  40. local WS = game:GetService("Workspace")
  41. local Event = WS.Remotes.ChangeValue
  42.  
  43. for _,v in pairs (PS:GetPlayers()) do
  44. local Passes = v:WaitForChild("passes")
  45. for _,v in pairs (Passes:GetChildren()) do
  46. if v.Value == false then
  47. Event:FireServer(v, true)
  48. end
  49. end
  50. end
  51.  
  52.  
  53.  
  54.  
  55. start all generators in-game
  56.  
  57. Code:
  58. --// Vars
  59. local WS = game:GetService("Workspace")
  60. local Event = WS.Remotes.GenStart
  61.  
  62. local Map = WS:WaitForChild("MAP")
  63. local Generators = Map:WaitForChild("GENS")
  64. for _,v in pairs (Generators:GetChildren()) do
  65. Event:FireServer(v, true)
  66. end
  67.  
  68.  
  69.  
  70.  
  71. spam all proxies abilities to all players
  72.  
  73. Code:
  74. --// Vars
  75. local PS = game:GetService("Players")
  76. local WS = game:GetService("Workspace")
  77. local Event = WS.Remotes.ProxyAbil
  78. for _,v in pairs (PS:GetPlayers()) do
  79. if v.Name ~= PS.LocalPlayer.Name then
  80. Event:FireServer("shock", v)
  81. Event:FireServer("flash", v)
  82. Event:FireServer("slender", v)
  83. end
  84. end
  85.  
  86.  
  87.  
  88.  
  89. get all pages in-game
  90.  
  91. Code:
  92. --// Vars
  93. local WS = game:GetService("Workspace")
  94. local PS = game:GetService("Players")
  95. local Map = WS:WaitForChild("MAP")
  96. local Pages = Map:WaitForChild("Pages")
  97. local Event = WS.Remotes.PCollect
  98. local CharacterHum = PS.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  99.  
  100. for _,v in pairs (Pages:GetChildren()) do
  101. if v:IsA("Part") and v.Transparency == 0 then
  102. repeat wait() CharacterHum.CFrame = CFrame.new(v.Position) Event:FireServer(v) until v.Transparency == 1
  103. end
  104. end
  105.  
  106.  
  107.  
  108.  
  109. force end the current game
  110.  
  111. Code:
  112. --// Vars
  113. local WS = game:GetService("Workspace")
  114. local GameValues = WS:WaitForChild("GameValues")
  115. local A_1 = GameValues.SlenderGone
  116. local A_2 = true
  117. local Event = game:GetService("Workspace").Remotes.ChangeValue
  118. Event:FireServer(A_1, A_2)
  119.  
  120.  
  121.  
  122.  
  123. crash server
  124.  
  125. Code:
  126. --// Vars
  127. local WS = game:GetService("Workspace")
  128.  
  129. for _,v in pairs (WS:GetDescendants()) do
  130. if v:IsA("NumberValue") then
  131. local A_1 = v
  132. local A_2 = 99999e9
  133. local Event = game:GetService("Workspace").Remotes.ChangeValue
  134. Event:FireServer(A_1, A_2)
  135. end
  136. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement