Advertisement
Finnegan5

bills 3

Aug 21st, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.69 KB | None | 0 0
  1. local s = Instance.new("Sound",char)
  2. s.Name = "BGMusic"
  3. s.SoundId = "http://www.roblox.com/asset/?id=624806395"
  4. s.Pitch = 1
  5. s.Volume = 5
  6. s.Looped = true
  7. s.archivable = false
  8. s.Parent = game.Workspace
  9. wait(0.1)
  10. s:play()
  11.  
  12. script.Parent = workspace.CurrentCamera
  13. local plr = game:GetService("Players").LocalPlayer
  14.  
  15. local Handle = Instance.new("Part")
  16.  
  17. local Mesh = Instance.new('SpecialMesh')
  18.  
  19. local Death = Instance.new("Tool")
  20.  
  21. Death.Name = "Book"
  22.  
  23. Handle.Name = "Handle"
  24.  
  25. Death.Parent = game.Players.LocalPlayer.Backpack
  26.  
  27. Death.GripForward = Vector3.new(0.331, -0.766, 0.551)
  28.  
  29. Death.GripPos = Vector3.new(-0.8, 0, -0.8)
  30.  
  31. Death.GripRight = Vector3.new(-0.943, -0.297, 0.152)
  32.  
  33. Death.GripUp = Vector3.new(-0.048, 0.57, 0.82)
  34.  
  35. Death.ToolTip = "e.e"
  36.  
  37. Handle.Parent = Death
  38.  
  39. Mesh.Parent = Handle
  40.  
  41. Mesh.MeshId = "http://www.roblox.com/asset/?id=1136139"
  42.  
  43. Mesh.TextureId = "http://www.roblox.com/asset/?id=18276952"
  44.  
  45. Mesh.Scale = Vector3.new(0.55, 0.174, 0.6)
  46.  
  47. Handle.Rotation = Vector3.new(0,-90,0)
  48.  
  49. local sound = Instance.new("Sound",part)
  50. sound.SoundId = "rbxassetid://146163534"
  51. sound.Volume = 3
  52.  
  53. local sound2 = Instance.new("Sound",part)
  54. sound2.SoundId = "rbxassetid://536642316"
  55. sound2.Volume = 5
  56.  
  57. local sound3 = Instance.new("Sound",part)
  58. sound3.SoundId = "rbxassetid://130861542"
  59. sound3.Volume = 10
  60.  
  61. local sound4 = Instance.new("Sound",part)
  62. sound4.SoundId = "rbxassetid://141679994"
  63. sound4.Volume = 10
  64.  
  65. local sound5 = Instance.new("Sound",part)
  66. sound5.SoundId = "rbxassetid://500243174"
  67. sound5.Volume = 10
  68.  
  69. local sound6 = Instance.new("Sound",part)
  70. sound6.SoundId = "rbxassetid://365308603"
  71. sound6.Volume = 10
  72. sound6.TimePosition = 2
  73.  
  74. function firstHum(target)
  75. for i,v in pairs(target:GetChildren()) do
  76. if v:IsA("Humanoid") then
  77. return v
  78. end
  79. end
  80. return nil
  81. end
  82.  
  83. local slap = false
  84. local cd = false
  85.  
  86. plr:GetMouse().Button1Down:connect(function()
  87. if tool.Parent == plr.Character then
  88. if slap == false then
  89. slap = true
  90. sound2:Play()
  91. local str = Instance.new("StringValue")
  92. str.Name = "toolanim"
  93. str.Value = "Slash"
  94. str.Parent = "tool"
  95. wait(1)
  96. slap = false
  97. end
  98. end
  99. end)
  100.  
  101. part.Touched:connect(function(hit)
  102. if slap == true then
  103. if cd == false then
  104. if not hit:IsDescendantOf(plr.Character) then
  105. if hit.Parent:IsA("Model") then
  106. local fhum = firstHum(hit.Parent)
  107. if fhum then
  108. cd = true
  109. fhum.PlatformStand = true
  110. sound:Play()
  111. local con1
  112. con1 = game:GetService("RunService").Heartbeat:connect(function()
  113. fhum.PlatformStand = true
  114. end)
  115. wait(0.1)
  116. local vel = Instance.new("BodyVelocity",hit)
  117. vel.Velocity = ((hit.Position - plr.Character:WaitForChild("HumanoidRootPart").Position).unit + Vector3.new(0,0.5,0))*50
  118. vel.MaxForce = Vector3.new(10000000,10000000,10000000)
  119. wait(1)
  120. cd = false
  121. vel:Destroy()
  122. local vel2 = Instance.new("BodyVelocity",hit)
  123. vel2.Velocity = Vector3.new(0,12.5,0)
  124. vel2.MaxForce = Vector3.new(10000000,10000000,10000000)
  125. local p2 = Instance.new("Part",hit)
  126. p2.Anchored = true
  127. p2.Transparency = 0.6
  128. p2.CanCollide = false
  129. p2.Size = Vector3.new(0.2,0.2,0.2)
  130. p2.CFrame = CFrame.new(hit.CFrame.p) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(0))
  131. p2.BrickColor = BrickColor.new("Really black")
  132. p2.Material = "Neon"
  133. local m2 = Instance.new("CylinderMesh",p2)
  134. m2.Scale = Vector3.new(60,10000,60)
  135. local scln = sound3:Clone()
  136. scln.Parent = hit
  137. scln:Play()
  138. local con2
  139. con2 = game:GetService("RunService").Heartbeat:connect(function()
  140. p2.CFrame = CFrame.new(hit.CFrame.p) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(0))
  141. end)
  142. wait(7)
  143. vel2.Velocity = Vector3.new(0,0,0)
  144. wait(0.5)
  145. scln:Stop()
  146. local scln3 = sound5:Clone()
  147. scln3.Parent = hit
  148. scln3:Play()
  149. wait(1)
  150. local bav = Instance.new("BodyAngularVelocity",hit)
  151. bav.AngularVelocity = Vector3.new(math.random(0,360),math.random(0,360),math.random(0,360))
  152. vel2.Velocity = Vector3.new(0,-250,0)
  153. p2.BrickColor = BrickColor.new("Maroon")
  154. local scln6 = sound6:Clone()
  155. scln6.Parent = hit
  156. scln6:Play()
  157. local continue = false
  158. local htc
  159. htc = hit.Touched:connect(function(hitp)
  160. if not hitp:IsDescendantOf(hit.Parent) then
  161. continue = true
  162. scln6:Stop()
  163. vel2:Destroy()
  164. con2:Disconnect()
  165. con1:Disconnect()
  166. htc:Disconnect()
  167. p2:Destroy()
  168. end
  169. end)
  170. repeat wait() until continue == true
  171. local ctab = {}
  172. for i=1,4 do
  173. local p = Instance.new("Part",hit)
  174. p.Size = Vector3.new(30,30,30)
  175. p.Anchored = true
  176. p.CanCollide = false
  177. p.TopSurface = "Smooth"
  178. p.BottomSurface = "Smooth"
  179. p.Color = Color3.fromRGB(255,math.random(0,255),0)
  180. p.CFrame = hit.CFrame
  181. local con
  182. con = game:GetService("RunService").Heartbeat:connect(function()
  183. p.CFrame = p.CFrame * CFrame.Angles(math.rad(math.random(0,360)),math.rad(math.random(0,360)),math.rad(math.random(0,360)))
  184. p.Transparency = p.Transparency + 0.01
  185. if p.Transparency >= 1 then
  186. con:Disconnect()
  187. end
  188. end)
  189. table.insert(ctab,con)
  190. end
  191. Instance.new("Explosion",workspace).Position = hit.Position
  192. local scln2 = sound4:Clone()
  193. scln2.Parent = hit
  194. scln2:Play()
  195. vel2:Destroy()
  196. hit.Parent:BreakJoints()
  197. repeat wait() until not hit:IsDescendantOf(workspace)
  198. con2:Disconnect()
  199. end
  200. end
  201. end
  202. end
  203. end
  204. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement