Advertisement
Guest User

ULTIME DEATH GOD SCRIPT

a guest
Nov 23rd, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. --[[
  2. ::::::::::::::::::::::::::
  3. ::::::::::::::::::::::::::
  4. ::::::::::::::::::::::::::
  5. :::::: Death Script ::::::
  6. :::: By MLGnoob4Life :::::
  7. ::::::::::::::::::::::::::
  8. ::::::::::::::::::::::::::
  9. ::::::::::::::::::::::::::
  10. --]]
  11.  
  12. --vars
  13. player = game:GetService("Players").LocalPlayer
  14. mouse = player:GetMouse()
  15.  
  16. --main
  17.  
  18. sound = Instance.new("Sound", workspace)
  19. sound.Name = "Introduction"
  20. sound.SoundId = "rbxassetid://200514784"
  21. sound:Play()
  22.  
  23. b = Instance.new("Tool", player.Backpack)
  24. b.Name = "Death Touch"
  25. h = Instance.new("Part", b)
  26. h.Name = "Handle"
  27. h.Size = Vector3.new(1,1,1)
  28. h.Transparency = "1"
  29.  
  30. player.Character.Humanoid.WalkSpeed = 100
  31.  
  32. h.Touched:connect(function(p)
  33. p.Parent.Humanoid:TakeDamage(1000000000000)
  34. end)
  35.  
  36. --effects
  37.  
  38. f = Instance.new("Fire", player.Character.Torso)
  39. f.Size = "15"
  40. f.Color = Color3.new(0,0,0)
  41.  
  42. mouse.KeyDown:connect(function(key)
  43. key=key:lower()
  44. if key == "f" then
  45. x = Instance.new("Part")
  46. x.Shape = "Ball"
  47. x.BrickColor = BrickColor.new("Maroon")
  48. x.Transparency = 0.5
  49. x.TopSurface = "Smooth"
  50. x.BottomSurface = "Smooth"
  51. x.CanCollide = false
  52. x.Anchored = false
  53. x.Material = "Neon"
  54. x.CFrame = player.Character.Torso.CFrame * CFrame.new(0,3,-5)
  55. local v = Instance.new("BodyVelocity", x)
  56. v.velocity = player.Character.Torso.CFrame.lookVector * 90
  57. v.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  58. x.Parent = workspace
  59. x.Touched:connect(function(h)
  60. h.Parent.Humanoid:TakeDamage(1000000000000)
  61. end)
  62. s = Instance.new("Sound", workspace)
  63. s.Name = "die"
  64. s.SoundId = "rbxassetid://506001681"
  65. s:Play()
  66. wait(1.2)
  67. s:Stop()
  68. wait(2)
  69. x:Destroy()
  70. end
  71. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement