Advertisement
nmnnmnn

bhhhggggggggggggggggggggggg

Nov 28th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.95 KB | None | 0 0
  1. -- Local Script -- By Dominical -- Immortality V 3.9 beta -- Script Builder --
  2.  
  3. -- SPECIAL ATTACKS AND TOOLS:
  4. -- PRESS E TO THROW SHADOW FIRE
  5. -- USE DELETE TOOL TO DELETE PARTS SUCH AS PLAYER BODY PARTS, BASEPLATES, ANYTHING!
  6. -- USE KILL PLAYER TO CLICK ON A PLAYER AND KILL THEM (WORKS ON ANYTHING WITH HUMANOID)
  7. -- USE KICK PLAYER BY EQUIPPING THEN SAYING THE PLAYER'S NAME WHILE EQUIPPED.
  8. -- USE MAKE KILLBRICK TO MAKE A CUBE THAT KILLS PEOPLE EXCEPT YOU WHEN IT'S TOUCHED
  9. -- USE REVERT COLORS TOOL TO CHANGE BODY COLORS BACK TO BLACK
  10. -- USE BLACKOUT TO MAKE IT DARK AND MAKE YOU ALMOST INVISIBLE
  11. -- USE METEOR TOOL TO MAKE METEORS FALL DOWN AND KILL YOUR ENEMIES BYPASSING FORCEFIELD AND GOD MODE >:D
  12. ---------
  13.  
  14. -- All you need to do is go to the first line where it says player=game.Players.Player1 and replace the name
  15.  
  16. player = game.Players.DeathOfKatana1 -- replace Player1 with your name (That's all you have to do, now run this script as a local script)
  17. owner=player.Name
  18. character=player.Character
  19. mouse=player:GetMouse()
  20. speed=300--speed of fireball (try to make it bigger than 300 if you're going to change it for the good, if you're just doing whatever you can change it to anything :P)
  21. soundid="154324879"
  22. timeUntilDisappear=10--seconds
  23. dominusRetexture="114455897" -- must be vespertillo retexture
  24.  
  25.  
  26.  
  27.  
  28. mouse.KeyDown:connect(function(key)
  29. if string.byte(key)==101 then -- asks game if the key is e
  30.  
  31. local fireball=Instance.new("Part")
  32. local light=Instance.new("PointLight")
  33. local flySound=Instance.new("Sound")
  34. light.Parent=fireball
  35. light.Color=Color3.new(0,0,0)
  36. -- FIRE PROPERTIES --
  37. fireball.Parent=workspace
  38. fireball.CFrame=CFrame.new(character.Head.Position.X,character.Head.Position.Y+1,character.Head.Position.Z)
  39. fireball.TopSurface='Smooth'
  40. fireball.BottomSurface="Smooth"
  41. fireball.Name="Fireball"
  42. fireball.Shape="Ball"
  43. fireball.CanCollide=false
  44. fireball.Transparency=0.5
  45. fireball.BrickColor=BrickColor.new("Really black")
  46. fireball.FormFactor="Symmetric"
  47. fireball.Size=Vector3.new(4,4,4)
  48. fireball.Velocity=mouse.Hit.lookVector*speed
  49. flySound.Parent=fireball
  50. flySound.SoundId="http://www.roblox.com/asset?id="..soundid
  51. flySound:Play()--plays sound. If you don't want a sound then delete this line
  52. local effect=Instance.new("Fire")
  53. effect.Color=Color3.new(0,0,0)
  54. effect.SecondaryColor=Color3.new(0,0,0.1)
  55. effect.Parent=fireball
  56.  
  57. fireball.Touched:connect(function(hit)
  58. if hit.Parent:findFirstChild("Humanoid") and hit.Parent.Name~=owner then
  59.  
  60. for i,v in pairs(hit.Parent:GetChildren()) do
  61. if v.ClassName=="Part" then
  62. effect:Clone().Parent=v
  63.  
  64. end
  65. end
  66.  
  67. hit.Parent:BreakJoints()
  68. fireball:remove()
  69. end
  70.  
  71. wait(timeUntilDisappear)
  72.  
  73. fireball:remove()
  74.  
  75. end)
  76. end
  77. end)
  78.  
  79.  
  80. Instance.new("ForceField",character) -- ForceField
  81. character.Humanoid.WalkSpeed=100 -- speed
  82. character.Humanoid.MaxHealth=math.huge
  83. character.Humanoid.Health=character.Humanoid.MaxHealth
  84. for i,v in pairs(character:GetChildren()) do
  85. if v.ClassName=="Hat" then
  86. v:remove()
  87. end
  88. end
  89.  
  90. local dominus = game:GetService("InsertService"):LoadAsset(96103379):GetChildren()[1] -- change 96103379 to the hat you want (if you're changing)
  91. dominus.Handle.Mesh.TextureId="http://www.roblox.com/asset?id="..dominusRetexture
  92. dominus.Handle.Transparency=0.5
  93. dominus.Parent=character
  94.  
  95. for _,part in pairs(character:GetChildren()) do
  96. if part.ClassName=='Part' then
  97. part.BrickColor=BrickColor.new("Really black")
  98. part.Transparency=0.5
  99. elseif part.ClassName=="Shirt"then
  100. part:remove()
  101.  
  102. elseif part.ClassName=="Pants" then
  103. part:remove()
  104. elseif part.ClassName=="ShirtGraphic" then
  105. part:remove()
  106. end
  107. end
  108.  
  109. if character.Torso:findFirstChild("roblox") then
  110. character.Torso.roblox:remove()
  111. end
  112.  
  113. if character.Head:findFirstChild("face") then
  114. character.Head.face:remove()
  115. end
  116.  
  117. if character:findFirstChild("Head") then
  118. character.Head.Transparency=1
  119. end
  120.  
  121.  
  122. function onButton1Down_1(mouse)
  123. local target=mouse.Target
  124. if target.Parent:findFirstChild("Humanoid") then
  125. target.Parent:BreakJoints()
  126. end
  127. end
  128.  
  129.  
  130. local kill_tool=Instance.new("HopperBin")
  131. kill_tool.Parent=player.Backpack
  132. kill_tool.Name='Kill Player'
  133. kill_tool.Selected:connect(function(mouse)
  134. mouse.Button1Down:connect(function() onButton1Down_1(mouse) end)
  135. end)
  136.  
  137.  
  138. function onButton1Down_2(mouse)
  139. local target=mouse.Target
  140. if target.Parent~=character then
  141. target:remove()
  142. end
  143. end
  144.  
  145. local delete_tool=Instance.new("HopperBin")
  146. delete_tool.Parent=player.Backpack
  147. delete_tool.Name="Delete Part"
  148.  
  149. delete_tool.Selected:connect(function(mouse)
  150. mouse.Button1Down:connect(function() onButton1Down_2(mouse) end )
  151. end)
  152.  
  153.  
  154. function onButton1Down_3(mouse)
  155. local target=mouse.Target
  156. if game.Players:GetPlayerFromCharacter(target.Parent) then
  157. game.Players:GetPlayerFromCharacter(target.Parent):Kick()
  158. end
  159. end
  160.  
  161. local kick_tool=Instance.new("HopperBin")
  162. kick_tool.Parent=player.Backpack
  163. kick_tool.Name="Kick Player"
  164.  
  165. kick_tool.Selected:connect(function()
  166. player.Chatted:connect(function(msg)
  167.  
  168. for i,v in pairs(game.Players:GetChildren()) do
  169. if string.find(msg, v.Name) then
  170. v:Kick()
  171. end
  172.  
  173. end
  174. end)
  175. end)
  176. function onButton1Down_4(mouse)
  177. local brick=Instance.new("Part")
  178.  
  179. -- KILL BRICK PROPERTIES --
  180. brick.Parent=workspace
  181. brick.FormFactor="Symmetric"
  182. brick.Anchored=true
  183. brick.TopSurface='Smooth'
  184. brick.BottomSurface='Smooth'
  185. brick.Size=Vector3.new(5,5,5)
  186. brick.CFrame=CFrame.new(mouse.Hit.p) * CFrame.Angles(2,2,2)
  187. brick.Transparency=0.2
  188. brick.BrickColor=BrickColor.new("Really black")
  189. brick.Material='SmoothPlastic'
  190. brick.Locked=true -- to keep from delete tools or something like that
  191.  
  192. brick.Touched:connect(function(hit)
  193. if hit.Parent.Name~=owner and hit.Parent:findFirstChild("Humanoid") then
  194. hit.Parent:BreakJoints()
  195. end
  196. end)
  197.  
  198. end
  199.  
  200. local killbrick_tool=Instance.new("HopperBin")
  201. killbrick_tool.Parent=player.Backpack
  202. killbrick_tool.Name="Create KillBrick"
  203. killbrick_tool.Selected:connect(function(mouse)
  204. mouse.Button1Down:connect(function() onButton1Down_4(mouse) end)
  205. end)
  206.  
  207. local revert_color_tool = Instance.new("HopperBin")
  208. revert_color_tool.Parent=player.Backpack
  209. revert_color_tool.Name="Change colors to default"
  210. revert_color_tool.Selected:connect(function()
  211. for i,v in pairs(character:GetChildren()) do
  212. if v.ClassName=='Part' then
  213. v.BrickColor=BrickColor.new("Really black")
  214. end
  215. end
  216. end)
  217.  
  218.  
  219.  
  220. local dark_tool=Instance.new("HopperBin")
  221. dark_tool.Parent=player.Backpack
  222. dark_tool.Name='Black Out'
  223. dark_tool.Selected:connect(function(mouse)
  224. local sound=Instance.new("Sound")
  225. sound.Parent=workspace
  226. sound.SoundId="http://www.roblox.com/asset?id=147722227"
  227. sound:Play()
  228. game.Lighting.TimeOfDay="20:00"
  229. game.Lighting.GlobalShadows=false
  230. character.ForceField:remove()
  231. wait(2)
  232. sound:Stop()
  233. sound:remove()
  234. end)
  235. dark_tool.Deselected:connect(function()
  236. game.Lighting.TimeOfDay="14:00"
  237. Instance.new("ForceField",character)
  238. game.Lighting.GlobalShadows=true
  239. end)
  240.  
  241. function meteor1(mouse)
  242. studs_high=100-- amount of studs higher than where clicked when spawned meteor
  243.  
  244. local meteor=Instance.new("Part")
  245. meteor.Shape='Ball'
  246. meteor.FormFactor='Symmetric'
  247. meteor.TopSurface='Smooth'
  248. meteor.BottomSurface='Smooth'
  249. meteor.Parent=workspace
  250. meteor.Name='Meteor'
  251. meteor.Size=Vector3.new(9,9,9)
  252. meteor.CFrame=CFrame.new(mouse.Hit.p.X,mouse.Hit.p.Y+studs_high,mouse.Hit.p.Z)
  253. local mesh=Instance.new("SpecialMesh")
  254. mesh.MeshType="FileMesh"
  255. mesh.MeshId="http://www.roblox.com/asset/?id=1290033"
  256. mesh.Scale=Vector3.new(4,4,4)
  257. mesh.TextureId="http://www.roblox.com/asset/?id=12400383"
  258. mesh.VertexColor=Vector3.new(2, 0.5, 0)
  259. mesh.Parent=meteor
  260. local fire=Instance.new("Fire")
  261. fire.Parent=meteor
  262. fire.Size=25
  263.  
  264. meteor.Touched:connect(function(hit)
  265. if hit.Parent:findFirstChild("Humanoid") and hit.Parent.Name~=owner then
  266. hit.Parent:BreakJoints()
  267. end
  268. end)
  269.  
  270. wait(15)
  271. meteor:remove()
  272. end
  273.  
  274. local meteor_tool=Instance.new("HopperBin")
  275. meteor_tool.Parent=player.Backpack
  276. meteor_tool.Name="Meteor"
  277. meteor_tool.Selected:connect(function(mouse)
  278. mouse.Button1Down:connect(function() meteor1(mouse) end)
  279. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement