Advertisement
trolman5678

admin

Jan 30th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 KB | None | 0 0
  1. --[[
  2. Made By FinestDerp
  3. Edited By tonyhawk63739
  4. Unfortunatly you have to type out the usernames fully
  5. and with everything capitalized :/
  6. [--Commands:--]
  7. -ls <- executes localscripts from chat
  8. -kill <- kills specified player
  9. -kick <- kicks specified player
  10. -ff <- gives forcefield to specified player
  11. -unff <- takes forcefield from specified player
  12. -ws <- YOU ONLY changes walkspeed of localplayer
  13. -jh <- YOU ONLY changes jumpheight of localplayer
  14. -god <- makes specified player unkillable
  15. -ungod <- makes specified player killable
  16. -sgod <- makes player silent god
  17. -pepe <- gives pepe particles to all players in game
  18. -aparticle <- puts YOUR IMAGE particles on all parts in workspace
  19. -particle <- gives YOUR IMAGE particles to all players in game
  20. -nigel <- gives nigel particles to all players in game
  21. -trump <- gives trump particles to all players in game
  22. -anon <- gives anonymous particles to all players in game
  23. -face <- changes YOUR face to selected IMAGE
  24. --]]
  25.  
  26. game.Players.LocalPlayer.Chatted:connect(function(msgg)
  27.  
  28. local msg = msgg
  29. if msg:sub(1,3) == "/e " then
  30. msg = msg:sub(4)
  31. end
  32.  
  33. if msg:sub(1,4):lower() == "-ls " then
  34. loadstring(msg:sub(5))()
  35. end
  36.  
  37. if msg:sub(1,6):lower() == "-kill " then
  38. game.Workspace[""..msg:sub(7)]:BreakJoints()
  39. end
  40.  
  41. if msg:sub(1,6):lower() == "-kick " then
  42. game.Workspace[""..msg:sub(7)]:Remove()
  43. end
  44.  
  45. if msg:sub(1,4):lower() == "-ff " then
  46. Instance.new("ForceField", game.Workspace[""..msg:sub(5)])
  47. end
  48.  
  49. if msg:sub(1,6):lower() == "-unff " then
  50. game.Workspace[""..msg:sub(7)].ForceField:Remove()
  51. end
  52.  
  53. if msg:sub(1,4):lower() == "-ws " then
  54. game.Workspace[""..game.Players.LocalPlayer.Name].Humanoid.WalkSpeed = ""..msg:sub(5)
  55. end
  56.  
  57. if msg:sub(1,4):lower() == "-jh " then
  58. game.Workspace[""..game.Players.LocalPlayer.Name].Humanoid.JumpPower = ""..msg:sub(5)
  59. end
  60.  
  61. if msg:sub(1,5):lower() == "-god " then
  62. game.Workspace[""..msg:sub(6)].Humanoid.MaxHealth = math.huge
  63. end
  64.  
  65. if msg:sub(1,6):lower() == "-sgod " then
  66. game.Workspace[""..msg:sub(7)].Humanoid.MaxHealth = 1000000
  67. game.Workspace[""..msg:sub(7)].Humanoid.Health = 1000000
  68. end
  69.  
  70. if msg:sub(1,7):lower() == "-ungod " then
  71. game.Workspace[""..msg:sub(8)].Humanoid.MaxHealth = 100
  72. end
  73.  
  74. if msg:sub(1,6):lower() == "-pepe" then
  75. for i, v in pairs(game.Players:GetChildren()) do
  76. emit = Instance.new("ParticleEmitter")
  77. emit.Parent = v.Character.Torso
  78. emit.Texture = "http://www.roblox.com/asset/?id=292916914"
  79. emit.VelocitySpread = 20
  80. end
  81. end
  82.  
  83. if msg:sub(1,11):lower() == "-aparticle " then
  84. for Get,Workspace in ipairs(game.Workspace:GetChildren()) do
  85. ParticleEmitter = Instance.new("ParticleEmitter");
  86. ParticleEmitter.Texture = ("http://www.roblox.com/asset/?id="..msg:sub(12));
  87. ParticleEmitter.Parent = Workspace;
  88. ParticleEmitter.VelocitySpread = 20
  89. end
  90. end
  91.  
  92. if msg:sub(1,6):lower() =="-nigel" then
  93. for i, v in pairs(game.Players:GetChildren()) do
  94. emit = Instance.new("ParticleEmitter")
  95. emit.Parent = v.Character.Torso
  96. emit.Texture = "http://www.roblox.com/asset/?id=221865345"
  97. emit.VelocitySpread = 20
  98. end
  99. end
  100.  
  101. if msg:sub(1,6):lower() =="-trump" then
  102. for i, v in pairs(game.Players:GetChildren()) do
  103. emit = Instance.new("ParticleEmitter")
  104. emit.Parent = v.Character.Torso
  105. emit.Texture = "http://www.roblox.com/asset/?id=343377229"
  106. emit.VelocitySpread = 20
  107. end
  108. end
  109.  
  110. if msg:sub(1,6):lower() =="-anon" then
  111. for i, v in pairs(game.Players:GetChildren()) do
  112. emittion = Instance.new("ParticleEmitter")
  113. emittion.Parent = v.Character.Torso
  114. emittion.Texture = "http://www.roblox.com/asset?id=127476787"
  115. emittion.VelocitySpread = 20
  116. end
  117. end
  118.  
  119. if msg:sub(1,10):lower() =="-particle " then
  120. for i, v in pairs(game.Players:GetChildren()) do
  121. emittion = Instance.new("ParticleEmitter")
  122. emittion.Parent = v.Character.Torso
  123. emittion.Texture = "http://www.roblox.com/asset?id="..msg:sub(11)
  124. emittion.VelocitySpread = 20
  125. end
  126. end
  127.  
  128. if msg:sub(1,6):lower() =="-face " then
  129. game.Workspace[""..game.Players.LocalPlayer.Name].Head.face.Texture = "http://www.roblox.com/asset/?id="..msg:sub(7)
  130. end
  131.  
  132. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement