Advertisement
asdasdaaa11

epic game

Feb 16th, 2021 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. local player = game.Workspace.x_w8
  2. local backpack = game:GetService("Players"):FindFirstChild(player.Name).Backpack
  3.  
  4. local Tool = Instance.new("Tool",backpack)
  5.  
  6. Tool.GripForward = Vector3.new(1, 0, 0)
  7. Tool.GripPos = Vector3.new(0, 0, 0)
  8. Tool.GripRight = Vector3.new(0, -1, 0)
  9. Tool.GripUp = Vector3.new(0, 0, 1)
  10. Tool.Name = "wassup"
  11. Tool.RequiresHandle = true
  12.  
  13. local handle = Instance.new("Part",Tool)
  14.  
  15. handle.Orientation = Vector3.new(0, 180, -90)
  16. handle.Size = Vector3.new(1, 1, 1)
  17. handle.Name = "Handle"
  18. handle.Transparency = 1
  19.  
  20. enabled = true
  21. death = false
  22.  
  23. function onActivated()
  24.  
  25. if enabled == false then
  26. return
  27. end
  28.  
  29. enabled = false
  30.  
  31. local cut = Instance.new("Sound",player.HumanoidRootPart)
  32. cut.SoundId = "rbxassetid://5652336887"
  33. cut.Playing = true
  34.  
  35. player.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,0.5) * CFrame.Angles(0,1.57,0)
  36. wait(0.9)
  37. death = true
  38. player.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,-1) * CFrame.Angles(0,1.57,0)
  39. wait(0.1)
  40. player.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,-0) * CFrame.Angles(0,1.57,0)
  41. wait(0.5)
  42. player.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,-0) * CFrame.Angles(0,1.57,0)
  43. wait(0.3)
  44.  
  45. enabled = true
  46. death = false
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. end
  54.  
  55. function dmg(hit)
  56. if hit.Parent ~= nil then
  57. local hum = hit.Parent:FindFirstChildOfClass("Humanoid")
  58. if hum ~= nil and hum.PlatformStand == false and death == true then
  59. if hum.Parent.Name == player.Name then
  60. return
  61. else
  62. if hum.Health>0 then
  63. local ff = Instance.new("Sound",hit.Parent:FindFirstChild("HumanoidRootPart"))
  64. ff.SoundId = "rbxassetid://5652837467"
  65. ff.TimePosition = 3.5
  66. ff.Volume = 2.5
  67. ff.EmitterSize = 15
  68. ff.Playing = true
  69. local gg = Instance.new("Sound",hit.Parent:FindFirstChild("HumanoidRootPart"))
  70. gg.SoundId = "rbxassetid://5624656949"
  71. gg.TimePosition = 0.1
  72. gg.Volume = 2
  73. gg.EmitterSize = 15
  74. hit.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = true
  75. local ae=Instance.new("BodyVelocity",hit.Parent:FindFirstChild("HumanoidRootPart"))
  76. ae.Velocity = player.HumanoidRootPart.CFrame.LookVector*1000
  77. ae.Velocity = Vector3.new(ae.Velocity.X,ae.Velocity.Y + 100, ae.Velocity.Z)
  78. wait(0.3)
  79. ae:Destroy()
  80. wait(0.7)
  81. gg.Playing = true
  82. local bb=Instance.new("Explosion",hit.Parent.HumanoidRootPart)
  83. bb.Position=hit.Parent.HumanoidRootPart.Position
  84. bb.BlastPressure = 10000
  85. bb.BlastRadius = 10
  86. hit.Parent:FindFirstChildOfClass("Humanoid").Health = 0
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93. end
  94. end
  95. end
  96. end
  97.  
  98.  
  99.  
  100.  
  101.  
  102. end
  103.  
  104.  
  105. Tool.Activated:connect(onActivated)
  106. Tool.Handle.Touched:connect(dmg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement