Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.11 KB | None | 0 0
  1. -- Admin script for exploiters, made by carcj5!
  2. -- Scroll down to the bottom for instructions!
  3. wait(0.5)
  4. local Admin = game.Players.LocalPlayer
  5. local victim = game.Workspace.NAME -- Change "NAME" to the name of your victim!
  6. -----------------------------------------------------------------------------------------------------------
  7. local kill = false
  8. local punish = false
  9. local god = false
  10. local destroybaseplate = false
  11. local invisible = false
  12. local destroygame = false
  13. local speedchange = false -- This is the control panel!
  14. local speed = 16
  15. local jumpchange = false
  16. local jump = 16
  17. local newteam = false
  18. local message = false -- Go to line 93 to change the text.
  19. local loopkill = false -- Change "NAME" on line 106 for this to work!
  20. local kick = false -- You need to change the NAME at line 106!
  21. local freeze = false
  22. local thaw = false
  23. local particles = false
  24. ---------------------------------------------------------------------------------------------------------
  25. -- I suggest you don't mess with this box, except for if it tells you to up there ^.
  26. if victim.Parent == workspace and kill == true then
  27. wait(0.1)
  28. victim.Head:Remove()
  29. end
  30.  
  31. if victim.Parent == workspace and punish == true then
  32. wait(0.1)
  33. victim:Remove()
  34. end
  35.  
  36.  
  37. if victim.Parent == workspace and god == true then
  38. wait(0.1)
  39. victim.Humanoid.Health = 1
  40. wait(0.5)
  41. victim.Humanoid.Health = math.floor(100*99)
  42. end
  43.  
  44. if victim.Parent == workspace and destroybaseplate == true then
  45. game.Workspace.Baseplate:Destroy()
  46. end
  47.  
  48. if victim.Parent == workspace and invisible == true then
  49. victim.Torso.Transparency = 1
  50. victim["Left Leg"].Transparency = 1
  51. victim["Right Leg"].Transparency = 1
  52. victim["Right Arm"].Transparency = 1
  53. victim["Left Arm"].Transparency = 1
  54. victim.Head.Transparency = 1
  55.  
  56. end
  57.  
  58. if victim.Parent == workspace and destroygame == true then
  59. game.Workspace:ClearAllChildren()
  60. game.Lighting:ClearAllChildren()
  61. game.ReplicatedFirst:ClearAllChildren()
  62. game.ReplicatedStorage:ClearAllChildren()
  63. game.ServerScriptService:ClearAllChildren()
  64. game.ServerStorage:ClearAllChildren()
  65. game.StarterGui:ClearAllChildren()
  66. game.StarterPack:ClearAllChildren()
  67. game.StarterPlayer:ClearAllChildren()
  68. game.SoundService:ClearAllChildren()
  69. game.Chat:ClearAllChildren()
  70. game.LocalizationService:ClearAllChildren()
  71.  
  72. end
  73.  
  74. if speedchange == true then
  75. local plr = victim
  76. local char = plr
  77. char.Humanoid.WalkSpeed = speed
  78. end
  79.  
  80. if jumpchange == true then
  81. local plr = victim
  82. local char = plr
  83. char.Humanoid.JumpPower = jump
  84. end
  85.  
  86. if newteam == true then
  87. Instance.new("Team",game.Teams)
  88. end
  89.  
  90. if message == true then
  91. local msg = Instance.new("Message")
  92. msg.Parent = game.Workspace
  93. msg.Text = "An admin is here!"
  94. wait(5)
  95. msg:Destroy()
  96. end
  97.  
  98. if victim.Parent == workspace and loopkill == true then
  99. wait(0.5)
  100. local killing = true
  101. victim.Torso:Remove()
  102. wait(0.01)
  103. victim:Destroy()
  104. repeat
  105. wait(5.5)
  106. victim = game.Workspace.NAME
  107. wait(0.1)
  108. victim.Torso:Remove()
  109. until killing == false
  110. end
  111.  
  112. if kick == true then
  113. game.Players.NAME:Kick("Rekt")
  114. end
  115.  
  116. if freeze == true then
  117. victim.Humanoid.WalkSpeed = 0
  118. victim.Humanoid.JumpPower = 0
  119. end
  120.  
  121. if thaw == true then
  122. victim.Humanoid.WalkSpeed = 16
  123. victim.Humanoid.JumpPower = 16
  124.  
  125. end
  126.  
  127. if particles == true then
  128. Instance.new("ParticleEmitter",victim.HumanoidRootPart)
  129. end
  130. -----------------------------------------------------------------------------------------------------------
  131.  
  132. --[[ To use this, it's actually quite simple. First, you need to pick your victim and modify the "NAME"
  133. at the top. After that, you go to the box below the top and change the "false" to "true" for what
  134. you want to happen to your victim. For example, if I want to give myself speed, I'll change "NAME"
  135. to carcj5 (my user), change speedchange to true, and change speed to my number of speed. The script
  136. does the rest for you.
  137.  
  138. This is only the prototype for my admin, I'll be adding new commands, and hopefully making it more
  139. accessible.
  140.  
  141. Note: This script does require a full level 7 executor, I personally recommend Synapse.
  142.  
  143. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement