Advertisement
DerpyTheBest

Something I Made ???

Apr 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 271.48 KB | None | 0 0
  1. wait(1 / 60)
  2. Effects = { }
  3. local Player = game.Players.localPlayer
  4. local Character = Player.Character
  5. local Humanoid = Character.Humanoid
  6. local Mouse = Player:GetMouse()
  7. local LeftArm = Character["Left Arm"]
  8. local RightArm = Character["Right Arm"]
  9. local LeftLeg = Character["Left Leg"]
  10. local RightLeg = Character["Right Leg"]
  11. local Head = Character.Head
  12. local Torso = Character.Torso
  13. local Camera = game.Workspace.CurrentCamera
  14. local RootPart = Character.HumanoidRootPart
  15. local RootJoint = RootPart.RootJoint
  16. local attack = false
  17. local Anim = 'Idle'
  18. local attacktype = 1
  19. local delays = false
  20. local play = true
  21. local targetted = nil
  22. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  23. local velocity = RootPart.Velocity.y
  24. local sine = 0
  25. local change = 1
  26. local doe = 0
  27. local Create = LoadLibrary("RbxUtility").Create
  28. Humanoid.WalkSpeed = 9
  29. local ff = Instance.new("ForceField")
  30. ff.Parent = Humanoid
  31. ff.Visible = false
  32. local m = Create("Model"){
  33. Parent = Character,
  34. Name = "WeaponModel",
  35. }
  36.  
  37. Humanoid.Animator.Parent = nil
  38. Character.Animate.Parent = nil
  39.  
  40. local newMotor = function(part0, part1, c0, c1)
  41. local w = Create('Motor'){
  42. Parent = part0,
  43. Part0 = part0,
  44. Part1 = part1,
  45. C0 = c0,
  46. C1 = c1,
  47. }
  48. return w
  49. end
  50.  
  51. function clerp(a, b, t)
  52. return a:lerp(b, t)
  53. end
  54.  
  55. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  56. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  57.  
  58. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  59. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  60. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  61. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  62. RootJoint.C1 = CFrame.new(0, 0, 0)
  63. RootJoint.C0 = CFrame.new(0, 0, 0)
  64. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  65. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  66.  
  67. local rarmc1 = RW.C1
  68. local larmc1 = LW.C1
  69. local rlegc1 = RH.C1
  70. local llegc1 = LH.C1
  71.  
  72. local resetc1 = false
  73.  
  74. function PlayAnimationFromTable(table, speed, bool)
  75. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  76. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  77. RW.C0 = clerp(RW.C0, table[3], speed)
  78. LW.C0 = clerp(LW.C0, table[4], speed)
  79. RH.C0 = clerp(RH.C0, table[5], speed)
  80. LH.C0 = clerp(LH.C0, table[6], speed)
  81. if bool == true then
  82. if resetc1 == false then
  83. resetc1 = true
  84. RootJoint.C1 = RootJoint.C1
  85. Torso.Neck.C1 = Torso.Neck.C1
  86. RW.C1 = rarmc1
  87. LW.C1 = larmc1
  88. RH.C1 = rlegc1
  89. LH.C1 = llegc1
  90. end
  91. end
  92. end
  93.  
  94. ArtificialHB = Create("BindableEvent", script){
  95. Parent = script,
  96. Name = "Heartbeat",
  97. }
  98.  
  99. script:WaitForChild("Heartbeat")
  100.  
  101. frame = 1 / 30
  102. tf = 0
  103. allowframeloss = false
  104. tossremainder = false
  105. lastframe = tick()
  106. script.Heartbeat:Fire()
  107.  
  108. game:GetService("RunService").Heartbeat:connect(function(s, p)
  109. tf = tf + s
  110. if tf >= frame then
  111. if allowframeloss then
  112. script.Heartbeat:Fire()
  113. lastframe = tick()
  114. else
  115. for i = 1, math.floor(tf / frame) do
  116. script.Heartbeat:Fire()
  117. end
  118. lastframe = tick()
  119. end
  120. if tossremainder then
  121. tf = 0
  122. else
  123. tf = tf - frame * math.floor(tf / frame)
  124. end
  125. end
  126. end)
  127.  
  128. function swait(num)
  129. if num == 0 or num == nil then
  130. ArtificialHB.Event:wait()
  131. else
  132. for i = 0, num do
  133. ArtificialHB.Event:wait()
  134. end
  135. end
  136. end
  137.  
  138. function RemoveOutlines(part)
  139. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  140. end
  141.  
  142. CFuncs = {
  143. ["Part"] = {
  144. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  145. local Part = Create("Part"){
  146. Parent = Parent,
  147. Reflectance = Reflectance,
  148. Transparency = Transparency,
  149. CanCollide = false,
  150. Locked = true,
  151. BrickColor = BrickColor.new(tostring(BColor)),
  152. Name = Name,
  153. Size = Size,
  154. Material = Material,
  155. }
  156. RemoveOutlines(Part)
  157. return Part
  158. end;
  159. };
  160.  
  161. ["Mesh"] = {
  162. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  163. local Msh = Create(Mesh){
  164. Parent = Part,
  165. Offset = OffSet,
  166. Scale = Scale,
  167. }
  168. if Mesh == "SpecialMesh" then
  169. Msh.MeshType = MeshType
  170. Msh.MeshId = MeshId
  171. end
  172. return Msh
  173. end;
  174. };
  175.  
  176. ["Mesh"] = {
  177. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  178. local Msh = Create(Mesh){
  179. Parent = Part,
  180. Offset = OffSet,
  181. Scale = Scale,
  182. }
  183. if Mesh == "SpecialMesh" then
  184. Msh.MeshType = MeshType
  185. Msh.MeshId = MeshId
  186. end
  187. return Msh
  188. end;
  189. };
  190.  
  191. ["Weld"] = {
  192. Create = function(Parent, Part0, Part1, C0, C1)
  193. local Weld = Create("Weld"){
  194. Parent = Parent,
  195. Part0 = Part0,
  196. Part1 = Part1,
  197. C0 = C0,
  198. C1 = C1,
  199. }
  200. return Weld
  201. end;
  202. };
  203.  
  204. ["Sound"] = {
  205. Create = function(id, par, vol, pit)
  206. coroutine.resume(coroutine.create(function()
  207. local S = Create("Sound"){
  208. Volume = vol,
  209. Pitch = pit or 1,
  210. SoundId = id,
  211. Parent = par or workspace,
  212. }
  213. wait()
  214. S:play()
  215. game:GetService("Debris"):AddItem(S, 25)
  216. end))
  217. end;
  218. };
  219.  
  220.  
  221. ["ParticleEmitter"] = {
  222. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  223. local fp = Create("ParticleEmitter"){
  224. Parent = Parent,
  225. Color = ColorSequence.new(Color1, Color2),
  226. LightEmission = LightEmission,
  227. Size = Size,
  228. Texture = Texture,
  229. Transparency = Transparency,
  230. ZOffset = ZOffset,
  231. Acceleration = Accel,
  232. Drag = Drag,
  233. LockedToPart = LockedToPart,
  234. VelocityInheritance = VelocityInheritance,
  235. EmissionDirection = EmissionDirection,
  236. Enabled = Enabled,
  237. Lifetime = LifeTime,
  238. Rate = Rate,
  239. Rotation = Rotation,
  240. RotSpeed = RotSpeed,
  241. Speed = Speed,
  242. VelocitySpread = VelocitySpread,
  243. }
  244. return fp
  245. end;
  246. };
  247.  
  248. CreateTemplate = {
  249.  
  250. };
  251. }
  252.  
  253.  
  254.  
  255. New = function(Object, Parent, Name, Data)
  256. local Object = Instance.new(Object)
  257. for Index, Value in pairs(Data or {}) do
  258. Object[Index] = Value
  259. end
  260. Object.Parent = Parent
  261. Object.Name = Name
  262. return Object
  263. end
  264.  
  265.  
  266. for i,v in pairs(Character:children()) do
  267. if v:IsA("Hat") then
  268. v:Destroy()
  269. end
  270. end
  271. for i,v in pairs(Character:children()) do
  272. if v:IsA("Accessory") then
  273. v:Destroy()
  274. end
  275. end
  276. for i,v in pairs(Character:children()) do
  277. if v:IsA("Hair") then
  278. v:Destroy()
  279. end
  280. end
  281. for i,v in pairs(Character:children()) do
  282. if v:IsA("Shirt") then
  283. v:Destroy()
  284. end
  285. end
  286. for i,v in pairs(Character:children()) do
  287. if v:IsA("Pants") then
  288. v:Destroy()
  289. end
  290. end
  291. for i,v in pairs(Character:children()) do
  292. if v:IsA("Decal") then
  293. v:Destroy()
  294. end
  295. end
  296.  
  297. ypcall(function()
  298. shirt = Instance.new("Shirt", Character)
  299. shirt.Name = "Shirt"
  300. pants = Instance.new("Pants", Character)
  301. pants.Name = "Pants"
  302. Character.Shirt.ShirtTemplate = "rbxassetid://770103213"
  303. Character.Pants.PantsTemplate = "rbxassetid://797403149"
  304. end)
  305. Reaper2 = Instance.new("Model")
  306. Reaper2.Parent = Character
  307. Reaper2.Name = "Reaper2"
  308. rh2 = Instance.new("Part")
  309. rh2.Parent = Reaper2
  310. rh2.Locked = true
  311. rh2.CanCollide = false
  312. mesh2 = Instance.new("SpecialMesh")
  313. rh2.formFactor = "Symmetric"
  314. mesh2.MeshType = "FileMesh"
  315. mesh2.MeshId = "rbxassetid://755714245"
  316. mesh2.Parent = rh2
  317. mesh2.TextureId = "rbxassetid://756275830"
  318. mesh2.Offset = Vector3.new(-0.05, -1.45, 0.35)
  319. mesh2.Scale = Vector3.new(0.066, 0.066, 0.066)
  320. local weld2 = Instance.new("Weld")
  321. weld2.Parent = rh2
  322. rh2.Transparency = 0
  323. weld2.Part0 = rh2
  324. weld2.Part1 = Player.Character.Head
  325. weld2.C0 = CFrame.new(-0.05, -0.05, -0.1025)*CFrame.Angles(0, 0, 0)
  326.  
  327. Reaper3 = Instance.new("Model")
  328. Reaper3.Parent = Character
  329. Reaper3.Name = "Reaper3"
  330. rh3 = Instance.new("Part")
  331. rh3.Parent = Reaper3
  332. rh3.Locked = true
  333. rh3.CanCollide = false
  334. mesh3 = Instance.new("SpecialMesh")
  335. rh3.formFactor = "Symmetric"
  336. mesh3.MeshType = "FileMesh"
  337. mesh3.MeshId = "rbxassetid://11419729"
  338. mesh3.Parent = rh3
  339. mesh3.TextureId = "rbxassetid://167447118"
  340. mesh3.Offset = Vector3.new(-0.05, 0.16, -0.285)
  341. mesh3.Scale = Vector3.new(1, 1, 1)
  342. local weld3 = Instance.new("Weld")
  343. weld3.Parent = rh3
  344. rh3.Transparency = 0
  345. weld3.Part0 = rh3
  346. weld3.Part1 = Player.Character.Head
  347. weld3.C0 = CFrame.new(-0.05, -0.05, -0.1025)*CFrame.Angles(0, 0, 0)
  348.  
  349. local BC = Character["Body Colors"]
  350. BC.HeadColor = BrickColor.new("Pastel brown")
  351. BC.LeftArmColor = BrickColor.new("Pastel brown")
  352. BC.LeftLegColor = BrickColor.new("Pastel brown")
  353. BC.RightArmColor = BrickColor.new("Pastel brown")
  354. BC.RightLegColor = BrickColor.new("Pastel brown")
  355. BC.TorsoColor = BrickColor.new("Pastel brown")
  356.  
  357. local dec2 = Instance.new("Decal", Character)
  358. dec2.Face = "Front"
  359. dec2.Texture = ""
  360. dec2.Parent = Character.Head
  361. Character.Head.face.Transparency = 0
  362. Character.Head.face.Texture = "http://www.roblox.com/asset/?id=13079565"
  363.  
  364. ShadowHead = New("Part",Character,"ShadowHead",{CanCollide = false,BrickColor = BrickColor.new("Really black"),Transparency = 1,Material = Enum.Material.Neon,Size = Vector3.new(1.20000005, 0.600000024, 1),CFrame = CFrame.new(68.5999985, 0.700013041, 9.89999962, 1, 0, 0, 0, 1, 0, 0, 0, 1),Color = Color3.new(0, 0, 0),})
  365. Mesh = New("SpecialMesh",ShadowHead,"Mesh",{Scale = Vector3.new(1.25999999, 1.5, 1.25999999),})
  366. Weld = New("Weld",ShadowHead,"mot",{Part0 = ShadowHead,Part1 = Character.Head,C1 = CFrame.new(0, 0.200000048, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  367.  
  368. Handle = New("Part",m,"Handle",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Transparency = 1,Transparency = 1,Size = Vector3.new(1.78105354, 1.21267569, 0.446083069),CFrame = CFrame.new(3.48884702, 1.89424598, -23.6011944, 0.0172098875, -7.30156898e-07, 0.999851942, 0.999853492, 1.19907781e-08, -0.0172098596, -1.80598714e-09, 1.00000083, 1.4975667e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(6,0,0),})
  369. moter = New("Weld",Handle,"mot",{Part0 = RightArm,Part1 = Handle,})
  370. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.46324158, 2.55061626, -23.0996056, 0.0172099378, 1.26508749e-05, 0.999852061, 0.999856234, 0.000737910799, -0.0172098614, -0.000738026109, 1.00000215, 2.29468287e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  371. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.492160469, 0.24608025, 0.123040132),})
  372. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098838, 0.999853015, -0.000738022442, 1.18836761e-05, 0.000737924012, 1.00000048, 0.999851942, -0.0172098614, 1.52736902e-06),C1 = CFrame.new(0.655831456, 0.501588821, -0.0368974209, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  373. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.270688266, 0.270688266),CFrame = CFrame.new(3.47537327, 1.11045444, -23.2953625, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  374. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.123040125, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  375. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.783906102, 0.305831909, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  376. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(1.47648132, 0.221472263, 0.344512314),CFrame = CFrame.new(3.48828244, 1.86040294, -23.3093491, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  377. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1.00999999, 1),})
  378. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(-0.0338476896, 0.291845322, 1.8119812e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  379. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.98432076, 0.200000003, 0.24608022),CFrame = CFrame.new(3.48404813, 1.61474013, -23.4433804, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  380. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.246080264, 1),})
  381. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279546618, 0.157814026, 1.21593475e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  382. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.984321058, 0.200000003, 0.200000003),CFrame = CFrame.new(3.36101127, 1.61687815, -23.4187717, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  383. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.492160618, 0.492160439),MeshType = Enum.MeshType.Cylinder,})
  384. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279526353, 0.182422638, -0.123043299, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  385. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.53706741, 2.54934502, -23.0996056, 0.0172099378, 1.26508749e-05, 0.999852061, 0.999856234, 0.000737910799, -0.0172098614, -0.000738026109, 1.00000215, 2.29468287e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  386. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.492160469, 0.246080235, 0.123040132),})
  387. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098838, 0.999853015, -0.000738022442, 1.18836761e-05, 0.000737924012, 1.00000048, 0.999851942, -0.0172098614, 1.52736902e-06),C1 = CFrame.new(0.655830979, 0.501588821, 0.0369393826, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  388. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(1.47648132, 0.200000003, 0.200000003),CFrame = CFrame.new(3.48828554, 1.86097884, -23.1606178, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  389. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.7382406),})
  390. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.0332717896, 0.440576553, 1.14440918e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  391. Partss = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.221472204, 0.221472189),CFrame = CFrame.new(3.47526526, 1.10428262, -23.2953568, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  392. Mesh = New("SpecialMesh",Partss,"Mesh",{Scale = Vector3.new(0.123040125, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  393. mot = New("Weld",Partss,"mot",{Part0 = Partss,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.790078878, 0.305837631, 1.57356262e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  394. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.49040294, 1.9837563, -23.5174713, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  395. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.615200579, 0.36912033, 0.24608025),MeshId = "http://www.roblox.com/asset/?id=3270017",MeshType = Enum.MeshType.FileMesh,})
  396. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(0.0895236731, 0.0837230682, 1.52587891e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  397. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.295296252, 0.738240778, 0.369120389),CFrame = CFrame.new(3.49802279, 2.42631888, -23.8138046, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  398. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(0.532151103, -0.212610245, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  399. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.344512314, 0.78745681, 0.344512314),CFrame = CFrame.new(3.49802279, 2.42631888, -23.8138046, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  400. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(0.532151103, -0.212610245, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  401. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.984321058, 0.200000003, 0.200000003),CFrame = CFrame.new(3.60706425, 1.61264217, -23.4187698, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  402. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.492160618, 0.492160439),MeshType = Enum.MeshType.Cylinder,})
  403. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279527187, 0.182424545, 0.12304616, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  404. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.47672749, 1.18911982, -23.1232109, 0.999851942, 0.00638213893, 0.0159827713, -0.0172098316, 0.37065956, 0.928613782, 4.44045327e-06, -0.928749561, 0.370713741),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  405. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(0.24608025, 0.246080264, 0.615200639),MeshType = Enum.MeshType.Wedge,})
  406. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098316, 3.67313623e-06, 0.00638283044, 0.370658338, -0.928748012, 0.0159824342, 0.928610861, 0.370713145),C1 = CFrame.new(-0.705229163, 0.477983475, 1.76429749e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  407. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.344512254, 0.787456751, 0.200000003),CFrame = CFrame.new(3.50247502, 2.68478155, -23.8132839, 0.999851942, 1.0713723e-05, -0.0172099732, -0.0172098912, 0.000738376984, -0.999856234, 4.21693585e-06, 1.00000226, 0.000738456321),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  408. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.861280859),MeshType = Enum.MeshType.Wedge,})
  409. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098912, 3.44961882e-06, 9.9465251e-06, 0.000738390256, 1.0000006, -0.0172099192, -0.999853015, 0.000738452654),C1 = CFrame.new(0.790651679, -0.212089539, 2.07424164e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  410. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.4904809, 1.98827124, -23.5162678, -0.999852061, -0.0148990965, 0.00861407723, 0.0172099397, -0.865535975, 0.500560343, -4.36594746e-06, 0.500633478, 0.865662456),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  411. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(0.24608025, 0.369120389, 0.861280918),MeshType = Enum.MeshType.Wedge,})
  412. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999851942, 0.0172099397, -3.59863043e-06, -0.0148994327, -0.865533173, 0.500632644, 0.00861338526, 0.500558794, 0.865661025),C1 = CFrame.new(0.0940393209, 0.0849266052, 1.54972076e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  413. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.442944348, 0.200000003, 0.200000003),CFrame = CFrame.new(3.37415838, 2.37982368, -23.1609974, 0.0172098633, 1.48413446e-05, 0.999851882, 0.999856234, 0.0007376945, -0.0172097869, -0.000737846654, 1.00000215, 7.44058752e-08),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  414. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  415. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098093, 0.999853015, -0.000737842987, 1.40741467e-05, 0.000737707771, 1.00000048, 0.999851823, -0.0172097888, -6.92903996e-07),C1 = CFrame.new(0.483531356, 0.440196991, -0.12302804, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  416. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.61520052, 0.200000003, 0.200000003),CFrame = CFrame.new(3.35783243, 1.43252242, -23.1602993, 0.0172098633, 1.48413446e-05, 0.999851882, 0.999856234, 0.0007376945, -0.0172097869, -0.000737846654, 1.00000215, 7.44058752e-08),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  417. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  418. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098093, 0.999853015, -0.000737842987, 1.40741467e-05, 0.000737707771, 1.00000048, 0.999851823, -0.0172097888, -6.92903996e-07),C1 = CFrame.new(-0.463909149, 0.440895081, -0.123048544, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  419. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(1.47648132, 0.200000003, 0.200000003),CFrame = CFrame.new(3.61130548, 1.85886192, -23.160614, -0.0172098689, 1.04156998e-05, -0.99985218, -0.999856234, 0.000738191127, 0.0172097925, 0.000738266157, 1.00000238, -4.55221243e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  420. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  421. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0172098149, -0.999853075, 0.00073826249, 9.64850187e-06, 0.00073820434, 1.00000072, -0.999852121, 0.0172097944, -3.78489494e-06),C1 = CFrame.new(-0.0332713127, 0.440580368, 0.123049498, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  422. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.36912033, 0.738240778, 0.200000003),CFrame = CFrame.new(3.50183868, 2.64789343, -23.8132629, 0.999851942, 1.0818032e-05, -0.017209895, -0.0172098186, 0.000737608876, -0.999856234, 4.13497901e-06, 1.00000238, 0.000737691764),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  423. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.738240719),MeshType = Enum.MeshType.Wedge,})
  424. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098186, 3.36766243e-06, 1.00508332e-05, 0.000737622147, 1.00000072, -0.0172098409, -0.999853015, 0.000737688097),C1 = CFrame.new(0.753758311, -0.212068558, 1.93119049e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  425. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.344512254, 0.787456751, 0.200000003),CFrame = CFrame.new(3.49357963, 2.16808391, -23.8129005, 0.999852061, -1.05647114e-05, 0.0172100067, -0.0172099303, -0.000737611321, 0.999856114, 4.36594746e-06, -1.00000226, -0.000737689785),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  426. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.861280859),MeshType = Enum.MeshType.Wedge,})
  427. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851942, -0.0172099303, 3.59863043e-06, -9.79751348e-06, -0.000737624592, -1.0000006, 0.0172099527, 0.999852955, -0.000737686118),C1 = CFrame.new(0.273878455, -0.211706161, 1.90734863e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  428. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.36912033, 0.738240659, 0.200000003),CFrame = CFrame.new(3.49420977, 2.20497489, -23.8129292, 0.999852061, -1.05647114e-05, 0.0172100067, -0.0172099303, -0.000737611321, 0.999856114, 4.36594746e-06, -1.00000226, -0.000737689785),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  429. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.738240719),MeshType = Enum.MeshType.Wedge,})
  430. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851942, -0.0172099303, 3.59863043e-06, -9.79751348e-06, -0.000737624592, -1.0000006, 0.0172099527, 0.999852955, -0.000737686118),C1 = CFrame.new(0.310774684, -0.211734772, 1.43051147e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  431.  
  432. for _,v in pairs(m:children()) do
  433. if v:IsA("Part") then
  434. v.CanCollide = false
  435. end
  436. end
  437. if Character.Name == "pdnghiaqoi" or Character.Name == "Player1" then
  438. for _,v in pairs(Character:children()) do
  439. if v:IsA("Accessory") then
  440. v:Remove()
  441. end
  442. end
  443. Handle = New("Part",m,"Handle",{CanCollide = false,BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(-27.3000507, 4.79990387, 28.10005, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0, 0, 0),})
  444. Mesh = New("SpecialMesh",Handle,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),MeshId = "http://www.roblox.com/asset/?id=62246019",MeshType = Enum.MeshType.FileMesh,})
  445. Decal = New("Decal",Handle,"Decal",{Face = Enum.NormalId.Top,Texture = "http://www.roblox.com/asset/?id=146022204",})
  446. mot = New("Motor",Handle,"mot",{Part0 = Handle,Part1 = Head,C0 = CFrame.new(0, 0, 0, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),C1 = CFrame.new(-0.100000381, 0.0999999046, 0.200000763, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),})
  447. Handle1 = New("Part",m,"Handle1",{CanCollide = false,BrickColor = BrickColor.new("Really red"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(-27.3000507, 4.79990387, 28.10005, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(.0, 0, 0),})
  448. Mesh = New("SpecialMesh",Handle1,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(0.949999988, 0.949999988, 0.949999988),MeshId = "http://www.roblox.com/asset/?id=62246019",MeshType = Enum.MeshType.FileMesh,})
  449. mot = New("Motor",Handle1,"mot",{Part0 = Handle1,Part1 = Head,C0 = CFrame.new(0, 0, 0, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),C1 = CFrame.new(-0.100000381, 0.0999999046, 0.200000763, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),})
  450. end
  451.  
  452.  
  453. function rayCast(Position, Direction, Range, Ignore)
  454. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  455. end
  456.  
  457. --[[FindNearestTorso = function(pos)
  458. local list = (game.Workspace:children())
  459. local torso = nil
  460. local dist = 1000
  461. local temp, human, temp2 = nil, nil, nil
  462. for x = 1, #list do
  463. temp2 = list[x]
  464. if temp2.className == "Model" and temp2.Name ~= Character.Name then
  465. temp = temp2:findFirstChild("Torso")
  466. human = temp2:findFirstChild("Humanoid")
  467. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  468. local dohit = true
  469. if dohit == true then
  470. torso = temp
  471. dist = (temp.Position - pos).magnitude
  472. end
  473. end
  474. end
  475. end
  476. return torso, dist
  477. end]]
  478. function FindNearestTorso(Position, Distance, SinglePlayer)
  479. if SinglePlayer then
  480. return (SinglePlayer.Torso.CFrame.p - Position).magnitude < Distance
  481. end
  482. local List = {}
  483. for i, v in pairs(workspace:GetChildren()) do
  484. if v:IsA("Model") then
  485. if v:findFirstChild("Torso") then
  486. if v ~= Character then
  487. if (v.Torso.Position - Position).magnitude <= Distance then
  488. table.insert(List, v)
  489. end
  490. end
  491. end
  492. end
  493. end
  494. return List
  495. end
  496. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  497. if hit.Parent == nil then
  498. return
  499. end
  500. local h = hit.Parent:FindFirstChild("Humanoid")
  501. for _, v in pairs(hit.Parent:children()) do
  502. if v:IsA("Humanoid") then
  503. h = v
  504. end
  505. end
  506. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  507. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  508. if hit.Parent.DebounceHit.Value == true then
  509. return
  510. end
  511. end
  512. local c = Create("ObjectValue"){
  513. Name = "creator",
  514. Value = game:service("Players").LocalPlayer,
  515. Parent = h,
  516. }
  517. game:GetService("Debris"):AddItem(c, .5)
  518. if HitSound ~= nil and HitPitch ~= nil then
  519. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  520. end
  521. local Damage = math.random(minim, maxim)
  522. local blocked = false
  523. local block = hit.Parent:findFirstChild("Block")
  524. if block ~= nil then
  525. if block.className == "IntValue" then
  526. if block.Value > 0 then
  527. blocked = true
  528. block.Value = block.Value - 1
  529. print(block.Value)
  530. end
  531. end
  532. end
  533. if blocked == false then
  534. h.Health = h.Health - Damage
  535. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  536. else
  537. h.Health = h.Health - (Damage / 2)
  538. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  539. end
  540. if Type == "Knockdown" then
  541. local hum = hit.Parent.Humanoid
  542. hum.PlatformStand = true
  543. coroutine.resume(coroutine.create(function(HHumanoid)
  544. swait(1)
  545. HHumanoid.PlatformStand = false
  546. end), hum)
  547. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  548. local bodvol = Create("BodyVelocity"){
  549. velocity = angle * knockback,
  550. P = 5000,
  551. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  552. Parent = hit,
  553. }
  554. local rl = Create("BodyAngularVelocity"){
  555. P = 3000,
  556. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  557. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  558. Parent = hit,
  559. }
  560. game:GetService("Debris"):AddItem(bodvol, .5)
  561. game:GetService("Debris"):AddItem(rl, .5)
  562. elseif Type == "Normal" then
  563. local vp = Create("BodyVelocity"){
  564. P = 500,
  565. maxForce = Vector3.new(math.huge, 0, math.huge),
  566. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  567. }
  568. if knockback > 0 then
  569. vp.Parent = hit.Parent.Torso
  570. end
  571. game:GetService("Debris"):AddItem(vp, .5)
  572. elseif Type == "Up" then
  573. local bodyVelocity = Create("BodyVelocity"){
  574. velocity = Vector3.new(0, 20, 0),
  575. P = 5000,
  576. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  577. Parent = hit,
  578. }
  579. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  580. elseif Type == "DarkUp" then
  581. coroutine.resume(coroutine.create(function()
  582. for i = 0, 1, 0.1 do
  583. swait()
  584. Effects.Block.Create(BrickColor.new("Really black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  585. end
  586. end))
  587. local bodyVelocity = Create("BodyVelocity"){
  588. velocity = Vector3.new(0, 20, 0),
  589. P = 5000,
  590. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  591. Parent = hit,
  592. }
  593. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  594. elseif Type == "Snare" then
  595. local bp = Create("BodyPosition"){
  596. P = 2000,
  597. D = 100,
  598. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  599. position = hit.Parent.Torso.Position,
  600. Parent = hit.Parent.Torso,
  601. }
  602. game:GetService("Debris"):AddItem(bp, 1)
  603. elseif Type == "Freeze" then
  604. local BodPos = Create("BodyPosition"){
  605. P = 50000,
  606. D = 1000,
  607. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  608. position = hit.Parent.Torso.Position,
  609. Parent = hit.Parent.Torso,
  610. }
  611. local BodGy = Create("BodyGyro") {
  612. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  613. P = 20e+003,
  614. Parent = hit.Parent.Torso,
  615. cframe = hit.Parent.Torso.CFrame,
  616. }
  617. hit.Parent.Torso.Anchored = true
  618. coroutine.resume(coroutine.create(function(Part)
  619. swait(1.5)
  620. Part.Anchored = false
  621. end), hit.Parent.Torso)
  622. game:GetService("Debris"):AddItem(BodPos, 3)
  623. game:GetService("Debris"):AddItem(BodGy, 3)
  624. end
  625. local debounce = Create("BoolValue"){
  626. Name = "DebounceHit",
  627. Parent = hit.Parent,
  628. Value = true,
  629. }
  630. game:GetService("Debris"):AddItem(debounce, Delay)
  631. c = Create("ObjectValue"){
  632. Name = "creator",
  633. Value = Player,
  634. Parent = h,
  635. }
  636. game:GetService("Debris"):AddItem(c, .5)
  637. end
  638. end
  639.  
  640. function ShowDamage(Pos, Text, Time, Color)
  641. local Rate = (1 / 30)
  642. local Pos = (Pos or Vector3.new(0, 0, 0))
  643. local Text = (Text or "")
  644. local Time = (Time or 2)
  645. local Color = (Color or Color3.new(1, 0, 1))
  646. local EffectPart = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  647. EffectPart.Anchored = true
  648. local BillboardGui = Create("BillboardGui"){
  649. Size = UDim2.new(3, 0, 3, 0),
  650. Adornee = EffectPart,
  651. Parent = EffectPart,
  652. }
  653. local TextLabel = Create("TextLabel"){
  654. BackgroundTransparency = 1,
  655. Size = UDim2.new(1, 0, 1, 0),
  656. Text = Text,
  657. Font = "SciFi",
  658. TextColor3 = Color,
  659. TextScaled = true,
  660. Parent = BillboardGui,
  661. }
  662. game.Debris:AddItem(EffectPart, (Time))
  663. EffectPart.Parent = game:GetService("Workspace")
  664. delay(0, function()
  665. local Frames = (Time / Rate)
  666. for Frame = 1, Frames do
  667. wait(Rate)
  668. local Percent = (Frame / Frames)
  669. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  670. TextLabel.TextTransparency = Percent
  671. end
  672. if EffectPart and EffectPart.Parent then
  673. EffectPart:Destroy()
  674. end
  675. end)
  676. end
  677.  
  678. function dmg(dude)
  679. if dude.Name ~= Character then
  680. dude.Humanoid.PlatformStand = true
  681. local bgf = Instance.new("BodyGyro",dude.Head)
  682. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90),0,0)
  683. local val = Instance.new("BoolValue",dude)
  684. val.Name = "IsHit"
  685. for i = 1, 30 do
  686. local blo = Instance.new("Part",game.Workspace)
  687. blo.Size = Vector3.new(.6,.2,.6)
  688. blo.Material = "Granite"
  689. blo.BrickColor = BrickColor.new("Really red")
  690. --blo.Position = dude.Head.Position
  691. blo.CFrame = dude.Head.CFrame
  692. game:GetService("Debris"):AddItem(blo,60)
  693. end
  694. local ds = coroutine.wrap(function()
  695. wait(.2)
  696. dude.Torso:BreakJoints()
  697. end)
  698. ds()
  699. end
  700. end
  701.  
  702. function mdmg(Part, Magnitude)--, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  703. --local buddy
  704. for _, c in pairs(workspace:children()) do
  705. local hum = c:findFirstChild("Humanoid")
  706. if hum ~= nil then
  707. local head = c:findFirstChild("Torso")
  708. if head ~= nil then
  709. local targ = head.Position - Part.Position
  710. local mag = targ.magnitude
  711. if mag <= Magnitude and c.Name ~= Player.Name then
  712. if c.Name ~= Character then
  713. if c.Name ~= "pdnghiaqoi" then
  714. local asd = Instance.new("ParticleEmitter",c.Torso)
  715. asd.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  716. asd.LightEmission = .1
  717. asd.Size = NumberSequence.new(0.2)
  718. asd.Texture = "http://www.roblox.com/asset/?ID=771221224"
  719. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  720. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  721. asd.Transparency = bbb
  722. asd.Size = aaa
  723. asd.ZOffset = .9
  724. asd.Acceleration = Vector3.new(0, -5, 0)
  725. asd.LockedToPart = false
  726. asd.EmissionDirection = "Back"
  727. asd.Lifetime = NumberRange.new(1, 2)
  728. asd.Rate = 1000
  729. asd.Rotation = NumberRange.new(-100, 100)
  730. asd.RotSpeed = NumberRange.new(-100, 100)
  731. asd.Speed = NumberRange.new(6)
  732. asd.VelocitySpread = 10000
  733. asd.Enabled=true
  734. --Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  735. dmg(c)
  736. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=245186002", c.Torso, 4.5, .8)
  737. coroutine.wrap(function()
  738. wait(.2)
  739. asd.Enabled = false
  740. wait(2)
  741. asd:Remove()
  742. end)()
  743. else
  744. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=240429289", c.Torso, 1.5, math.random(1,1.3))
  745. Effects.Sphere.Create(BrickColor.new("Bright red"), c.Torso.CFrame, 30, 30, 30, .5, .5, .5, 0.04)
  746.  
  747. end
  748. end
  749. end
  750. end
  751. end
  752. end
  753. end
  754. EffectModel = Create("Model"){
  755. Parent = Character,
  756. Name = "Effects",
  757. }
  758.  
  759. Effects = {
  760. Block = {
  761. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  762. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  763. prt.Anchored = true
  764. prt.CFrame = cframe
  765. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  766. game:GetService("Debris"):AddItem(prt, 10)
  767. if Type == 1 or Type == nil then
  768. table.insert(Effects, {
  769. prt,
  770. "Block1",
  771. delay,
  772. x3,
  773. y3,
  774. z3,
  775. msh
  776. })
  777. elseif Type == 2 then
  778. table.insert(Effects, {
  779. prt,
  780. "Block2",
  781. delay,
  782. x3,
  783. y3,
  784. z3,
  785. msh
  786. })
  787. end
  788. end;
  789. };
  790.  
  791. Cylinder = {
  792. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  793. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  794. prt.Anchored = true
  795. prt.CFrame = cframe
  796. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  797. game:GetService("Debris"):AddItem(prt, 10)
  798. table.insert(Effects, {
  799. prt,
  800. "Cylinder",
  801. delay,
  802. x3,
  803. y3,
  804. z3,
  805. msh
  806. })
  807. end;
  808. };
  809. Head = {
  810. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  811. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  812. prt.Anchored = true
  813. prt.CFrame = cframe
  814. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  815. game:GetService("Debris"):AddItem(prt, 10)
  816. table.insert(Effects, {
  817. prt,
  818. "Cylinder",
  819. delay,
  820. x3,
  821. y3,
  822. z3,
  823. msh
  824. })
  825. end;
  826. };
  827.  
  828. Sphere = {
  829. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  830. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  831. prt.Anchored = true
  832. prt.CFrame = cframe
  833. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  834. game:GetService("Debris"):AddItem(prt, 10)
  835. table.insert(Effects, {
  836. prt,
  837. "Cylinder",
  838. delay,
  839. x3,
  840. y3,
  841. z3,
  842. msh
  843. })
  844. end;
  845. };
  846.  
  847. Elect = {
  848. Create = function(cff, x, y, z)
  849. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Really black"), "Part", Vector3.new(1, 1, 1))
  850. prt.Anchored = true
  851. prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
  852. prt.CFrame = CFrame.new(prt.Position)
  853. game:GetService("Debris"):AddItem(prt, 2)
  854. local xval = math.random() / 2
  855. local yval = math.random() / 2
  856. local zval = math.random() / 2
  857. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  858. table.insert(Effects, {
  859. prt,
  860. "Elec",
  861. 0.1,
  862. x,
  863. y,
  864. z,
  865. xval,
  866. yval,
  867. zval
  868. })
  869. end;
  870.  
  871. };
  872.  
  873. Ring = {
  874. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  875. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  876. prt.Anchored = true
  877. prt.CFrame = cframe
  878. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  879. game:GetService("Debris"):AddItem(prt, 10)
  880. table.insert(Effects, {
  881. prt,
  882. "Cylinder",
  883. delay,
  884. x3,
  885. y3,
  886. z3,
  887. msh
  888. })
  889. end;
  890. };
  891.  
  892.  
  893. Wave = {
  894. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  895. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  896. prt.Anchored = true
  897. prt.CFrame = cframe
  898. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  899. game:GetService("Debris"):AddItem(prt, 10)
  900. table.insert(Effects, {
  901. prt,
  902. "Cylinder",
  903. delay,
  904. x3,
  905. y3,
  906. z3,
  907. msh
  908. })
  909. end;
  910. };
  911.  
  912. Break = {
  913. Create = function(brickcolor, cframe, x1, y1, z1)
  914. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  915. prt.Anchored = true
  916. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  917. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  918. local num = math.random(10, 50) / 1000
  919. game:GetService("Debris"):AddItem(prt, 10)
  920. table.insert(Effects, {
  921. prt,
  922. "Shatter",
  923. num,
  924. prt.CFrame,
  925. math.random() - math.random(),
  926. 0,
  927. math.random(50, 100) / 100
  928. })
  929. end;
  930. };
  931.  
  932. Fire = {
  933. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  934. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  935. prt.Anchored = true
  936. prt.CFrame = cframe
  937. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  938. game:GetService("Debris"):AddItem(prt, 10)
  939. table.insert(Effects, {
  940. prt,
  941. "Fire",
  942. delay,
  943. 1,
  944. 1,
  945. 1,
  946. msh
  947. })
  948. end;
  949. };
  950.  
  951. FireWave = {
  952. Create = function(brickcolor, cframe, x1, y1, z1)
  953. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 1, brickcolor, "Effect", Vector3.new())
  954. prt.Anchored = true
  955. prt.CFrame = cframe
  956. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  957. local d = Create("Decal"){
  958. Parent = prt,
  959. Texture = "rbxassetid://26356434",
  960. Face = "Top",
  961. }
  962. local d = Create("Decal"){
  963. Parent = prt,
  964. Texture = "rbxassetid://26356434",
  965. Face = "Bottom",
  966. }
  967. game:GetService("Debris"):AddItem(prt, 10)
  968. table.insert(Effects, {
  969. prt,
  970. "FireWave",
  971. 1,
  972. 30,
  973. math.random(400, 600) / 100,
  974. msh
  975. })
  976. end;
  977. };
  978.  
  979. Lightning = {
  980. Create = function(p0, p1, tym, ofs, col, th, tra, last)
  981. local magz = (p0 - p1).magnitude
  982. local curpos = p0
  983. local trz = {
  984. -ofs,
  985. ofs
  986. }
  987. for i = 1, tym do
  988. local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  989. local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  990. local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  991. li.Material = "Neon"
  992. if tym == i then
  993. local magz2 = (curpos - p1).magnitude
  994. li.Size = Vector3.new(th, th, magz2)
  995. li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  996. table.insert(Effects, {
  997. li,
  998. "Disappear",
  999. last
  1000. })
  1001. else
  1002. do
  1003. do
  1004. li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  1005. curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  1006. game.Debris:AddItem(li, 10)
  1007. table.insert(Effects, {
  1008. li,
  1009. "Disappear",
  1010. last
  1011. })
  1012. end
  1013. end
  1014. end
  1015. end
  1016. end
  1017. };
  1018.  
  1019. EffectTemplate = {
  1020.  
  1021. };
  1022. }
  1023.  
  1024. function chatfunc(text)
  1025. local chat = coroutine.wrap(function()
  1026. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  1027. Character:FindFirstChild("TalkingBillBoard"):destroy()
  1028. end
  1029. local naeeym2 = Instance.new("BillboardGui",Character)
  1030. naeeym2.Size = UDim2.new(0,100,0,40)
  1031. naeeym2.StudsOffset = Vector3.new(0,3,0)
  1032. naeeym2.Adornee = Character.Head
  1033. naeeym2.Name = "TalkingBillBoard"
  1034. local tecks2 = Instance.new("TextLabel",naeeym2)
  1035. tecks2.BackgroundTransparency = 1
  1036. tecks2.BorderSizePixel = 0
  1037. tecks2.Text = ""
  1038. tecks2.Font = "Antique"
  1039. tecks2.TextSize = 38
  1040. tecks2.TextStrokeTransparency = 0
  1041. tecks2.TextColor3 = Color3.new(0,0,0)
  1042. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  1043. tecks2.Size = UDim2.new(1,0,0.5,0)
  1044. local tecks3 = Instance.new("TextLabel",naeeym2)
  1045. tecks3.BackgroundTransparency = 1
  1046. tecks3.BorderSizePixel = 0
  1047. tecks3.Text = ""
  1048. tecks3.Font = "Antique"
  1049. tecks3.TextSize = 38
  1050. tecks3.TextStrokeTransparency = 0
  1051. tecks3.TextColor3 = Color3.new(10,0,0)
  1052. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  1053. tecks3.Size = UDim2.new(1,0,0.5,0)
  1054. for i = 1,string.len(text),1 do
  1055. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=158825280", Character, 1, 1.45)
  1056. tecks2.Text = string.sub(text,1,i)
  1057. tecks3.Text = string.sub(text,1,i)
  1058. wait(0.01)
  1059. end
  1060. wait(2)
  1061. for i = 1, 50 do
  1062. swait()
  1063. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  1064. tecks2.Rotation = tecks2.Rotation - .8
  1065. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  1066. tecks2.TextTransparency = tecks2.TextTransparency + .04
  1067. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  1068. tecks3.Rotation = tecks2.Rotation + .8
  1069. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  1070. tecks3.TextTransparency = tecks2.TextTransparency + .04
  1071. end
  1072. naeeym2:Destroy()
  1073. end)
  1074. chat()
  1075. end
  1076. function onChatted(msg)
  1077. chatfunc(msg)
  1078. end
  1079. Player.Chatted:connect(onChatted)
  1080.  
  1081. abss = Instance.new("BillboardGui",Character)
  1082. abss.Size = UDim2.new(10,0,10,0)
  1083. abss.Enabled = false
  1084. imgl = Instance.new("ImageLabel",abss)
  1085. imgl.Position = UDim2.new(0,0,0,0)
  1086. imgl.Size = UDim2.new(1,0,1,0)
  1087. imgl.Image = "rbxassetid://418573253"
  1088. imgl.ImageColor3 = Color3.new(111, 0, 0)
  1089. imgl.BackgroundTransparency = 1
  1090. imgf = Instance.new("ImageLabel",abss)
  1091. imgf.Position = UDim2.new(0,0,0,0)
  1092. imgf.Size = UDim2.new(1,0,1,0)
  1093. imgf.Image = "rbxassetid://227681719"
  1094. imgf.ImageColor3 = Color3.new(111, 0, 0)
  1095. imgf.BackgroundTransparency = 1
  1096. img2 = Instance.new("ImageLabel",abss)
  1097. img2.Position = UDim2.new(0,0,0,0)
  1098. img2.Size = UDim2.new(1,0,1,0)
  1099. img2.Image = "http://www.roblox.com/asset/?id=418573253"
  1100. img2.ImageColor3 = Color3.new(111, 0, 0)
  1101. img2.BackgroundTransparency = 1
  1102. img3 = Instance.new("ImageLabel",abss)
  1103. img3.Position = UDim2.new(0,0,0,0)
  1104. img3.Size = UDim2.new(1,0,1,0)
  1105. img3.Image = "http://www.roblox.com/asset/?id=227681719"
  1106. img3.ImageColor3 = Color3.new(111, 0, 0)
  1107. img3.BackgroundTransparency = 1
  1108.  
  1109. spawn(function()
  1110. chatfunc("Another one?")
  1111. wait(2)
  1112. chatfunc("Ugh..")
  1113. wait(1.6)
  1114. chatfunc("Let's get this done quick, shall we?")
  1115. end)
  1116.  
  1117. function attackone()
  1118. attack = true
  1119. Humanoid.WalkSpeed = 9
  1120. if targetted.Name ~= "pdnghiaqoi" then
  1121. local partasdeff = Instance.new("ParticleEmitter",targetted.Torso)
  1122. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1123. partasdeff.LightEmission = .1
  1124. partasdeff.Size = NumberSequence.new(0.2)
  1125. partasdeff.Texture = "http://www.roblox.com/asset/?ID=771221224"
  1126. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1127. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0),
  1128. NumberSequenceKeypoint.new(1, 1)})
  1129. partasdeff.Transparency = bbb
  1130. partasdeff.Size = aaa
  1131. partasdeff.ZOffset = .9
  1132. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1133. partasdeff.LockedToPart = false
  1134. partasdeff.EmissionDirection = "Back"
  1135. partasdeff.Lifetime = NumberRange.new(1, 2)
  1136. partasdeff.Rate = 1000
  1137. partasdeff.Rotation = NumberRange.new(-100, 100)
  1138. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1139. partasdeff.Speed = NumberRange.new(6)
  1140. partasdeff.VelocitySpread = 10000
  1141. partasdeff.Enabled=false
  1142. for i = 0, 0.25, 0.1 do
  1143. swait()
  1144. PlayAnimationFromTable({
  1145. CFrame.new(0.0150662307, -4.88092428e-06, 0.0148906102, -0.01982099, -1.08002496e-12, 0.999803543, -4.46946984e-07, 1, -8.86181084e-09, -0.999803782, 3.27825546e-07, -0.0198209975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1146. CFrame.new(-0.00189219415, 1.50098944, -0.129972562, 0.0201512501, 0.0765038878, -0.996864021, 0.0566192083, 0.995383799, 0.0775336027, 0.998202145, -0.0580037907, 0.0157258138) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1147. CFrame.new(2.01696348, 0.389823437, -0.060955409, -0.000397110358, -0.999624014, -0.0274192169, 0.00981300231, 0.0274140034, -0.999576092, 0.999951839, -0.0006660074, 0.00979842618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1148. CFrame.new(-1.64040112, 0.216884568, 1.93210121e-06, 0.962137103, 0.272578239, -7.02217221e-07, -0.272574633, 0.962141275, -9.83368591e-06, -2.00979412e-06, 9.69739631e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1149. CFrame.new(0.64369607, -1.98395038, 0.206737444, 0.19058302, -0.152998164, -0.969677031, 0.0664296299, 0.987527609, -0.142758414, 0.979424179, -0.0372077115, 0.198368743) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1150. CFrame.new(-0.641120076, -1.92643452, -0.0258421432, 0.848103583, 0.133398816, -0.51276207, -0.0662644878, 0.986892581, 0.147146463, 0.52567035, -0.0908175632, 0.845826566) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1151. }, .1, false)
  1152. moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1153. end
  1154. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  1155. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  1156. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  1157. dmg(targetted)
  1158. wait()
  1159. chatfunc("Got you.")
  1160. partasdeff.Enabled=true
  1161. for i = 0, 0.15, 0.1 do
  1162. swait()
  1163. PlayAnimationFromTable({
  1164. CFrame.new(0.0150662307, -4.88092428e-06, 0.0148906102, -0.01982099, -1.08002496e-12, 0.999803543, -4.46946984e-07, 1, -8.86181084e-09, -0.999803782, 3.27825546e-07, -0.0198209975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1165. CFrame.new(-0.0879677385, 1.49240708, -0.127746791, 0.0201510563, -0.100440688, -0.994740784, 0.0566197298, 0.99346137, -0.0991647467, 0.998197258, -0.0543235913, 0.0257058665) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1166. CFrame.new(2.03539443, 0.729742587, 0.0108130341, -0.00389442407, -0.967803538, 0.251676887, 0.0148300035, -0.251707017, -0.967689872, 0.999882519, -3.62247229e-05, 0.0153327845) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1167. CFrame.new(-1.64040112, 0.216884568, 1.93210121e-06, 0.962137103, 0.272578239, -7.02217221e-07, -0.272574633, 0.962141275, -9.83368591e-06, -2.00979412e-06, 9.69739631e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1168. CFrame.new(0.64369607, -1.98395038, 0.206737444, 0.19058302, -0.152998164, -0.969677031, 0.0664296299, 0.987527609, -0.142758414, 0.979424179, -0.0372077115, 0.198368743) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1169. CFrame.new(-0.641120076, -1.92643452, -0.0258421432, 0.848103583, 0.133398816, -0.51276207, -0.0662644878, 0.986892581, 0.147146463, 0.52567035, -0.0908175632, 0.845826566) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1170. }, .3, false)
  1171. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1172. end
  1173. partasdeff.Enabled=false
  1174. for i = 0, 2, 0.1 do
  1175. swait()
  1176. PlayAnimationFromTable({
  1177. CFrame.new(0.0150662307, -4.88092428e-06, 0.0148906102, -0.01982099, -1.08002496e-12, 0.999803543, -4.46946984e-07, 1, -8.86181084e-09, -0.999803782, 3.27825546e-07, -0.0198209975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1178. CFrame.new(-0.00189219415, 1.50098944, -0.129972562, 0.0201512501, 0.0765038878, -0.996864021, 0.0566192083, 0.995383799, 0.0775336027, 0.998202145, -0.0580037907, 0.0157258138) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1179. CFrame.new(2.01696348, 0.389823437, -0.060955409, -0.000397110358, -0.999624014, -0.0274192169, 0.00981300231, 0.0274140034, -0.999576092, 0.999951839, -0.0006660074, 0.00979842618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1180. CFrame.new(-1.64040112, 0.216884568, 1.93210121e-06, 0.962137103, 0.272578239, -7.02217221e-07, -0.272574633, 0.962141275, -9.83368591e-06, -2.00979412e-06, 9.69739631e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1181. CFrame.new(0.64369607, -1.98395038, 0.206737444, 0.19058302, -0.152998164, -0.969677031, 0.0664296299, 0.987527609, -0.142758414, 0.979424179, -0.0372077115, 0.198368743) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1182. CFrame.new(-0.641120076, -1.92643452, -0.0258421432, 0.848103583, 0.133398816, -0.51276207, -0.0662644878, 0.986892581, 0.147146463, 0.52567035, -0.0908175632, 0.845826566) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1183. }, .3, false)
  1184. moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1185. end
  1186. coroutine.wrap(function()
  1187. wait()
  1188. partasdeff:Remove()
  1189. end)()
  1190. else
  1191. sel = math.random(1,4)
  1192. if sel == 1 then
  1193. chatfunc("...")
  1194. elseif sel == 2 then
  1195. chatfunc("No...")
  1196. elseif sel == 3 then
  1197. chatfunc("I cant kill him...")
  1198. elseif sel == 4 then
  1199. chatfunc("What am I doing?")
  1200. end
  1201. for i = 0, 5, 0.1 do
  1202. swait()
  1203. PlayAnimationFromTable({
  1204. CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1205. CFrame.new(-0.055980958, 1.49253583, -0.318915963, 0.999889553, 0.0107171191, -0.0102898544, -0.00218299939, 0.791040659, 0.611759722, 0.0146959936, -0.61166966, 0.790976703) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1206. CFrame.new(1.54004693, 0.0494250022, 1.90734852e-06, 0.997847795, -0.0655719861, 0, 0.0655719936, 0.997847855, 7.53468894e-22, -4.94064563e-23, -7.51847299e-22, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1207. CFrame.new(-1.51232088, 0.0410207808, -3.73942044e-06, 0.998558879, 0.053665854, -2.33806347e-07, -0.0536658242, 0.998558939, -1.04548817e-05, -3.27600219e-07, 1.04523697e-05, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1208. CFrame.new(0.540300906, -1.99793804, -2.11055158e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1209. CFrame.new(-0.539562821, -1.99794102, -5.75710146e-09, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1210. }, .3, false)
  1211. moter.C0 = clerp(moter.C0, CFrame.new(0.0111967381, -1.6377008, -0.318754196, -0.0172117949, 0, -0.999851942, 0.999851942, 0, -0.0172117949, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1212. end
  1213. end
  1214. Humanoid.WalkSpeed = 9
  1215. attack = false
  1216. end
  1217.  
  1218. local Grabbed = false
  1219.  
  1220. function hedshoot()
  1221. attack = true
  1222.  
  1223. --local GGyro = Instance.new("BodyPosition")
  1224. local grab = nil
  1225. for i, v in pairs(FindNearestTorso(Torso.CFrame.p, 8)) do
  1226. if v:FindFirstChild('Torso') then
  1227. Grabbed = true
  1228. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=260430060", v.Torso, 4.5, .8)
  1229. grab = v
  1230. end
  1231. end
  1232. Effects.Wave.Create(BrickColor.new("Really black"), RootPart.CFrame * CFrame.Angles(0,math.rad(90),math.rad(90)), .5, .5, .5, 1, .2, 1, 0.07)
  1233. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=120766256", RootPart, 4.5, .68)
  1234. for i = 0, 1, 0.1 do
  1235. swait()
  1236. if Grabbed == true then
  1237. grab.Humanoid.PlatformStand = true
  1238. --GGyro.position = Partss.Position
  1239. --GGyro.Parent = grab.Head
  1240. grab.Torso.CFrame = Partss.CFrame * CFrame.Angles(0,math.rad(-90),0)
  1241. end
  1242. PlayAnimationFromTable({
  1243. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1244. CFrame.new(0.0029296279, 1.47845411, -0.120581962, 0.0750327855, 0.428286105, -0.900522709, 0.166523039, 0.885005891, 0.434781253, 0.983178616, -0.18258062, -0.00491504371) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1245. CFrame.new(1.96751118, 0.433084905, -0.278422326, 0.305184275, -0.951701581, -0.033564698, 0.012345003, 0.0391969904, -0.999155343, 0.952213347, 0.304512084, 0.0237110667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1246. CFrame.new(-1.66092706, 0.266950369, 2.51774691e-06, 0.876968205, 0.480548859, -2.5331974e-06, -0.480548888, 0.876968026, -7.03267551e-06, -1.13248825e-06, 7.38352537e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1247. CFrame.new(0.146832585, -1.7542398, 0.105335698, 0.266426086, 0.491796821, -0.828946948, 0.0135936746, 0.8580302, 0.513420045, 0.96375972, -0.148056909, 0.221916124) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1248. CFrame.new(-1.09110987, -1.74702656, 0.342675447, 0.765578806, 0.632523358, 0.117487431, -0.642276406, 0.740949869, 0.196148768, 0.0370163769, -0.225626737, 0.973510265) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1249. }, .3, false)
  1250. RootPart.Velocity = RootPart.CFrame.lookVector * 180
  1251.  
  1252. moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1253. end
  1254. if Grabbed == true then
  1255. Humanoid.WalkSpeed = 0
  1256. for i = 0, .3, 0.1 do
  1257. swait()
  1258. if Grabbed == true then
  1259. grab.Humanoid.PlatformStand = true
  1260. --GGyro.position = Partss.Position
  1261. --GGyro.Parent = grab.Head
  1262. grab.Torso.CFrame = Partss.CFrame * CFrame.Angles(0,math.rad(-90),0)
  1263. end
  1264. PlayAnimationFromTable({
  1265. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1266. CFrame.new(0.0029296279, 1.47845411, -0.120581962, 0.0750327855, 0.428286105, -0.900522709, 0.166523039, 0.885005891, 0.434781253, 0.983178616, -0.18258062, -0.00491504371) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1267. CFrame.new(1.96751118, 0.433084905, -0.278422326, 0.305184275, -0.951701581, -0.033564698, 0.012345003, 0.0391969904, -0.999155343, 0.952213347, 0.304512084, 0.0237110667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1268. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1269. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1270. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1271. }, .3, false)
  1272. moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1273. end
  1274. if grab.Name ~= "pdnghiaqoi" then
  1275. local partasdeff = Instance.new("ParticleEmitter",grab.Torso)
  1276. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1277. partasdeff.LightEmission = .1
  1278. partasdeff.Size = NumberSequence.new(0.2)
  1279. partasdeff.Texture = "http://www.roblox.com/asset/?ID=771221224"
  1280. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1281. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1282. partasdeff.Transparency = bbb
  1283. partasdeff.Size = aaa
  1284. partasdeff.ZOffset = .9
  1285. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1286. partasdeff.LockedToPart = false
  1287. partasdeff.EmissionDirection = "Back"
  1288. partasdeff.Lifetime = NumberRange.new(1, 2)
  1289. partasdeff.Rate = 1000
  1290. partasdeff.Rotation = NumberRange.new(-100, 100)
  1291. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1292. partasdeff.Speed = NumberRange.new(10)
  1293. partasdeff.VelocitySpread = 20
  1294. partasdeff.Enabled=false
  1295. sel = math.random(1,5)
  1296. if sel == 1 then
  1297. chatfunc("You're done for.")
  1298. elseif sel == 2 then
  1299. chatfunc("You asked for it.")
  1300. elseif sel == 3 then
  1301. chatfunc("Goodbye.")
  1302. elseif sel == 4 then
  1303. chatfunc("Game, over.")
  1304. elseif sel == 5 then
  1305. chatfunc("Heh..")
  1306. end
  1307. for i = 0, 2, 0.1 do
  1308. swait()
  1309. if Grabbed == true then
  1310. grab.Humanoid.PlatformStand = true
  1311. --GGyro.position = Partss.Position
  1312. --GGyro.Parent = grab.Head
  1313. grab.Torso.CFrame = Partss.CFrame * CFrame.Angles(0,math.rad(-90),0)
  1314. end
  1315. PlayAnimationFromTable({
  1316. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1317. CFrame.new(-0.0791492164, 1.44711375, -0.0994036943, 0.0100336075, -0.292051941, -0.95634979, -0.000366999942, 0.956396878, -0.29207015, 0.999949574, 0.00328149647, 0.00948894024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1318. CFrame.new(1.94523025, 1.02494264, -0.272673488, 0.287940055, -0.795002162, 0.533912063, 0.0434400104, -0.546107173, -0.836588264, 0.956662774, 0.264080375, -0.122711219) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1319. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1320. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1321. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1322. }, .1, false)
  1323. moter.C0 = clerp(moter.C0, CFrame.new(0.0111939851, -1.63769794, -0.31875661, -0.0172049776, -1.39437616e-05, -0.999852121, 0.999852002, 5.96046448e-06, -0.0172049757, 6.16908073e-06, -1, 1.38394535e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1324. end
  1325. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  1326. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  1327. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  1328. dmg(grab)
  1329. grab.Head.Velocity = grab.Head.CFrame.lookVector * -60
  1330. partasdeff.Enabled=true
  1331. for i = 0, 1, 0.1 do
  1332. swait()
  1333. PlayAnimationFromTable({
  1334. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1335. CFrame.new(-0.0791492164, 1.44711375, -0.0994036943, 0.0100336075, -0.292051941, -0.95634979, -0.000366999942, 0.956396878, -0.29207015, 0.999949574, 0.00328149647, 0.00948894024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1336. CFrame.new(1.95760894, 1.20200562, -0.275867403, 0.278526366, -0.669772983, 0.688351095, 0.0506580099, -0.705469668, -0.706927419, 0.959091723, 0.23176837, -0.162562534) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1337. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1338. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1339. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1340. }, .3, false)
  1341. moter.C0 = clerp(moter.C0, CFrame.new(0.0111932531, -1.63769579, -0.318755656, -0.0172050633, -1.61863863e-05, -0.999852121, 0.999851882, 5.15580177e-06, -0.017205067, 5.453825e-06, -1, 1.60960481e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1342. end
  1343. partasdeff.Enabled=false
  1344. for i = 0, 2.5, 0.1 do
  1345. swait()
  1346. PlayAnimationFromTable({
  1347. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1348. CFrame.new(-0.0791492164, 1.44711375, -0.0994036943, 0.0100336075, -0.292051941, -0.95634979, -0.000366999942, 0.956396878, -0.29207015, 0.999949574, 0.00328149647, 0.00948894024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1349. CFrame.new(1.94523025, 1.02494264, -0.272673488, 0.287940055, -0.795002162, 0.533912063, 0.0434400104, -0.546107173, -0.836588264, 0.956662774, 0.264080375, -0.122711219) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1350. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1351. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1352. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1353. }, .2, false)
  1354. moter.C0 = clerp(moter.C0, CFrame.new(0.0111939851, -1.63769794, -0.31875661, -0.0172049776, -1.39437616e-05, -0.999852121, 0.999852002, 5.96046448e-06, -0.0172049757, 6.16908073e-06, -1, 1.38394535e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1355. end
  1356. coroutine.wrap(function()
  1357. wait(2)
  1358. partasdeff:Remove()
  1359. end)()
  1360. else
  1361. grab.Humanoid.PlatformStand = false
  1362. for i = 0, 3, 0.1 do
  1363. swait()
  1364. PlayAnimationFromTable({
  1365. CFrame.new(0.104280457, -1.46030498e-22, -0.179343686, 0.249860913, 5.18448626e-22, 0.968281686, -5.82335151e-22, 1, -5.29395592e-22, -0.968281686, -3.70576914e-22, 0.249860913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1366. CFrame.new(0.00671941042, 1.48144531, -0.121562012, 0.0679168552, 0.388981611, -0.918738663, 0.158512011, 0.904961228, 0.394866198, 0.985018492, -0.172449201, -0.000196114182) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1367. CFrame.new(1.5714488, -0.100437641, -0.219321564, 0.297819793, -0.653239965, -0.696118593, -0.0311920028, 0.722160041, -0.691022456, 0.954112411, 0.227513462, 0.194697708) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1368. CFrame.new(-1.5814501, 0.177012652, 5.41775626e-06, 0.939689815, 0.342028022, -2.68220901e-06, -0.342027992, 0.939689755, -6.1805149e-06, 4.17232513e-07, 6.72787428e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1369. CFrame.new(0.569012046, -1.89856982, -0.00933695585, 0.266445845, -0.0764764398, -0.960811257, 0.0135949478, 0.997046292, -0.075590536, 0.963754177, 0.00707861409, 0.266698539) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1370. CFrame.new(-0.849534154, -2.01595497, 0.241721377, 0.948572636, 0.308689058, 0.070150286, -0.312330276, 0.948733151, 0.0485308319, -0.0515729487, -0.067945078, 0.996355295) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1371. }, .1, false)
  1372. moter.C0 = clerp(moter.C0, CFrame.new(0.0111981034, -1.63767779, -0.318741798, -0.0172085222, -1.4077872e-05, -0.999851882, 0.999851942, 7.4505806e-06, -0.0172085222, 7.68899918e-06, -1.00000012, 1.39512122e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1373. end
  1374. sel = math.random(1,3)
  1375. if sel == 1 then
  1376. chatfunc("I'm stupid...")
  1377. elseif sel == 2 then
  1378. chatfunc("What am I even doing...?")
  1379. elseif sel == 3 then
  1380. chatfunc("...Silly me.")
  1381. end
  1382. for i = 0, 5, 0.1 do
  1383. swait()
  1384. PlayAnimationFromTable({
  1385. CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1386. CFrame.new(-0.0399715528, 1.42130852, -0.217550665, 0.985933542, -0.136098281, -0.097015582, 0.166522697, 0.849608123, 0.500436008, 0.0143167432, -0.509551942, 0.860320628) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1387. CFrame.new(1.57258642, 0.0433240086, 3.83948304e-08, 0.990993857, -0.133906633, -2.60571618e-08, 0.133906662, 0.990993977, 5.96046341e-08, 1.78410318e-08, -6.25570422e-08, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1388. CFrame.new(-0.693957031, 0.999676406, -0.811627388, 0.817211449, -0.569911301, -0.0858340934, -0.499626935, -0.626295447, -0.598442137, 0.287295371, 0.531934083, -0.796558976) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1389. CFrame.new(0.540301144, -1.99792778, 1.70425119e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1390. CFrame.new(-0.539563119, -1.99793291, 1.9016752e-06, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1391. }, .3, false)
  1392. moter.C0 = clerp(moter.C0, CFrame.new(0.0111991819, -1.63769639, -0.318748534, -0.0172109455, -5.96046448e-08, -0.999852002, 0.999852061, -1.19209318e-07, -0.0172108412, 5.96046519e-08, -0.99999994, -1.19209275e-07) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1393. end
  1394. end
  1395. end
  1396. --GGyro.Parent = nil
  1397. attack = false
  1398. Grabbed = false
  1399. Humanoid.WalkSpeed = 9
  1400.  
  1401. end
  1402. function moarblood()
  1403. attack = true
  1404. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=541710285", Character, 3, 1)
  1405. RootPart.CFrame = targetted.Torso.CFrame * CFrame.new(0,0,4)
  1406. local k = New("Part",LeftArm,"k",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Transparency = 1,Transparency = 1,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.221472204, 0.221472189),CFrame = CFrame.new(4.93319941, -1.31948221, -45.7696877, 0.141969427, -5.55023435e-05, -0.989871144, 0.989874005, 1.80069164e-05, 0.141970903, 1.06166653e-05, -1.00000143, 5.59078326e-05),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.6, 0.164706, 0.207843),})
  1407. mot = New("Weld",k,"mot",{Part0 = k,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.141969457, 0.989873946, 1.06166663e-05, -5.55023507e-05, 1.80069164e-05, -1.00000167, -0.989871264, 0.141970903, 5.59078399e-05),C1 = CFrame.new(6.67572021e-06, -1.40000057, -3.81469727e-06, 0.989870846, -0.14197053, -1.2531201e-06, 0.141970515, 0.989870906, 1.03843358e-05, -2.33842215e-07, -1.04570581e-05, 0.99999994),})
  1408. wait(.5)
  1409. for i = 0, 0.15, 0.1 do
  1410. swait()
  1411. PlayAnimationFromTable({
  1412. CFrame.new(0.0246932413, -0.0966757834, -0.0092370566, 0.713696778, 5.59592329e-22, 0.700454772, -9.27150216e-22, 1, 1.45779223e-22, -0.700454772, -7.53468894e-22, 0.713696778) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1413. CFrame.new(0.098094359, 1.53651738, -0.281765848, 0.593379974, 0.280785412, -0.754360616, -0.0276839901, 0.943748772, 0.329502523, 0.804446399, -0.174636483, 0.567774832) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1414. CFrame.new(1.58677018, 0.143787161, 0.0495693758, 0.968102753, -0.250522822, -0.00394502282, 0.250228018, 0.965921044, 0.0662006512, -0.0127741396, -0.0650762022, 0.997798622) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1415. CFrame.new(-1.74332106, 0.446618229, -0.859300971, 0.795205951, 0.606264353, -0.0095520094, -0.0538869984, 0.0549720451, -0.997032762, -0.603940368, 0.793361068, 0.0763838589) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1416. CFrame.new(0.648194611, -1.97843742, -0.088139981, 0.954304218, -0.129303336, -0.269414723, 0.107585981, 0.989748061, -0.0939367935, 0.278798997, 0.0606590137, 0.958431959) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1417. CFrame.new(-0.671899676, -2.02211809, 0.00866907835, 0.94230175, 0.108399026, -0.316728801, -0.108764999, 0.993929207, 0.0165804606, 0.316603303, 0.0188252106, 0.948371291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1418. }, .2, false)
  1419. moter.C0 = clerp(moter.C0, CFrame.new(0.0111978557, -1.63769853, -0.318748116, -0.0172083378, 3.06963921e-06, -0.999852002, 0.999851942, -2.01165676e-07, -0.0172083378, -2.4586916e-07, -1, -3.09944153e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1420. end
  1421. if targetted.Name ~= "pdnghiaqoi" then
  1422. local grab = nil
  1423. for i, v in pairs(FindNearestTorso(Torso.CFrame.p, 7)) do
  1424. if v:FindFirstChild('Head') then
  1425. Grabbed = true
  1426. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=260430060", v.Head, 4.5, .8)
  1427. grab = v
  1428. end
  1429. end
  1430. Humanoid.WalkSpeed = 9
  1431. for i = 0, 2, 0.1 do
  1432. swait()
  1433. if Grabbed == true then
  1434. grab.Humanoid.PlatformStand = true
  1435. --GGyro.position = Partss.Position
  1436. --GGyro.Parent = grab.Head
  1437. grab.Head.CFrame = k.CFrame * CFrame.Angles(0,math.rad(-90),0)
  1438. end
  1439. PlayAnimationFromTable({
  1440. CFrame.new(-0.203895777, -0.0966757089, 0.221102715, 0.860356927, 5.59592329e-22, -0.509691954, -9.74120787e-23, 1, 9.33471908e-22, 0.509691954, -7.53468894e-22, 0.860356927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1441. CFrame.new(-0.0263810754, 1.49789393, -0.36129567, 0.83927381, -0.177804202, 0.513814509, -0.0293880031, 0.928800881, 0.369412124, -0.542914331, -0.325137854, 0.774292946) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1442. CFrame.new(1.70567894, 0.192227185, 0.324310064, 0.910149336, -0.402004361, -0.100104719, 0.41140601, 0.848634601, 0.332512379, -0.0487190783, -0.343819588, 0.937771142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1443. CFrame.new(-0.925376594, 0.275374949, -0.912649989, 0.847262561, -0.507846355, 0.155686736, 0.278232396, 0.17463918, -0.944503605, 0.452473402, 0.84355998, 0.289265245) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1444. CFrame.new(0.648186982, -1.97843516, -0.0881449506, 0.954305232, -0.129303262, -0.269411147, 0.107586049, 0.989748061, -0.0939371213, 0.278795511, 0.0606598109, 0.958432913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1445. CFrame.new(-0.671897829, -2.02211738, 0.00865991414, 0.942302644, 0.108399101, -0.316726208, -0.108764961, 0.993929207, 0.0165806562, 0.31660068, 0.0188247077, 0.948372126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1446. }, .25, false)
  1447. moter.C0 = clerp(moter.C0, CFrame.new(0.0111928731, -1.63769662, -0.318741947, -0.0172089636, 8.2552433e-06, -0.999852061, 0.999852061, 7.4505806e-07, -0.0172089189, 5.66244125e-07, -1.00000012, -8.2552433e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1448. end
  1449. if Grabbed == true then
  1450. sel = math.random(1,5)
  1451. if sel == 1 then
  1452. chatfunc("Surprised?")
  1453. elseif sel == 2 then
  1454. chatfunc("What were you looking at?")
  1455. elseif sel == 3 then
  1456. chatfunc("Looking for me?")
  1457. elseif sel == 4 then
  1458. chatfunc("You're hopeless.")
  1459. elseif sel == 5 then
  1460. chatfunc("Hmph.")
  1461. end
  1462. local partasdeff = Instance.new("ParticleEmitter",targetted.Head)
  1463. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1464. partasdeff.LightEmission = .1
  1465. partasdeff.Size = NumberSequence.new(0.2)
  1466. partasdeff.Texture = "http://www.roblox.com/asset/?ID=771221224"
  1467. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1468. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1469. partasdeff.Transparency = bbb
  1470. partasdeff.Size = aaa
  1471. partasdeff.ZOffset = .9
  1472. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1473. partasdeff.LockedToPart = false
  1474. partasdeff.EmissionDirection = "Back"
  1475. partasdeff.Lifetime = NumberRange.new(1, 2)
  1476. partasdeff.Rate = 1000
  1477. partasdeff.Rotation = NumberRange.new(-100, 100)
  1478. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1479. partasdeff.Speed = NumberRange.new(6)
  1480. partasdeff.VelocitySpread = 10000
  1481. partasdeff.Enabled=false
  1482. for i = 0, 2.5, 0.1 do
  1483. swait()
  1484. if Grabbed == true then
  1485. grab.Humanoid.PlatformStand = true
  1486. --GGyro.position = Partss.Position
  1487. --GGyro.Parent = grab.Head
  1488. grab.Head.CFrame = k.CFrame * CFrame.Angles(0,math.rad(-90),0)
  1489. end
  1490. PlayAnimationFromTable({
  1491. CFrame.new(-0.203895777, -0.0966757089, 0.221102715, 0.860356927, 5.59592329e-22, -0.509691954, -9.74120787e-23, 1, 9.33471908e-22, 0.509691954, -7.53468894e-22, 0.860356927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1492. CFrame.new(0.0996288583, 1.46053851, -0.148588806, 0.834862471, 0.0359686315, 0.549282432, -0.0103890011, 0.998714745, -0.0496083908, -0.550360739, 0.0357096791, 0.83416307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1493. CFrame.new(1.70567894, 0.192227185, 0.324310064, 0.910149336, -0.402004361, -0.100104719, 0.41140601, 0.848634601, 0.332512379, -0.0487190783, -0.343819588, 0.937771142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1494. CFrame.new(-1.5511272, 1.22937977, -0.634234905, 0.785770595, 0.333147645, 0.521131098, 0.522403002, -0.808557391, -0.270795107, 0.331149668, 0.485022962, -0.809378147) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1495. CFrame.new(0.648186982, -1.97843516, -0.0881449506, 0.954305232, -0.129303262, -0.269411147, 0.107586049, 0.989748061, -0.0939371213, 0.278795511, 0.0606598109, 0.958432913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1496. CFrame.new(-0.684103072, -2.02189779, 0.0673112273, 0.973016024, 0.108399175, -0.203689545, -0.109960191, 0.993929327, 0.00367253274, 0.202851087, 0.0188243091, 0.979028702) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1497. }, .1, false)
  1498. moter.C0 = clerp(moter.C0, CFrame.new(0.0111928731, -1.63769662, -0.318741947, -0.0172089636, 8.2552433e-06, -0.999852061, 0.999852061, 7.4505806e-07, -0.0172089189, 5.66244125e-07, -1.00000012, -8.2552433e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1499. end
  1500. partasdeff.Enabled=true
  1501. grab.Torso.Transparency = 1
  1502. dmg(grab)
  1503. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=245185986", grab.Head, 4.5, .8)
  1504. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=245185986", grab.Head, 4.5, .8)
  1505.  
  1506. coroutine.wrap(function()
  1507. wait(.4)
  1508. partasdeff.Enabled=false
  1509. end)()
  1510. for i = 0, 3.5, 0.1 do
  1511. swait()
  1512. PlayAnimationFromTable({
  1513. CFrame.new(-0.203895777, -0.0966757089, 0.221102715, 0.860356927, 5.59592329e-22, -0.509691954, -9.74120787e-23, 1, 9.33471908e-22, 0.509691954, -7.53468894e-22, 0.860356927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1514. CFrame.new(0.0996288583, 1.46053851, -0.148588806, 0.834862471, 0.0359686315, 0.549282432, -0.0103890011, 0.998714745, -0.0496083908, -0.550360739, 0.0357096791, 0.83416307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1515. CFrame.new(1.70567894, 0.192227185, 0.324310064, 0.910149336, -0.402004361, -0.100104719, 0.41140601, 0.848634601, 0.332512379, -0.0487190783, -0.343819588, 0.937771142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1516. CFrame.new(-1.40260935, 1.29555511, -0.560751677, 0.832364976, 0.188659444, 0.521130562, 0.370884001, -0.88832134, -0.2707977, 0.411842346, 0.418681324, -0.809378505) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1517. CFrame.new(0.648186982, -1.97843516, -0.0881449506, 0.954305232, -0.129303262, -0.269411147, 0.107586049, 0.989748061, -0.0939371213, 0.278795511, 0.0606598109, 0.958432913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1518. CFrame.new(-0.684103072, -2.02189779, 0.0673112273, 0.973016024, 0.108399175, -0.203689545, -0.109960191, 0.993929327, 0.00367253274, 0.202851087, 0.0188243091, 0.979028702) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1519. }, .3, false)
  1520. moter.C0 = clerp(moter.C0, CFrame.new(0.0111928731, -1.63769662, -0.318741947, -0.0172089636, 8.2552433e-06, -0.999852061, 0.999852061, 7.4505806e-07, -0.0172089189, 5.66244125e-07, -1.00000012, -8.2552433e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1521. end
  1522. end
  1523. else
  1524. Humanoid.WalkSpeed = 9
  1525. for i = 0, 3, 0.1 do
  1526. swait()
  1527. PlayAnimationFromTable({
  1528. CFrame.new(0.0246932413, -0.0966757834, -0.0092370566, 0.713696778, 5.59592329e-22, 0.700454772, -9.27150216e-22, 1, 1.45779223e-22, -0.700454772, -7.53468894e-22, 0.713696778) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1529. CFrame.new(0.098094359, 1.53651738, -0.281765848, 0.593379974, 0.280785412, -0.754360616, -0.0276839901, 0.943748772, 0.329502523, 0.804446399, -0.174636483, 0.567774832) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1530. CFrame.new(1.58677018, 0.143787161, 0.0495693758, 0.968102753, -0.250522822, -0.00394502282, 0.250228018, 0.965921044, 0.0662006512, -0.0127741396, -0.0650762022, 0.997798622) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1531. CFrame.new(-1.74332106, 0.446618229, -0.859300971, 0.795205951, 0.606264353, -0.0095520094, -0.0538869984, 0.0549720451, -0.997032762, -0.603940368, 0.793361068, 0.0763838589) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1532. CFrame.new(0.648194611, -1.97843742, -0.088139981, 0.954304218, -0.129303336, -0.269414723, 0.107585981, 0.989748061, -0.0939367935, 0.278798997, 0.0606590137, 0.958431959) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1533. CFrame.new(-0.671899676, -2.02211809, 0.00866907835, 0.94230175, 0.108399026, -0.316728801, -0.108764999, 0.993929207, 0.0165804606, 0.316603303, 0.0188252106, 0.948371291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1534. }, .2, false)
  1535. moter.C0 = clerp(moter.C0, CFrame.new(0.0111978557, -1.63769853, -0.318748116, -0.0172083378, 3.06963921e-06, -0.999852002, 0.999851942, -2.01165676e-07, -0.0172083378, -2.4586916e-07, -1, -3.09944153e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1536. end
  1537. sel = math.random(1,3)
  1538. if sel == 1 then
  1539. chatfunc("No...")
  1540. elseif sel == 2 then
  1541. chatfunc("Something's wrong...")
  1542. elseif sel == 3 then
  1543. chatfunc("What...?")
  1544. end
  1545. for i = 0, 5, 0.1 do
  1546. swait()
  1547. PlayAnimationFromTable({
  1548. CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1549. CFrame.new(-0.0399715528, 1.42130852, -0.217550665, 0.985933542, -0.136098281, -0.097015582, 0.166522697, 0.849608123, 0.500436008, 0.0143167432, -0.509551942, 0.860320628) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1550. CFrame.new(1.57258642, 0.0433240086, 3.83948304e-08, 0.990993857, -0.133906633, -2.60571618e-08, 0.133906662, 0.990993977, 5.96046341e-08, 1.78410318e-08, -6.25570422e-08, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1551. CFrame.new(-0.693957031, 0.999676406, -0.811627388, 0.817211449, -0.569911301, -0.0858340934, -0.499626935, -0.626295447, -0.598442137, 0.287295371, 0.531934083, -0.796558976) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1552. CFrame.new(0.540301144, -1.99792778, 1.70425119e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1553. CFrame.new(-0.539563119, -1.99793291, 1.9016752e-06, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1554. }, .3, false)
  1555. moter.C0 = clerp(moter.C0, CFrame.new(0.0111991819, -1.63769639, -0.318748534, -0.0172109455, -5.96046448e-08, -0.999852002, 0.999852061, -1.19209318e-07, -0.0172108412, 5.96046519e-08, -0.99999994, -1.19209275e-07) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1556. end
  1557. end
  1558. attack = false
  1559. Grabbed = false
  1560. k:Remove()
  1561. Humanoid.WalkSpeed = 9
  1562. end
  1563.  
  1564. function painlessrain()
  1565. attack = true
  1566. Humanoid.WalkSpeed = 0
  1567. local ref1 = New("Part",m,"ref",{Transparency = 1,Size = Vector3.new(.2,.2,.2),CFrame = Torso.CFrame,Anchored = true,CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  1568.  
  1569. coroutine.wrap(function()
  1570. for i = 0, 4 do
  1571. wait(.2)
  1572. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=199145095", RootPart, 4.5, 1.3)
  1573. end
  1574. end)()
  1575. for i = 0, 4, 0.1 do
  1576. swait()
  1577. PlayAnimationFromTable({
  1578. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1579. CFrame.new(-0.115934461, 1.42953098, -0.0387745127, 0.0422455594, -0.156738758, -0.986736298, 0.091215007, 0.984098434, -0.152414545, 0.994934857, -0.083566308, 0.0558707118) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1580. CFrame.new(1.88563442, 0.849646449, -0.150348112, 0.134151325, -0.917590559, 0.374207288, 0.151069015, -0.354270071, -0.922860146, 0.979378283, 0.180334046, 0.0910937041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1581. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1582. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1583. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1584. }, .07, false)
  1585. moter.C0 = clerp(moter.C0, CFrame.new(0.00354172289, -1.19249964, -0.318736732, -0.017209189, -1.8668361e-06, -0.999851942, 0.999851882, 1.90734863e-06, -0.0172091946, 1.93715096e-06, -1.00000012, 1.82725489e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, math.rad(doe * 22)), 0.3)
  1586. end
  1587. for i = 0, 1.5, 0.1 do
  1588. swait()
  1589. PlayAnimationFromTable({
  1590. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1591. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1592. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1593. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1594. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1595. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1596. }, .2, false)
  1597. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1598. end
  1599. for i = 0, 3 do
  1600. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  1601. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  1602. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  1603. for i = 0, .5, 0.1 do
  1604. swait()
  1605. PlayAnimationFromTable({
  1606. CFrame.new(0.160087422, -3.66470256e-23, -0.0753137618, 0.15316838, 2.95750466e-22, 0.988200247, 9.50818972e-23, 1, -3.14019425e-22, -0.988200247, 1.42057819e-22, 0.15316838) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1607. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1608. CFrame.new(1.46630716, 1.08524323, -0.0336530581, 0.00764143467, -0.0426861309, 0.999059498, 0.0445286781, -0.998082876, -0.0429849848, 0.998979032, 0.0448152684, -0.0057259798) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1609. CFrame.new(-1.53188026, 0.0735908896, 2.69562906e-06, 0.978447855, 0.206495479, 2.48849392e-06, -0.206495419, 0.978447556, -1.05270137e-05, -4.61935997e-06, 9.78633761e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1610. CFrame.new(0.659685254, -2.0274992, -0.0100700259, 0.00885757804, -0.161218897, -0.986879349, 0.00904085487, 0.986890197, -0.161139548, 0.999920309, -0.00749491528, 0.0101990253) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1611. CFrame.new(-0.566697419, -2.04759264, -0.0995131433, 0.988195002, 0.078684561, 0.131453067, -0.0635149851, 0.991233289, -0.115855575, -0.139416695, 0.106138662, 0.984529436) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1612. }, .3, false)
  1613. moter.C0 = clerp(moter.C0, CFrame.new(0.0112046078, -1.63744116, -0.318734497, -0.0172122065, 2.46167183e-05, -0.999852002, 0.999850631, -0.00159030408, -0.0172121339, -0.00159040466, -0.999998927, 2.57790089e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1614. end
  1615. for i = 0, .5, 0.1 do
  1616. swait()
  1617. PlayAnimationFromTable({
  1618. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1619. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1620. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1621. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1622. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1623. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1624. }, .3, false)
  1625. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1626. end
  1627. end
  1628. attack = false
  1629. Humanoid.WalkSpeed = 9
  1630. wait(.4)
  1631. for i = 0, 8 do
  1632. wait(.2)
  1633. mdmg(ref1, 3)
  1634. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=192410089", Character, 3, .7)
  1635. ref1.Position = Mouse.hit.p
  1636. ref1.CFrame = ref1.CFrame * CFrame.new(math.random(-.5,.5),0,math.random(-.5,.5))
  1637. Effects.Cylinder.Create(BrickColor.new("Deep orange"), ref1.CFrame, .5, 9999, .5, 0.5, 0, 0.5, 0.07)
  1638. end
  1639. ref1:Remove()
  1640. end
  1641.  
  1642. function painlessrain2()
  1643. attack = true
  1644. Humanoid.WalkSpeed = 0
  1645. chatfunc("Try dodging THIS.")
  1646. local ref1 = New("Part",m,"ref",{Transparency = 1,Size = Vector3.new(.2,.2,.2),CFrame = Torso.CFrame,Anchored = true,CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  1647.  
  1648. coroutine.wrap(function()
  1649. for i = 0, 4 do
  1650. wait(.2)
  1651. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=199145095", RootPart, 4.5, 1.3)
  1652. end
  1653. end)()
  1654. for i = 0, 4, 0.1 do
  1655. swait()
  1656. PlayAnimationFromTable({
  1657. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1658. CFrame.new(-0.115934461, 1.42953098, -0.0387745127, 0.0422455594, -0.156738758, -0.986736298, 0.091215007, 0.984098434, -0.152414545, 0.994934857, -0.083566308, 0.0558707118) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1659. CFrame.new(1.88563442, 0.849646449, -0.150348112, 0.134151325, -0.917590559, 0.374207288, 0.151069015, -0.354270071, -0.922860146, 0.979378283, 0.180334046, 0.0910937041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1660. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1661. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1662. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1663. }, .07, false)
  1664. moter.C0 = clerp(moter.C0, CFrame.new(0.00354172289, -1.19249964, -0.318736732, -0.017209189, -1.8668361e-06, -0.999851942, 0.999851882, 1.90734863e-06, -0.0172091946, 1.93715096e-06, -1.00000012, 1.82725489e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, math.rad(doe * 22)), 0.3)
  1665. end
  1666. for i = 0, 1.5, 0.1 do
  1667. swait()
  1668. PlayAnimationFromTable({
  1669. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1670. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1671. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1672. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1673. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1674. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1675. }, .2, false)
  1676. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1677. end
  1678. for i = 0, 3 do
  1679. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  1680. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  1681. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  1682. for i = 0, .5, 0.1 do
  1683. swait()
  1684. PlayAnimationFromTable({
  1685. CFrame.new(0.160087422, -3.66470256e-23, -0.0753137618, 0.15316838, 2.95750466e-22, 0.988200247, 9.50818972e-23, 1, -3.14019425e-22, -0.988200247, 1.42057819e-22, 0.15316838) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1686. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1687. CFrame.new(1.46630716, 1.08524323, -0.0336530581, 0.00764143467, -0.0426861309, 0.999059498, 0.0445286781, -0.998082876, -0.0429849848, 0.998979032, 0.0448152684, -0.0057259798) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1688. CFrame.new(-1.53188026, 0.0735908896, 2.69562906e-06, 0.978447855, 0.206495479, 2.48849392e-06, -0.206495419, 0.978447556, -1.05270137e-05, -4.61935997e-06, 9.78633761e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1689. CFrame.new(0.659685254, -2.0274992, -0.0100700259, 0.00885757804, -0.161218897, -0.986879349, 0.00904085487, 0.986890197, -0.161139548, 0.999920309, -0.00749491528, 0.0101990253) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1690. CFrame.new(-0.566697419, -2.04759264, -0.0995131433, 0.988195002, 0.078684561, 0.131453067, -0.0635149851, 0.991233289, -0.115855575, -0.139416695, 0.106138662, 0.984529436) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1691. }, .3, false)
  1692. moter.C0 = clerp(moter.C0, CFrame.new(0.0112046078, -1.63744116, -0.318734497, -0.0172122065, 2.46167183e-05, -0.999852002, 0.999850631, -0.00159030408, -0.0172121339, -0.00159040466, -0.999998927, 2.57790089e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1693. end
  1694. for i = 0, .5, 0.1 do
  1695. swait()
  1696. PlayAnimationFromTable({
  1697. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1698. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1699. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1700. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1701. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1702. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1703. }, .3, false)
  1704. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1705. end
  1706. end
  1707. attack = false
  1708. Humanoid.WalkSpeed = 9
  1709. wait(.4)
  1710. for i = 0, 150 do
  1711. wait(.001)
  1712. mdmg(ref1, 3)
  1713. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=192410089", Character, 3, .7)
  1714. ref1.Position = Mouse.hit.p
  1715. ref1.CFrame = ref1.CFrame * CFrame.new(math.random(-.5,.5),0,math.random(-.5,.5))
  1716. Effects.Cylinder.Create(BrickColor.new("Deep orange"), ref1.CFrame, .5, 9999, .5, 0.5, 0, 0.5, 0.07)
  1717. end
  1718. ref1:Remove()
  1719. chatfunc("...")
  1720. wait(1.2)
  1721. chatfunc("...Impressive.")
  1722. end
  1723.  
  1724. function TargetSelect(person)
  1725. local dd=coroutine.wrap(function()
  1726. if targetted ~= person then
  1727. targetted = person
  1728. img2.Size = UDim2.new(1,0,1,0)
  1729. img2.ImageTransparency = 0
  1730. img2.Position = UDim2.new(0,0,0,0)
  1731. img3.Size = UDim2.new(1,0,1,0)
  1732. img3.ImageTransparency = 0
  1733. img3.Position = UDim2.new(0,0,0,0)
  1734. for i = 0, 0.001, 0.1 do
  1735. swait()
  1736. img2.Size = img2.Size + UDim2.new(.05,0,.05,0)
  1737. img2.Position = img2.Position + UDim2.new(-.025,0,-.025,0)
  1738. img2.ImageTransparency = img2.ImageTransparency + 0.05
  1739. end
  1740. end
  1741. end)
  1742. dd()
  1743. end
  1744.  
  1745. function LockOn()
  1746. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
  1747. TargetSelect(Mouse.Target.Parent)
  1748. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=263321145", Character, 5, 1)
  1749. chatfunc("Target locked.")
  1750. end
  1751. end
  1752.  
  1753.  
  1754. function ofmoosic() -- 2 lazi hoh
  1755. delays = true
  1756. while wait() and kkk and kkk.Volume >= 0.02 do
  1757. kkk.Volume = kkk.Volume - 0.05
  1758. end
  1759. wait(0.1)
  1760. kkk.Pitch = 0
  1761. kkk.PlaybackSpeed = 0
  1762. play = false
  1763. delays = false
  1764. end
  1765. function onmoosic()
  1766. delays = true
  1767. kkk.Pitch = .6
  1768. kkk.PlaybackSpeed = .6
  1769. while wait() and kkk and kkk.Volume <= 1.5 do
  1770. kkk.Volume = kkk.Volume + 0.05
  1771. end
  1772. wait()
  1773. play = true
  1774. delays = false
  1775. end
  1776. Mouse.Button1Down:connect(function()
  1777. if attack == false and targetted ~= nil then
  1778. attackone()
  1779. end
  1780. end)
  1781.  
  1782. Mouse.KeyDown:connect(function(k)
  1783. k = k:lower()
  1784. if attack == false and k == 'q' then
  1785. LockOn()
  1786. end
  1787. if k == 'z' and attack == false then
  1788. hedshoot()
  1789. elseif k == 'x' and attack == false and targetted ~= nil then
  1790. moarblood()
  1791. elseif k == 'c' and attack == false then
  1792. painlessrain()
  1793. elseif k == 'v' and attack == false then
  1794. painlessrain2()
  1795. elseif k == 'g' and delays == false and Character.Name == "alexb7711" then
  1796. delays = true
  1797. chatfunc("Hey, err..")
  1798. wait(2)
  1799. chatfunc("I wanna ask you something.")
  1800. wait(2)
  1801. chatfunc("Would you be my..")
  1802. wait(1.1)
  1803. chatfunc("Sacrific--")
  1804. wait(.6)
  1805. chatfunc("...")
  1806. wait(1.8)
  1807. chatfunc("Forget that.")
  1808. delays = false
  1809. elseif k == 'm' and play == true and delays == false then
  1810. ofmoosic()
  1811. elseif k == 'm' and play == false and delays == false then
  1812. onmoosic()
  1813. end
  1814. end)
  1815.  
  1816. kkk = Instance.new("Sound",Character)
  1817. kkk.Volume = 5
  1818. kkk.PlaybackSpeed = 0
  1819. kkk.Pitch = -3
  1820. kkk.SoundId = "rbxassetid:/930968689"
  1821. kkk:Play()
  1822. kkk.Name = "a"
  1823. kkk.Looped = true
  1824.  
  1825.  
  1826. coroutine.wrap(function()
  1827. while true do
  1828. swait()
  1829. for i, v in pairs(Character.WeaponModel:GetChildren()) do
  1830. if v:IsA("Part") then
  1831. v.Anchored = false
  1832. end
  1833. end
  1834. for i, v in pairs(Character:GetChildren()) do
  1835. if v:IsA("Part") then
  1836. v.Anchored = false
  1837. elseif v:IsA("Accessory") then
  1838. v.Handle.Anchored = false
  1839. end
  1840. end
  1841. end
  1842. end)()
  1843. coroutine.wrap(function()
  1844. while 1 do
  1845. swait()
  1846. if doe <= 360 then
  1847. doe = doe + 2
  1848. else
  1849. doe = 0
  1850. end
  1851. end
  1852. end)()
  1853. while true do
  1854. swait()
  1855. for i, v in pairs(Character:GetChildren()) do
  1856. if v:IsA("Part") then
  1857. v.Material = "Neon"
  1858. elseif v:IsA("Accessory") then
  1859. v:WaitForChild("Handle").Material = "Neon"
  1860. end
  1861. end
  1862. while true do
  1863. swait()
  1864. Character.Humanoid.MaxHealth = math.huge
  1865. Character.Humanoid.Health = math.huge
  1866. imgl.Rotation = imgl.Rotation + 3
  1867. imgf.Rotation = imgf.Rotation + 3
  1868. img2.Rotation = img2.Rotation + 3
  1869. img3.Rotation = img3.Rotation + 3
  1870. if targetted ~= nil then
  1871. abss.Adornee = targetted:FindFirstChild("Torso") or targetted:FindFirstChild("UpperTorso")
  1872. abss.Enabled = true
  1873. elseif targetted == nil then
  1874. abss.Adornee = nil
  1875. abss.Enabled = false
  1876. end
  1877.  
  1878. while true and imgl.Rotation >= 360 do
  1879. imgl.Rotation = 0
  1880. imgf.Rotation = 0
  1881. img2.Rotation = 0
  1882. img3.Rotation = 0
  1883. end
  1884. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1885. velocity = RootPart.Velocity.y
  1886. sine = sine + change
  1887. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  1888. if RootPart.Velocity.y > 1 and hit == nil then
  1889. Anim = "Jump"
  1890. if attack == false then
  1891. PlayAnimationFromTable({
  1892. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1893. CFrame.new(-0.0579944476, 1.48445117, -0.000906195492, 0.999631822, -0.0259140469, -0.00804444961, 0.0262291897, 0.998776913, 0.0419151038, 0.0069484422, -0.0421099029, 0.999089062) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1894. CFrame.new(1.68067598, 0.167780995, 5.50026158e-08, 0.965881884, -0.258982956, -3.41060513e-13, 0.258982956, 0.965881884, 4.47034836e-07, 8.49010675e-08, 3.16640808e-07, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1895. CFrame.new(-1.67620921, 0.188169807, -3.04922651e-07, 0.95698452, 0.290146649, -2.61441073e-07, -0.290146649, 0.95698452, -1.0069979e-05, -2.89639524e-06, 1.04542296e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1896. CFrame.new(0.537238836, -1.93797374, 0.176598221, 0.998698533, -0.0506777391, -0.00574572897, 0.0510024093, 0.992341697, 0.112511501, -6.35704041e-08, -0.112657718, 0.993634105) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1897. CFrame.new(-0.536944568, -1.94808352, 0.126473114, 0.998626292, 0.0520468242, 0.00521374354, -0.0523067154, 0.993665218, 0.0995327011, -3.84102691e-07, -0.099668026, 0.995023906) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1898. }, .3, false)
  1899. moter.C0 = clerp(moter.C0, CFrame.new(0.0111988392, -1.63769972, -0.318750381, -0.0172117054, 0, -0.999851942, 0.999851942, 0, -0.0172116756, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1900. end
  1901. elseif RootPart.Velocity.y < -1 and hit == nil then
  1902. Anim = "Fall"
  1903. if attack == false then
  1904. PlayAnimationFromTable({
  1905. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1906. CFrame.new(-0.0576509275, 1.50532985, -0.129091382, 0.999631822, -0.0231846143, -0.0140984114, 0.0262298863, 0.958684564, 0.283279002, 0.00694822101, -0.283544153, 0.958935201) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1907. CFrame.new(1.68622994, 0.21415168, 7.02040666e-08, 0.881990671, -0.471266806, -3.41060513e-13, 0.471266806, 0.881990671, 4.47034836e-07, 1.54493137e-07, 2.89139166e-07, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1908. CFrame.new(-1.72513735, 0.240890861, 2.54038241e-07, 0.814108491, 0.58071363, -2.61430017e-07, -0.580713034, 0.814108849, -1.00698489e-05, -6.08482924e-06, 8.98058715e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1909. CFrame.new(0.536720514, -1.92783141, 0.223740995, 0.998698533, -0.0498600565, -0.0107376017, 0.0510031059, 0.976314366, 0.210260883, -3.04512355e-07, -0.210534185, 0.977587521) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1910. CFrame.new(-0.535922825, -1.92850935, 0.222419083, 0.99863112, 0.0512506701, 0.0104565797, -0.0523065142, 0.978474379, 0.199629858, -3.7062793e-07, -0.199902818, 0.97981596) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1911. }, .3, false)
  1912. moter.C0 = clerp(moter.C0, CFrame.new(0.0112015437, -1.63769758, -0.318750381, -0.0172110498, 0, -0.999851942, 0.999851942, 0, -0.0172110498, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1913. end
  1914. elseif Torsovelocity < 1 and hit ~= nil then
  1915. Anim = "Idle"
  1916. if attack == false then
  1917. change = 1
  1918. PlayAnimationFromTable({
  1919. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1920. CFrame.new(-0.0575585738, 1.52553558, -0.218724757, 0.985934377, -0.143356442, -0.0859283879, 0.166522771, 0.886584163, 0.431554198, 0.0143168001, -0.439792335, 0.897985697) * CFrame.new(0, -.05- .05 * math.cos((sine) / 55), 0- .05 * math.cos((sine) / 55)) * CFrame.Angles(math.rad(0 - 5 * math.cos((sine) / 55)), 0, 0),
  1921. CFrame.new(1.54809988, 0.041232653, 1.35168499e-08, 0.996376455, -0.0850530341, -3.41060513e-13, 0.0850530341, 0.996376455, 4.47034836e-07, 2.78823862e-08, 3.26637689e-07, 1.00000024) * CFrame.new(0- 0.025 * math.cos((sine) / 45), 0, 0) * CFrame.Angles(0, 0, 0- 0.05 * math.cos((sine) / 45)),
  1922. CFrame.new(-1.53598976, 0.0413191095, -1.86092848e-06, 0.995650649, 0.0931596532, -2.61508148e-07, -0.0931649953, 0.995651186, -1.00695124e-05, -7.49969331e-07, 1.08217946e-05, 1.00000024) * CFrame.new(0+ 0.025 * math.cos((sine) / 45), 0, 0) * CFrame.Angles(0, 0, 0+ 0.05 * math.cos((sine) / 45)),
  1923. CFrame.new(0.540300786, -1.99793816, -9.82598067e-07, 0.998698533, -0.0510031395, 6.36324955e-07, 0.0510031395, 0.998698533, -1.00461093e-05, -8.35937328e-08, 1.08393433e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1924. CFrame.new(-0.539563596, -1.99794078, 1.12228372e-06, 0.998635888, 0.0523072146, -1.77852357e-07, -0.0523072146, 0.998635888, -1.00715051e-05, -3.89727461e-07, 1.08406466e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1925. }, .3, false)
  1926. moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1927. end
  1928. elseif Torsovelocity > 2 and hit ~= nil then
  1929. Anim = "Walk"
  1930. if attack == false then
  1931. PlayAnimationFromTable({
  1932. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0- .08 * math.cos((sine) / 5), 0) * CFrame.Angles(0, 0, 0),
  1933. CFrame.new(-0.0595112406, 1.55331731, -0.0425721854, 0.999631822, -0.0248252042, -0.010953242, 0.0262294486, 0.987443328, 0.155781403, 0.00694842171, -0.156010598, 0.987731278) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1934. CFrame.new(1.54809988, 0.041232653, 1.35168499e-08, 0.996376455, -0.0850530341, -3.41060513e-13, 0.0850530341, 0.996376455, 4.47034836e-07, 2.78823862e-08, 3.26637689e-07, 1.00000024) * CFrame.new(0, 0, 0- .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 10)), 0, 0),
  1935. CFrame.new(-1.53598976, 0.0413191095, -1.86092848e-06, 0.995650649, 0.0931596532, -2.61508148e-07, -0.0931649953, 0.995651186, -1.00695124e-05, -7.49969331e-07, 1.08217946e-05, 1.00000024) * CFrame.new(0, 0, 0+ .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 10)), 0, 0),
  1936. CFrame.new(0.540300786, -1.99793816, -9.82598067e-07, 0.998698533, -0.0510031395, 6.36324955e-07, 0.0510031395, 0.998698533, -1.00461093e-05, -8.35937328e-08, 1.08393433e-05, 1.00000024) * CFrame.new(0, 0, 0+ .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 10)), 0, 0),
  1937. CFrame.new(-0.539563596, -1.99794078, 1.12228372e-06, 0.998635888, 0.0523072146, -1.77852357e-07, -0.0523072146, 0.998635888, -1.00715051e-05, -3.89727461e-07, 1.08406466e-05, 1.00000024) * CFrame.new(0, 0, 0- .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 10)), 0, 0),
  1938. }, .3, false)
  1939. moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1940. end
  1941. end
  1942. if 0 < #Effects then
  1943. for e = 1, #Effects do
  1944. if Effects[e] ~= nil then
  1945. local Thing = Effects[e]
  1946. if Thing ~= nil then
  1947. local Part = Thing[1]
  1948. local Mode = Thing[2]
  1949. local Delay = Thing[3]
  1950. local IncX = Thing[4]
  1951. local IncY = Thing[5]
  1952. local IncZ = Thing[6]
  1953. if Thing[2] == "Shoot" then
  1954. local Look = Thing[1]
  1955. local move = 30
  1956. if Thing[8] == 3 then
  1957. move = 10
  1958. end
  1959. local hit, pos = rayCast(Thing[4], Thing[1], move, m)
  1960. if Thing[10] ~= nil then
  1961. da = pos
  1962. cf2 = CFrame.new(Thing[4], Thing[10].Position)
  1963. cfa = CFrame.new(Thing[4], pos)
  1964. tehCF = cfa:lerp(cf2, 0.2)
  1965. Thing[1] = tehCF.lookVector
  1966. end
  1967. local mag = (Thing[4] - pos).magnitude
  1968. Effects["Head"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * 5, 1, 0.5, 0, 0.5, 0.2)
  1969. if Thing[8] == 2 then
  1970. Effects["Ring"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0) * CFrame.fromEulerAnglesXYZ(1.57, 0, 0), 1, 1, 0.1, 0.5, 0.5, 0.1, 0.1, 1)
  1971. end
  1972. Thing[4] = Thing[4] + Look * move
  1973. Thing[3] = Thing[3] - 1
  1974. if 2 < Thing[5] then
  1975. Thing[5] = Thing[5] - 0.3
  1976. Thing[6] = Thing[6] - 0.3
  1977. end
  1978. if hit ~= nil then
  1979. Thing[3] = 0
  1980. if Thing[8] == 1 or Thing[8] == 3 then
  1981. Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  1982. else
  1983. if Thing[8] == 2 then
  1984. Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  1985. if (hit.Parent:findFirstChild("Humanoid")) ~= nil or (hit.Parent.Parent:findFirstChild("Humanoid")) ~= nil then
  1986. ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  1987. ref.Anchored = true
  1988. ref.CFrame = CFrame.new(pos)
  1989. CFuncs["Sound"].Create("161006093", ref, 1, 1.2)
  1990. game:GetService("Debris"):AddItem(ref, 0.2)
  1991. Effects["Block"].Create(Torso.BrickColor, CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 1, 10, 10, 10, 0.1, 2)
  1992. Effects["Ring"].Create(BrickColor.new("Bright yellow"), CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 0.1, 4, 4, 0.1, 0.1)
  1993. MagnitudeDamage(ref, 15, Thing[5] / 1.5, Thing[6] / 1.5, 0, "Normal", "", 1)
  1994. end
  1995. end
  1996. end
  1997. ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  1998. ref.Anchored = true
  1999. ref.CFrame = CFrame.new(pos)
  2000. Effects["Sphere"].Create(Torso.BrickColor, CFrame.new(pos), 5, 5, 5, 1, 1, 1, 0.07)
  2001. game:GetService("Debris"):AddItem(ref, 1)
  2002. end
  2003. if Thing[3] <= 0 then
  2004. table.remove(Effects, e)
  2005. end
  2006. end
  2007. do
  2008. do
  2009. if Thing[2] == "FireWave" then
  2010. if Thing[3] <= Thing[4] then
  2011. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(0, 1, 0)
  2012. Thing[3] = Thing[3] + 1
  2013. Thing[6].Scale = Thing[6].Scale + Vector3.new(Thing[5], 0, Thing[5])
  2014. else
  2015. Part.Parent = nil
  2016. table.remove(Effects, e)
  2017. end
  2018. end
  2019. if Thing[2] ~= "Shoot" and Thing[2] ~= "Wave" and Thing[2] ~= "FireWave" then
  2020. if Thing[1].Transparency <= 1 then
  2021. if Thing[2] == "Block1" then
  2022. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2023. Mesh = Thing[7]
  2024. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2025. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2026. else
  2027. if Thing[2] == "Block2" then
  2028. Thing[1].CFrame = Thing[1].CFrame
  2029. Mesh = Thing[7]
  2030. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2031. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2032. else
  2033. if Thing[2] == "Fire" then
  2034. Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  2035. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2036. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2037. else
  2038. if Thing[2] == "Cylinder" then
  2039. Mesh = Thing[7]
  2040. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2041. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2042. else
  2043. if Thing[2] == "Blood" then
  2044. Mesh = Thing[7]
  2045. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 0.5, 0)
  2046. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2047. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2048. else
  2049. if Thing[2] == "Elec" then
  2050. Mesh = Thing[10]
  2051. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  2052. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2053. else
  2054. if Thing[2] == "Disappear" then
  2055. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2056. else
  2057. if Thing[2] == "Shatter" then
  2058. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2059. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  2060. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  2061. Thing[6] = Thing[6] + Thing[5]
  2062. end
  2063. end
  2064. end
  2065. end
  2066. end
  2067. end
  2068. end
  2069. end
  2070. else
  2071. Part.Parent = nil
  2072. table.remove(Effects, e)
  2073. end
  2074. end
  2075. end
  2076. end
  2077. end
  2078. end
  2079. end
  2080. end
  2081. end
  2082.  
  2083. end
  2084.  
  2085. RAW Paste Data
  2086. --went to public at 10/27/2017 6:35 PM UTC+ 08:00
  2087. print("Psychopath's waifu")
  2088. print("I think ck is going to send me in hell...")
  2089. print("Genocider by ???")
  2090. print("Credit to no one")
  2091. print("Edit by idk")
  2092. wait(1 / 60)
  2093. Effects = { }
  2094. local Player = game.Players.localPlayer
  2095. local Character = Player.Character
  2096. local Humanoid = Character.Humanoid
  2097. local Mouse = Player:GetMouse()
  2098. local LeftArm = Character["Left Arm"]
  2099. local RightArm = Character["Right Arm"]
  2100. local LeftLeg = Character["Left Leg"]
  2101. local RightLeg = Character["Right Leg"]
  2102. local Head = Character.Head
  2103. local Torso = Character.Torso
  2104. local Camera = game.Workspace.CurrentCamera
  2105. local RootPart = Character.HumanoidRootPart
  2106. local RootJoint = RootPart.RootJoint
  2107. local attack = false
  2108. local Anim = 'Idle'
  2109. local attacktype = 1
  2110. local delays = false
  2111. local play = true
  2112. local targetted = nil
  2113. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  2114. local velocity = RootPart.Velocity.y
  2115. local sine = 0
  2116. local change = 1
  2117. local doe = 0
  2118. local Create = LoadLibrary("RbxUtility").Create
  2119. Humanoid.WalkSpeed = 9
  2120. local ff = Instance.new("ForceField")
  2121. ff.Parent = Humanoid
  2122. ff.Visible = false
  2123. local m = Create("Model"){
  2124. Parent = Character,
  2125. Name = "WeaponModel",
  2126. }
  2127.  
  2128. Humanoid.Animator.Parent = nil
  2129. Character.Animate.Parent = nil
  2130.  
  2131. local newMotor = function(part0, part1, c0, c1)
  2132. local w = Create('Motor'){
  2133. Parent = part0,
  2134. Part0 = part0,
  2135. Part1 = part1,
  2136. C0 = c0,
  2137. C1 = c1,
  2138. }
  2139. return w
  2140. end
  2141.  
  2142. function clerp(a, b, t)
  2143. return a:lerp(b, t)
  2144. end
  2145.  
  2146. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  2147. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2148.  
  2149. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  2150. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  2151. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  2152. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  2153. RootJoint.C1 = CFrame.new(0, 0, 0)
  2154. RootJoint.C0 = CFrame.new(0, 0, 0)
  2155. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  2156. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  2157.  
  2158. local rarmc1 = RW.C1
  2159. local larmc1 = LW.C1
  2160. local rlegc1 = RH.C1
  2161. local llegc1 = LH.C1
  2162.  
  2163. local resetc1 = false
  2164.  
  2165. function PlayAnimationFromTable(table, speed, bool)
  2166. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  2167. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  2168. RW.C0 = clerp(RW.C0, table[3], speed)
  2169. LW.C0 = clerp(LW.C0, table[4], speed)
  2170. RH.C0 = clerp(RH.C0, table[5], speed)
  2171. LH.C0 = clerp(LH.C0, table[6], speed)
  2172. if bool == true then
  2173. if resetc1 == false then
  2174. resetc1 = true
  2175. RootJoint.C1 = RootJoint.C1
  2176. Torso.Neck.C1 = Torso.Neck.C1
  2177. RW.C1 = rarmc1
  2178. LW.C1 = larmc1
  2179. RH.C1 = rlegc1
  2180. LH.C1 = llegc1
  2181. end
  2182. end
  2183. end
  2184.  
  2185. ArtificialHB = Create("BindableEvent", script){
  2186. Parent = script,
  2187. Name = "Heartbeat",
  2188. }
  2189.  
  2190. script:WaitForChild("Heartbeat")
  2191.  
  2192. frame = 1 / 30
  2193. tf = 0
  2194. allowframeloss = false
  2195. tossremainder = false
  2196. lastframe = tick()
  2197. script.Heartbeat:Fire()
  2198.  
  2199. game:GetService("RunService").Heartbeat:connect(function(s, p)
  2200. tf = tf + s
  2201. if tf >= frame then
  2202. if allowframeloss then
  2203. script.Heartbeat:Fire()
  2204. lastframe = tick()
  2205. else
  2206. for i = 1, math.floor(tf / frame) do
  2207. script.Heartbeat:Fire()
  2208. end
  2209. lastframe = tick()
  2210. end
  2211. if tossremainder then
  2212. tf = 0
  2213. else
  2214. tf = tf - frame * math.floor(tf / frame)
  2215. end
  2216. end
  2217. end)
  2218.  
  2219. function swait(num)
  2220. if num == 0 or num == nil then
  2221. ArtificialHB.Event:wait()
  2222. else
  2223. for i = 0, num do
  2224. ArtificialHB.Event:wait()
  2225. end
  2226. end
  2227. end
  2228.  
  2229. function RemoveOutlines(part)
  2230. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  2231. end
  2232.  
  2233. CFuncs = {
  2234. ["Part"] = {
  2235. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  2236. local Part = Create("Part"){
  2237. Parent = Parent,
  2238. Reflectance = Reflectance,
  2239. Transparency = Transparency,
  2240. CanCollide = false,
  2241. Locked = true,
  2242. BrickColor = BrickColor.new(tostring(BColor)),
  2243. Name = Name,
  2244. Size = Size,
  2245. Material = Material,
  2246. }
  2247. RemoveOutlines(Part)
  2248. return Part
  2249. end;
  2250. };
  2251.  
  2252. ["Mesh"] = {
  2253. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  2254. local Msh = Create(Mesh){
  2255. Parent = Part,
  2256. Offset = OffSet,
  2257. Scale = Scale,
  2258. }
  2259. if Mesh == "SpecialMesh" then
  2260. Msh.MeshType = MeshType
  2261. Msh.MeshId = MeshId
  2262. end
  2263. return Msh
  2264. end;
  2265. };
  2266.  
  2267. ["Mesh"] = {
  2268. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  2269. local Msh = Create(Mesh){
  2270. Parent = Part,
  2271. Offset = OffSet,
  2272. Scale = Scale,
  2273. }
  2274. if Mesh == "SpecialMesh" then
  2275. Msh.MeshType = MeshType
  2276. Msh.MeshId = MeshId
  2277. end
  2278. return Msh
  2279. end;
  2280. };
  2281.  
  2282. ["Weld"] = {
  2283. Create = function(Parent, Part0, Part1, C0, C1)
  2284. local Weld = Create("Weld"){
  2285. Parent = Parent,
  2286. Part0 = Part0,
  2287. Part1 = Part1,
  2288. C0 = C0,
  2289. C1 = C1,
  2290. }
  2291. return Weld
  2292. end;
  2293. };
  2294.  
  2295. ["Sound"] = {
  2296. Create = function(id, par, vol, pit)
  2297. coroutine.resume(coroutine.create(function()
  2298. local S = Create("Sound"){
  2299. Volume = vol,
  2300. Pitch = pit or 1,
  2301. SoundId = id,
  2302. Parent = par or workspace,
  2303. }
  2304. wait()
  2305. S:play()
  2306. game:GetService("Debris"):AddItem(S, 25)
  2307. end))
  2308. end;
  2309. };
  2310.  
  2311.  
  2312. ["ParticleEmitter"] = {
  2313. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  2314. local fp = Create("ParticleEmitter"){
  2315. Parent = Parent,
  2316. Color = ColorSequence.new(Color1, Color2),
  2317. LightEmission = LightEmission,
  2318. Size = Size,
  2319. Texture = Texture,
  2320. Transparency = Transparency,
  2321. ZOffset = ZOffset,
  2322. Acceleration = Accel,
  2323. Drag = Drag,
  2324. LockedToPart = LockedToPart,
  2325. VelocityInheritance = VelocityInheritance,
  2326. EmissionDirection = EmissionDirection,
  2327. Enabled = Enabled,
  2328. Lifetime = LifeTime,
  2329. Rate = Rate,
  2330. Rotation = Rotation,
  2331. RotSpeed = RotSpeed,
  2332. Speed = Speed,
  2333. VelocitySpread = VelocitySpread,
  2334. }
  2335. return fp
  2336. end;
  2337. };
  2338.  
  2339. CreateTemplate = {
  2340.  
  2341. };
  2342. }
  2343.  
  2344.  
  2345.  
  2346. New = function(Object, Parent, Name, Data)
  2347. local Object = Instance.new(Object)
  2348. for Index, Value in pairs(Data or {}) do
  2349. Object[Index] = Value
  2350. end
  2351. Object.Parent = Parent
  2352. Object.Name = Name
  2353. return Object
  2354. end
  2355.  
  2356.  
  2357. for i,v in pairs(Character:children()) do
  2358. if v:IsA("Hat") then
  2359. v:Destroy()
  2360. end
  2361. end
  2362. for i,v in pairs(Character:children()) do
  2363. if v:IsA("Accessory") then
  2364. v:Destroy()
  2365. end
  2366. end
  2367. for i,v in pairs(Character:children()) do
  2368. if v:IsA("Hair") then
  2369. v:Destroy()
  2370. end
  2371. end
  2372. for i,v in pairs(Character:children()) do
  2373. if v:IsA("Shirt") then
  2374. v:Destroy()
  2375. end
  2376. end
  2377. for i,v in pairs(Character:children()) do
  2378. if v:IsA("Pants") then
  2379. v:Destroy()
  2380. end
  2381. end
  2382. for i,v in pairs(Character:children()) do
  2383. if v:IsA("Decal") then
  2384. v:Destroy()
  2385. end
  2386. end
  2387.  
  2388. ypcall(function()
  2389. shirt = Instance.new("Shirt", Character)
  2390. shirt.Name = "Shirt"
  2391. pants = Instance.new("Pants", Character)
  2392. pants.Name = "Pants"
  2393. Character.Shirt.ShirtTemplate = "rbxassetid://770103213"
  2394. Character.Pants.PantsTemplate = "rbxassetid://797403149"
  2395. end)
  2396. Reaper2 = Instance.new("Model")
  2397. Reaper2.Parent = Character
  2398. Reaper2.Name = "Reaper2"
  2399. rh2 = Instance.new("Part")
  2400. rh2.Parent = Reaper2
  2401. rh2.Locked = true
  2402. rh2.CanCollide = false
  2403. mesh2 = Instance.new("SpecialMesh")
  2404. rh2.formFactor = "Symmetric"
  2405. mesh2.MeshType = "FileMesh"
  2406. mesh2.MeshId = "rbxassetid://755714245"
  2407. mesh2.Parent = rh2
  2408. mesh2.TextureId = "rbxassetid://756275830"
  2409. mesh2.Offset = Vector3.new(-0.05, -1.45, 0.35)
  2410. mesh2.Scale = Vector3.new(0.066, 0.066, 0.066)
  2411. local weld2 = Instance.new("Weld")
  2412. weld2.Parent = rh2
  2413. rh2.Transparency = 0
  2414. weld2.Part0 = rh2
  2415. weld2.Part1 = Player.Character.Head
  2416. weld2.C0 = CFrame.new(-0.05, -0.05, -0.1025)*CFrame.Angles(0, 0, 0)
  2417.  
  2418. Reaper3 = Instance.new("Model")
  2419. Reaper3.Parent = Character
  2420. Reaper3.Name = "Reaper3"
  2421. rh3 = Instance.new("Part")
  2422. rh3.Parent = Reaper3
  2423. rh3.Locked = true
  2424. rh3.CanCollide = false
  2425. mesh3 = Instance.new("SpecialMesh")
  2426. rh3.formFactor = "Symmetric"
  2427. mesh3.MeshType = "FileMesh"
  2428. mesh3.MeshId = "rbxassetid://11419729"
  2429. mesh3.Parent = rh3
  2430. mesh3.TextureId = "rbxassetid://167447118"
  2431. mesh3.Offset = Vector3.new(-0.05, 0.16, -0.285)
  2432. mesh3.Scale = Vector3.new(1, 1, 1)
  2433. local weld3 = Instance.new("Weld")
  2434. weld3.Parent = rh3
  2435. rh3.Transparency = 0
  2436. weld3.Part0 = rh3
  2437. weld3.Part1 = Player.Character.Head
  2438. weld3.C0 = CFrame.new(-0.05, -0.05, -0.1025)*CFrame.Angles(0, 0, 0)
  2439.  
  2440. local BC = Character["Body Colors"]
  2441. BC.HeadColor = BrickColor.new("Pastel brown")
  2442. BC.LeftArmColor = BrickColor.new("Pastel brown")
  2443. BC.LeftLegColor = BrickColor.new("Pastel brown")
  2444. BC.RightArmColor = BrickColor.new("Pastel brown")
  2445. BC.RightLegColor = BrickColor.new("Pastel brown")
  2446. BC.TorsoColor = BrickColor.new("Pastel brown")
  2447.  
  2448. local dec2 = Instance.new("Decal", Character)
  2449. dec2.Face = "Front"
  2450. dec2.Texture = ""
  2451. dec2.Parent = Character.Head
  2452. Character.Head.face.Transparency = 0
  2453. Character.Head.face.Texture = "http://www.roblox.com/asset/?id=13079565"
  2454.  
  2455. ShadowHead = New("Part",Character,"ShadowHead",{CanCollide = false,BrickColor = BrickColor.new("Really black"),Transparency = 1,Material = Enum.Material.Neon,Size = Vector3.new(1.20000005, 0.600000024, 1),CFrame = CFrame.new(68.5999985, 0.700013041, 9.89999962, 1, 0, 0, 0, 1, 0, 0, 0, 1),Color = Color3.new(0, 0, 0),})
  2456. Mesh = New("SpecialMesh",ShadowHead,"Mesh",{Scale = Vector3.new(1.25999999, 1.5, 1.25999999),})
  2457. Weld = New("Weld",ShadowHead,"mot",{Part0 = ShadowHead,Part1 = Character.Head,C1 = CFrame.new(0, 0.200000048, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  2458.  
  2459. Handle = New("Part",m,"Handle",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Transparency = 1,Transparency = 1,Size = Vector3.new(1.78105354, 1.21267569, 0.446083069),CFrame = CFrame.new(3.48884702, 1.89424598, -23.6011944, 0.0172098875, -7.30156898e-07, 0.999851942, 0.999853492, 1.19907781e-08, -0.0172098596, -1.80598714e-09, 1.00000083, 1.4975667e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(6,0,0),})
  2460. moter = New("Weld",Handle,"mot",{Part0 = RightArm,Part1 = Handle,})
  2461. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.46324158, 2.55061626, -23.0996056, 0.0172099378, 1.26508749e-05, 0.999852061, 0.999856234, 0.000737910799, -0.0172098614, -0.000738026109, 1.00000215, 2.29468287e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2462. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.492160469, 0.24608025, 0.123040132),})
  2463. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098838, 0.999853015, -0.000738022442, 1.18836761e-05, 0.000737924012, 1.00000048, 0.999851942, -0.0172098614, 1.52736902e-06),C1 = CFrame.new(0.655831456, 0.501588821, -0.0368974209, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2464. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.270688266, 0.270688266),CFrame = CFrame.new(3.47537327, 1.11045444, -23.2953625, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2465. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.123040125, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  2466. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.783906102, 0.305831909, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2467. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(1.47648132, 0.221472263, 0.344512314),CFrame = CFrame.new(3.48828244, 1.86040294, -23.3093491, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2468. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1.00999999, 1),})
  2469. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(-0.0338476896, 0.291845322, 1.8119812e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2470. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.98432076, 0.200000003, 0.24608022),CFrame = CFrame.new(3.48404813, 1.61474013, -23.4433804, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2471. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.246080264, 1),})
  2472. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279546618, 0.157814026, 1.21593475e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2473. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.984321058, 0.200000003, 0.200000003),CFrame = CFrame.new(3.36101127, 1.61687815, -23.4187717, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2474. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.492160618, 0.492160439),MeshType = Enum.MeshType.Cylinder,})
  2475. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279526353, 0.182422638, -0.123043299, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2476. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.53706741, 2.54934502, -23.0996056, 0.0172099378, 1.26508749e-05, 0.999852061, 0.999856234, 0.000737910799, -0.0172098614, -0.000738026109, 1.00000215, 2.29468287e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2477. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.492160469, 0.246080235, 0.123040132),})
  2478. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098838, 0.999853015, -0.000738022442, 1.18836761e-05, 0.000737924012, 1.00000048, 0.999851942, -0.0172098614, 1.52736902e-06),C1 = CFrame.new(0.655830979, 0.501588821, 0.0369393826, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2479. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(1.47648132, 0.200000003, 0.200000003),CFrame = CFrame.new(3.48828554, 1.86097884, -23.1606178, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2480. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.7382406),})
  2481. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.0332717896, 0.440576553, 1.14440918e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2482. Partss = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.221472204, 0.221472189),CFrame = CFrame.new(3.47526526, 1.10428262, -23.2953568, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  2483. Mesh = New("SpecialMesh",Partss,"Mesh",{Scale = Vector3.new(0.123040125, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  2484. mot = New("Weld",Partss,"mot",{Part0 = Partss,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.790078878, 0.305837631, 1.57356262e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2485. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.49040294, 1.9837563, -23.5174713, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2486. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.615200579, 0.36912033, 0.24608025),MeshId = "http://www.roblox.com/asset/?id=3270017",MeshType = Enum.MeshType.FileMesh,})
  2487. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(0.0895236731, 0.0837230682, 1.52587891e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2488. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.295296252, 0.738240778, 0.369120389),CFrame = CFrame.new(3.49802279, 2.42631888, -23.8138046, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  2489. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(0.532151103, -0.212610245, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2490. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.344512314, 0.78745681, 0.344512314),CFrame = CFrame.new(3.49802279, 2.42631888, -23.8138046, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2491. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(0.532151103, -0.212610245, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2492. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.984321058, 0.200000003, 0.200000003),CFrame = CFrame.new(3.60706425, 1.61264217, -23.4187698, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2493. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.492160618, 0.492160439),MeshType = Enum.MeshType.Cylinder,})
  2494. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279527187, 0.182424545, 0.12304616, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2495. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.47672749, 1.18911982, -23.1232109, 0.999851942, 0.00638213893, 0.0159827713, -0.0172098316, 0.37065956, 0.928613782, 4.44045327e-06, -0.928749561, 0.370713741),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2496. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(0.24608025, 0.246080264, 0.615200639),MeshType = Enum.MeshType.Wedge,})
  2497. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098316, 3.67313623e-06, 0.00638283044, 0.370658338, -0.928748012, 0.0159824342, 0.928610861, 0.370713145),C1 = CFrame.new(-0.705229163, 0.477983475, 1.76429749e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2498. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.344512254, 0.787456751, 0.200000003),CFrame = CFrame.new(3.50247502, 2.68478155, -23.8132839, 0.999851942, 1.0713723e-05, -0.0172099732, -0.0172098912, 0.000738376984, -0.999856234, 4.21693585e-06, 1.00000226, 0.000738456321),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2499. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.861280859),MeshType = Enum.MeshType.Wedge,})
  2500. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098912, 3.44961882e-06, 9.9465251e-06, 0.000738390256, 1.0000006, -0.0172099192, -0.999853015, 0.000738452654),C1 = CFrame.new(0.790651679, -0.212089539, 2.07424164e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2501. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.4904809, 1.98827124, -23.5162678, -0.999852061, -0.0148990965, 0.00861407723, 0.0172099397, -0.865535975, 0.500560343, -4.36594746e-06, 0.500633478, 0.865662456),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2502. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(0.24608025, 0.369120389, 0.861280918),MeshType = Enum.MeshType.Wedge,})
  2503. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999851942, 0.0172099397, -3.59863043e-06, -0.0148994327, -0.865533173, 0.500632644, 0.00861338526, 0.500558794, 0.865661025),C1 = CFrame.new(0.0940393209, 0.0849266052, 1.54972076e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2504. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.442944348, 0.200000003, 0.200000003),CFrame = CFrame.new(3.37415838, 2.37982368, -23.1609974, 0.0172098633, 1.48413446e-05, 0.999851882, 0.999856234, 0.0007376945, -0.0172097869, -0.000737846654, 1.00000215, 7.44058752e-08),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2505. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  2506. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098093, 0.999853015, -0.000737842987, 1.40741467e-05, 0.000737707771, 1.00000048, 0.999851823, -0.0172097888, -6.92903996e-07),C1 = CFrame.new(0.483531356, 0.440196991, -0.12302804, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2507. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.61520052, 0.200000003, 0.200000003),CFrame = CFrame.new(3.35783243, 1.43252242, -23.1602993, 0.0172098633, 1.48413446e-05, 0.999851882, 0.999856234, 0.0007376945, -0.0172097869, -0.000737846654, 1.00000215, 7.44058752e-08),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2508. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  2509. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098093, 0.999853015, -0.000737842987, 1.40741467e-05, 0.000737707771, 1.00000048, 0.999851823, -0.0172097888, -6.92903996e-07),C1 = CFrame.new(-0.463909149, 0.440895081, -0.123048544, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2510. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(1.47648132, 0.200000003, 0.200000003),CFrame = CFrame.new(3.61130548, 1.85886192, -23.160614, -0.0172098689, 1.04156998e-05, -0.99985218, -0.999856234, 0.000738191127, 0.0172097925, 0.000738266157, 1.00000238, -4.55221243e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2511. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  2512. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0172098149, -0.999853075, 0.00073826249, 9.64850187e-06, 0.00073820434, 1.00000072, -0.999852121, 0.0172097944, -3.78489494e-06),C1 = CFrame.new(-0.0332713127, 0.440580368, 0.123049498, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2513. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.36912033, 0.738240778, 0.200000003),CFrame = CFrame.new(3.50183868, 2.64789343, -23.8132629, 0.999851942, 1.0818032e-05, -0.017209895, -0.0172098186, 0.000737608876, -0.999856234, 4.13497901e-06, 1.00000238, 0.000737691764),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  2514. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.738240719),MeshType = Enum.MeshType.Wedge,})
  2515. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098186, 3.36766243e-06, 1.00508332e-05, 0.000737622147, 1.00000072, -0.0172098409, -0.999853015, 0.000737688097),C1 = CFrame.new(0.753758311, -0.212068558, 1.93119049e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2516. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.344512254, 0.787456751, 0.200000003),CFrame = CFrame.new(3.49357963, 2.16808391, -23.8129005, 0.999852061, -1.05647114e-05, 0.0172100067, -0.0172099303, -0.000737611321, 0.999856114, 4.36594746e-06, -1.00000226, -0.000737689785),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  2517. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.861280859),MeshType = Enum.MeshType.Wedge,})
  2518. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851942, -0.0172099303, 3.59863043e-06, -9.79751348e-06, -0.000737624592, -1.0000006, 0.0172099527, 0.999852955, -0.000737686118),C1 = CFrame.new(0.273878455, -0.211706161, 1.90734863e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2519. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Size = Vector3.new(0.36912033, 0.738240659, 0.200000003),CFrame = CFrame.new(3.49420977, 2.20497489, -23.8129292, 0.999852061, -1.05647114e-05, 0.0172100067, -0.0172099303, -0.000737611321, 0.999856114, 4.36594746e-06, -1.00000226, -0.000737689785),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.0, 0, 0),})
  2520. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.738240719),MeshType = Enum.MeshType.Wedge,})
  2521. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851942, -0.0172099303, 3.59863043e-06, -9.79751348e-06, -0.000737624592, -1.0000006, 0.0172099527, 0.999852955, -0.000737686118),C1 = CFrame.new(0.310774684, -0.211734772, 1.43051147e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  2522.  
  2523. for _,v in pairs(m:children()) do
  2524. if v:IsA("Part") then
  2525. v.CanCollide = false
  2526. end
  2527. end
  2528. if Character.Name == "pdnghiaqoi" or Character.Name == "Player1" then
  2529. for _,v in pairs(Character:children()) do
  2530. if v:IsA("Accessory") then
  2531. v:Remove()
  2532. end
  2533. end
  2534. Handle = New("Part",m,"Handle",{CanCollide = false,BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(-27.3000507, 4.79990387, 28.10005, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0, 0, 0),})
  2535. Mesh = New("SpecialMesh",Handle,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),MeshId = "http://www.roblox.com/asset/?id=62246019",MeshType = Enum.MeshType.FileMesh,})
  2536. Decal = New("Decal",Handle,"Decal",{Face = Enum.NormalId.Top,Texture = "http://www.roblox.com/asset/?id=146022204",})
  2537. mot = New("Motor",Handle,"mot",{Part0 = Handle,Part1 = Head,C0 = CFrame.new(0, 0, 0, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),C1 = CFrame.new(-0.100000381, 0.0999999046, 0.200000763, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),})
  2538. Handle1 = New("Part",m,"Handle1",{CanCollide = false,BrickColor = BrickColor.new("Really red"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(-27.3000507, 4.79990387, 28.10005, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(.0, 0, 0),})
  2539. Mesh = New("SpecialMesh",Handle1,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(0.949999988, 0.949999988, 0.949999988),MeshId = "http://www.roblox.com/asset/?id=62246019",MeshType = Enum.MeshType.FileMesh,})
  2540. mot = New("Motor",Handle1,"mot",{Part0 = Handle1,Part1 = Head,C0 = CFrame.new(0, 0, 0, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),C1 = CFrame.new(-0.100000381, 0.0999999046, 0.200000763, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),})
  2541. end
  2542.  
  2543.  
  2544. function rayCast(Position, Direction, Range, Ignore)
  2545. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  2546. end
  2547.  
  2548. --[[FindNearestTorso = function(pos)
  2549. local list = (game.Workspace:children())
  2550. local torso = nil
  2551. local dist = 1000
  2552. local temp, human, temp2 = nil, nil, nil
  2553. for x = 1, #list do
  2554. temp2 = list[x]
  2555. if temp2.className == "Model" and temp2.Name ~= Character.Name then
  2556. temp = temp2:findFirstChild("Torso")
  2557. human = temp2:findFirstChild("Humanoid")
  2558. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  2559. local dohit = true
  2560. if dohit == true then
  2561. torso = temp
  2562. dist = (temp.Position - pos).magnitude
  2563. end
  2564. end
  2565. end
  2566. end
  2567. return torso, dist
  2568. end]]
  2569. function FindNearestTorso(Position, Distance, SinglePlayer)
  2570. if SinglePlayer then
  2571. return (SinglePlayer.Torso.CFrame.p - Position).magnitude < Distance
  2572. end
  2573. local List = {}
  2574. for i, v in pairs(workspace:GetChildren()) do
  2575. if v:IsA("Model") then
  2576. if v:findFirstChild("Torso") then
  2577. if v ~= Character then
  2578. if (v.Torso.Position - Position).magnitude <= Distance then
  2579. table.insert(List, v)
  2580. end
  2581. end
  2582. end
  2583. end
  2584. end
  2585. return List
  2586. end
  2587. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  2588. if hit.Parent == nil then
  2589. return
  2590. end
  2591. local h = hit.Parent:FindFirstChild("Humanoid")
  2592. for _, v in pairs(hit.Parent:children()) do
  2593. if v:IsA("Humanoid") then
  2594. h = v
  2595. end
  2596. end
  2597. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  2598. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  2599. if hit.Parent.DebounceHit.Value == true then
  2600. return
  2601. end
  2602. end
  2603. local c = Create("ObjectValue"){
  2604. Name = "creator",
  2605. Value = game:service("Players").LocalPlayer,
  2606. Parent = h,
  2607. }
  2608. game:GetService("Debris"):AddItem(c, .5)
  2609. if HitSound ~= nil and HitPitch ~= nil then
  2610. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  2611. end
  2612. local Damage = math.random(minim, maxim)
  2613. local blocked = false
  2614. local block = hit.Parent:findFirstChild("Block")
  2615. if block ~= nil then
  2616. if block.className == "IntValue" then
  2617. if block.Value > 0 then
  2618. blocked = true
  2619. block.Value = block.Value - 1
  2620. print(block.Value)
  2621. end
  2622. end
  2623. end
  2624. if blocked == false then
  2625. h.Health = h.Health - Damage
  2626. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  2627. else
  2628. h.Health = h.Health - (Damage / 2)
  2629. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Really black").Color)
  2630. end
  2631. if Type == "Knockdown" then
  2632. local hum = hit.Parent.Humanoid
  2633. hum.PlatformStand = true
  2634. coroutine.resume(coroutine.create(function(HHumanoid)
  2635. swait(1)
  2636. HHumanoid.PlatformStand = false
  2637. end), hum)
  2638. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  2639. local bodvol = Create("BodyVelocity"){
  2640. velocity = angle * knockback,
  2641. P = 5000,
  2642. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  2643. Parent = hit,
  2644. }
  2645. local rl = Create("BodyAngularVelocity"){
  2646. P = 3000,
  2647. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  2648. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  2649. Parent = hit,
  2650. }
  2651. game:GetService("Debris"):AddItem(bodvol, .5)
  2652. game:GetService("Debris"):AddItem(rl, .5)
  2653. elseif Type == "Normal" then
  2654. local vp = Create("BodyVelocity"){
  2655. P = 500,
  2656. maxForce = Vector3.new(math.huge, 0, math.huge),
  2657. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  2658. }
  2659. if knockback > 0 then
  2660. vp.Parent = hit.Parent.Torso
  2661. end
  2662. game:GetService("Debris"):AddItem(vp, .5)
  2663. elseif Type == "Up" then
  2664. local bodyVelocity = Create("BodyVelocity"){
  2665. velocity = Vector3.new(0, 20, 0),
  2666. P = 5000,
  2667. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  2668. Parent = hit,
  2669. }
  2670. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  2671. elseif Type == "DarkUp" then
  2672. coroutine.resume(coroutine.create(function()
  2673. for i = 0, 1, 0.1 do
  2674. swait()
  2675. Effects.Block.Create(BrickColor.new("Really black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  2676. end
  2677. end))
  2678. local bodyVelocity = Create("BodyVelocity"){
  2679. velocity = Vector3.new(0, 20, 0),
  2680. P = 5000,
  2681. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  2682. Parent = hit,
  2683. }
  2684. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  2685. elseif Type == "Snare" then
  2686. local bp = Create("BodyPosition"){
  2687. P = 2000,
  2688. D = 100,
  2689. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  2690. position = hit.Parent.Torso.Position,
  2691. Parent = hit.Parent.Torso,
  2692. }
  2693. game:GetService("Debris"):AddItem(bp, 1)
  2694. elseif Type == "Freeze" then
  2695. local BodPos = Create("BodyPosition"){
  2696. P = 50000,
  2697. D = 1000,
  2698. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  2699. position = hit.Parent.Torso.Position,
  2700. Parent = hit.Parent.Torso,
  2701. }
  2702. local BodGy = Create("BodyGyro") {
  2703. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  2704. P = 20e+003,
  2705. Parent = hit.Parent.Torso,
  2706. cframe = hit.Parent.Torso.CFrame,
  2707. }
  2708. hit.Parent.Torso.Anchored = true
  2709. coroutine.resume(coroutine.create(function(Part)
  2710. swait(1.5)
  2711. Part.Anchored = false
  2712. end), hit.Parent.Torso)
  2713. game:GetService("Debris"):AddItem(BodPos, 3)
  2714. game:GetService("Debris"):AddItem(BodGy, 3)
  2715. end
  2716. local debounce = Create("BoolValue"){
  2717. Name = "DebounceHit",
  2718. Parent = hit.Parent,
  2719. Value = true,
  2720. }
  2721. game:GetService("Debris"):AddItem(debounce, Delay)
  2722. c = Create("ObjectValue"){
  2723. Name = "creator",
  2724. Value = Player,
  2725. Parent = h,
  2726. }
  2727. game:GetService("Debris"):AddItem(c, .5)
  2728. end
  2729. end
  2730.  
  2731. function ShowDamage(Pos, Text, Time, Color)
  2732. local Rate = (1 / 30)
  2733. local Pos = (Pos or Vector3.new(0, 0, 0))
  2734. local Text = (Text or "")
  2735. local Time = (Time or 2)
  2736. local Color = (Color or Color3.new(1, 0, 1))
  2737. local EffectPart = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  2738. EffectPart.Anchored = true
  2739. local BillboardGui = Create("BillboardGui"){
  2740. Size = UDim2.new(3, 0, 3, 0),
  2741. Adornee = EffectPart,
  2742. Parent = EffectPart,
  2743. }
  2744. local TextLabel = Create("TextLabel"){
  2745. BackgroundTransparency = 1,
  2746. Size = UDim2.new(1, 0, 1, 0),
  2747. Text = Text,
  2748. Font = "SciFi",
  2749. TextColor3 = Color,
  2750. TextScaled = true,
  2751. Parent = BillboardGui,
  2752. }
  2753. game.Debris:AddItem(EffectPart, (Time))
  2754. EffectPart.Parent = game:GetService("Workspace")
  2755. delay(0, function()
  2756. local Frames = (Time / Rate)
  2757. for Frame = 1, Frames do
  2758. wait(Rate)
  2759. local Percent = (Frame / Frames)
  2760. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  2761. TextLabel.TextTransparency = Percent
  2762. end
  2763. if EffectPart and EffectPart.Parent then
  2764. EffectPart:Destroy()
  2765. end
  2766. end)
  2767. end
  2768.  
  2769. function dmg(dude)
  2770. if dude.Name ~= Character then
  2771. dude.Humanoid.PlatformStand = true
  2772. local bgf = Instance.new("BodyGyro",dude.Head)
  2773. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90),0,0)
  2774. local val = Instance.new("BoolValue",dude)
  2775. val.Name = "IsHit"
  2776. for i = 1, 30 do
  2777. local blo = Instance.new("Part",game.Workspace)
  2778. blo.Size = Vector3.new(.6,.2,.6)
  2779. blo.Material = "Granite"
  2780. blo.BrickColor = BrickColor.new("Really red")
  2781. --blo.Position = dude.Head.Position
  2782. blo.CFrame = dude.Head.CFrame
  2783. game:GetService("Debris"):AddItem(blo,60)
  2784. end
  2785. local ds = coroutine.wrap(function()
  2786. wait(.2)
  2787. dude.Torso:BreakJoints()
  2788. end)
  2789. ds()
  2790. end
  2791. end
  2792.  
  2793. function mdmg(Part, Magnitude)--, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  2794. --local buddy
  2795. for _, c in pairs(workspace:children()) do
  2796. local hum = c:findFirstChild("Humanoid")
  2797. if hum ~= nil then
  2798. local head = c:findFirstChild("Torso")
  2799. if head ~= nil then
  2800. local targ = head.Position - Part.Position
  2801. local mag = targ.magnitude
  2802. if mag <= Magnitude and c.Name ~= Player.Name then
  2803. if c.Name ~= Character then
  2804. if c.Name ~= "pdnghiaqoi" then
  2805. local asd = Instance.new("ParticleEmitter",c.Torso)
  2806. asd.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  2807. asd.LightEmission = .1
  2808. asd.Size = NumberSequence.new(0.2)
  2809. asd.Texture = "http://www.roblox.com/asset/?ID=771221224"
  2810. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  2811. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  2812. asd.Transparency = bbb
  2813. asd.Size = aaa
  2814. asd.ZOffset = .9
  2815. asd.Acceleration = Vector3.new(0, -5, 0)
  2816. asd.LockedToPart = false
  2817. asd.EmissionDirection = "Back"
  2818. asd.Lifetime = NumberRange.new(1, 2)
  2819. asd.Rate = 1000
  2820. asd.Rotation = NumberRange.new(-100, 100)
  2821. asd.RotSpeed = NumberRange.new(-100, 100)
  2822. asd.Speed = NumberRange.new(6)
  2823. asd.VelocitySpread = 10000
  2824. asd.Enabled=true
  2825. --Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  2826. dmg(c)
  2827. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=245186002", c.Torso, 4.5, .8)
  2828. coroutine.wrap(function()
  2829. wait(.2)
  2830. asd.Enabled = false
  2831. wait(2)
  2832. asd:Remove()
  2833. end)()
  2834. else
  2835. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=240429289", c.Torso, 1.5, math.random(1,1.3))
  2836. Effects.Sphere.Create(BrickColor.new("Bright red"), c.Torso.CFrame, 30, 30, 30, .5, .5, .5, 0.04)
  2837.  
  2838. end
  2839. end
  2840. end
  2841. end
  2842. end
  2843. end
  2844. end
  2845. EffectModel = Create("Model"){
  2846. Parent = Character,
  2847. Name = "Effects",
  2848. }
  2849.  
  2850. Effects = {
  2851. Block = {
  2852. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  2853. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2854. prt.Anchored = true
  2855. prt.CFrame = cframe
  2856. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2857. game:GetService("Debris"):AddItem(prt, 10)
  2858. if Type == 1 or Type == nil then
  2859. table.insert(Effects, {
  2860. prt,
  2861. "Block1",
  2862. delay,
  2863. x3,
  2864. y3,
  2865. z3,
  2866. msh
  2867. })
  2868. elseif Type == 2 then
  2869. table.insert(Effects, {
  2870. prt,
  2871. "Block2",
  2872. delay,
  2873. x3,
  2874. y3,
  2875. z3,
  2876. msh
  2877. })
  2878. end
  2879. end;
  2880. };
  2881.  
  2882. Cylinder = {
  2883. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2884. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2885. prt.Anchored = true
  2886. prt.CFrame = cframe
  2887. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2888. game:GetService("Debris"):AddItem(prt, 10)
  2889. table.insert(Effects, {
  2890. prt,
  2891. "Cylinder",
  2892. delay,
  2893. x3,
  2894. y3,
  2895. z3,
  2896. msh
  2897. })
  2898. end;
  2899. };
  2900. Head = {
  2901. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2902. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2903. prt.Anchored = true
  2904. prt.CFrame = cframe
  2905. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2906. game:GetService("Debris"):AddItem(prt, 10)
  2907. table.insert(Effects, {
  2908. prt,
  2909. "Cylinder",
  2910. delay,
  2911. x3,
  2912. y3,
  2913. z3,
  2914. msh
  2915. })
  2916. end;
  2917. };
  2918.  
  2919. Sphere = {
  2920. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2921. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2922. prt.Anchored = true
  2923. prt.CFrame = cframe
  2924. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2925. game:GetService("Debris"):AddItem(prt, 10)
  2926. table.insert(Effects, {
  2927. prt,
  2928. "Cylinder",
  2929. delay,
  2930. x3,
  2931. y3,
  2932. z3,
  2933. msh
  2934. })
  2935. end;
  2936. };
  2937.  
  2938. Elect = {
  2939. Create = function(cff, x, y, z)
  2940. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Really black"), "Part", Vector3.new(1, 1, 1))
  2941. prt.Anchored = true
  2942. prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
  2943. prt.CFrame = CFrame.new(prt.Position)
  2944. game:GetService("Debris"):AddItem(prt, 2)
  2945. local xval = math.random() / 2
  2946. local yval = math.random() / 2
  2947. local zval = math.random() / 2
  2948. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  2949. table.insert(Effects, {
  2950. prt,
  2951. "Elec",
  2952. 0.1,
  2953. x,
  2954. y,
  2955. z,
  2956. xval,
  2957. yval,
  2958. zval
  2959. })
  2960. end;
  2961.  
  2962. };
  2963.  
  2964. Ring = {
  2965. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2966. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2967. prt.Anchored = true
  2968. prt.CFrame = cframe
  2969. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2970. game:GetService("Debris"):AddItem(prt, 10)
  2971. table.insert(Effects, {
  2972. prt,
  2973. "Cylinder",
  2974. delay,
  2975. x3,
  2976. y3,
  2977. z3,
  2978. msh
  2979. })
  2980. end;
  2981. };
  2982.  
  2983.  
  2984. Wave = {
  2985. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2986. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  2987. prt.Anchored = true
  2988. prt.CFrame = cframe
  2989. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2990. game:GetService("Debris"):AddItem(prt, 10)
  2991. table.insert(Effects, {
  2992. prt,
  2993. "Cylinder",
  2994. delay,
  2995. x3,
  2996. y3,
  2997. z3,
  2998. msh
  2999. })
  3000. end;
  3001. };
  3002.  
  3003. Break = {
  3004. Create = function(brickcolor, cframe, x1, y1, z1)
  3005. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  3006. prt.Anchored = true
  3007. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  3008. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  3009. local num = math.random(10, 50) / 1000
  3010. game:GetService("Debris"):AddItem(prt, 10)
  3011. table.insert(Effects, {
  3012. prt,
  3013. "Shatter",
  3014. num,
  3015. prt.CFrame,
  3016. math.random() - math.random(),
  3017. 0,
  3018. math.random(50, 100) / 100
  3019. })
  3020. end;
  3021. };
  3022.  
  3023. Fire = {
  3024. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  3025. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  3026. prt.Anchored = true
  3027. prt.CFrame = cframe
  3028. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  3029. game:GetService("Debris"):AddItem(prt, 10)
  3030. table.insert(Effects, {
  3031. prt,
  3032. "Fire",
  3033. delay,
  3034. 1,
  3035. 1,
  3036. 1,
  3037. msh
  3038. })
  3039. end;
  3040. };
  3041.  
  3042. FireWave = {
  3043. Create = function(brickcolor, cframe, x1, y1, z1)
  3044. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 1, brickcolor, "Effect", Vector3.new())
  3045. prt.Anchored = true
  3046. prt.CFrame = cframe
  3047. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  3048. local d = Create("Decal"){
  3049. Parent = prt,
  3050. Texture = "rbxassetid://26356434",
  3051. Face = "Top",
  3052. }
  3053. local d = Create("Decal"){
  3054. Parent = prt,
  3055. Texture = "rbxassetid://26356434",
  3056. Face = "Bottom",
  3057. }
  3058. game:GetService("Debris"):AddItem(prt, 10)
  3059. table.insert(Effects, {
  3060. prt,
  3061. "FireWave",
  3062. 1,
  3063. 30,
  3064. math.random(400, 600) / 100,
  3065. msh
  3066. })
  3067. end;
  3068. };
  3069.  
  3070. Lightning = {
  3071. Create = function(p0, p1, tym, ofs, col, th, tra, last)
  3072. local magz = (p0 - p1).magnitude
  3073. local curpos = p0
  3074. local trz = {
  3075. -ofs,
  3076. ofs
  3077. }
  3078. for i = 1, tym do
  3079. local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  3080. local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  3081. local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  3082. li.Material = "Neon"
  3083. if tym == i then
  3084. local magz2 = (curpos - p1).magnitude
  3085. li.Size = Vector3.new(th, th, magz2)
  3086. li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  3087. table.insert(Effects, {
  3088. li,
  3089. "Disappear",
  3090. last
  3091. })
  3092. else
  3093. do
  3094. do
  3095. li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  3096. curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  3097. game.Debris:AddItem(li, 10)
  3098. table.insert(Effects, {
  3099. li,
  3100. "Disappear",
  3101. last
  3102. })
  3103. end
  3104. end
  3105. end
  3106. end
  3107. end
  3108. };
  3109.  
  3110. EffectTemplate = {
  3111.  
  3112. };
  3113. }
  3114.  
  3115. function chatfunc(text)
  3116. local chat = coroutine.wrap(function()
  3117. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  3118. Character:FindFirstChild("TalkingBillBoard"):destroy()
  3119. end
  3120. local naeeym2 = Instance.new("BillboardGui",Character)
  3121. naeeym2.Size = UDim2.new(0,100,0,40)
  3122. naeeym2.StudsOffset = Vector3.new(0,3,0)
  3123. naeeym2.Adornee = Character.Head
  3124. naeeym2.Name = "TalkingBillBoard"
  3125. local tecks2 = Instance.new("TextLabel",naeeym2)
  3126. tecks2.BackgroundTransparency = 1
  3127. tecks2.BorderSizePixel = 0
  3128. tecks2.Text = ""
  3129. tecks2.Font = "Antique"
  3130. tecks2.TextSize = 38
  3131. tecks2.TextStrokeTransparency = 0
  3132. tecks2.TextColor3 = Color3.new(0,0,0)
  3133. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  3134. tecks2.Size = UDim2.new(1,0,0.5,0)
  3135. local tecks3 = Instance.new("TextLabel",naeeym2)
  3136. tecks3.BackgroundTransparency = 1
  3137. tecks3.BorderSizePixel = 0
  3138. tecks3.Text = ""
  3139. tecks3.Font = "Antique"
  3140. tecks3.TextSize = 38
  3141. tecks3.TextStrokeTransparency = 0
  3142. tecks3.TextColor3 = Color3.new(10,0,0)
  3143. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  3144. tecks3.Size = UDim2.new(1,0,0.5,0)
  3145. for i = 1,string.len(text),1 do
  3146. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=158825280", Character, 1, 1.45)
  3147. tecks2.Text = string.sub(text,1,i)
  3148. tecks3.Text = string.sub(text,1,i)
  3149. wait(0.01)
  3150. end
  3151. wait(2)
  3152. for i = 1, 50 do
  3153. swait()
  3154. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  3155. tecks2.Rotation = tecks2.Rotation - .8
  3156. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  3157. tecks2.TextTransparency = tecks2.TextTransparency + .04
  3158. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  3159. tecks3.Rotation = tecks2.Rotation + .8
  3160. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  3161. tecks3.TextTransparency = tecks2.TextTransparency + .04
  3162. end
  3163. naeeym2:Destroy()
  3164. end)
  3165. chat()
  3166. end
  3167. function onChatted(msg)
  3168. chatfunc(msg)
  3169. end
  3170. Player.Chatted:connect(onChatted)
  3171.  
  3172. abss = Instance.new("BillboardGui",Character)
  3173. abss.Size = UDim2.new(10,0,10,0)
  3174. abss.Enabled = false
  3175. imgl = Instance.new("ImageLabel",abss)
  3176. imgl.Position = UDim2.new(0,0,0,0)
  3177. imgl.Size = UDim2.new(1,0,1,0)
  3178. imgl.Image = "rbxassetid://418573253"
  3179. imgl.ImageColor3 = Color3.new(111, 0, 0)
  3180. imgl.BackgroundTransparency = 1
  3181. imgf = Instance.new("ImageLabel",abss)
  3182. imgf.Position = UDim2.new(0,0,0,0)
  3183. imgf.Size = UDim2.new(1,0,1,0)
  3184. imgf.Image = "rbxassetid://227681719"
  3185. imgf.ImageColor3 = Color3.new(111, 0, 0)
  3186. imgf.BackgroundTransparency = 1
  3187. img2 = Instance.new("ImageLabel",abss)
  3188. img2.Position = UDim2.new(0,0,0,0)
  3189. img2.Size = UDim2.new(1,0,1,0)
  3190. img2.Image = "http://www.roblox.com/asset/?id=418573253"
  3191. img2.ImageColor3 = Color3.new(111, 0, 0)
  3192. img2.BackgroundTransparency = 1
  3193. img3 = Instance.new("ImageLabel",abss)
  3194. img3.Position = UDim2.new(0,0,0,0)
  3195. img3.Size = UDim2.new(1,0,1,0)
  3196. img3.Image = "http://www.roblox.com/asset/?id=227681719"
  3197. img3.ImageColor3 = Color3.new(111, 0, 0)
  3198. img3.BackgroundTransparency = 1
  3199.  
  3200. spawn(function()
  3201. chatfunc("Another one?")
  3202. wait(2)
  3203. chatfunc("Ugh..")
  3204. wait(1.6)
  3205. chatfunc("Let's get this done quick, shall we?")
  3206. end)
  3207.  
  3208. function attackone()
  3209. attack = true
  3210. Humanoid.WalkSpeed = 9
  3211. if targetted.Name ~= "pdnghiaqoi" then
  3212. local partasdeff = Instance.new("ParticleEmitter",targetted.Torso)
  3213. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  3214. partasdeff.LightEmission = .1
  3215. partasdeff.Size = NumberSequence.new(0.2)
  3216. partasdeff.Texture = "http://www.roblox.com/asset/?ID=771221224"
  3217. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  3218. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0),
  3219. NumberSequenceKeypoint.new(1, 1)})
  3220. partasdeff.Transparency = bbb
  3221. partasdeff.Size = aaa
  3222. partasdeff.ZOffset = .9
  3223. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  3224. partasdeff.LockedToPart = false
  3225. partasdeff.EmissionDirection = "Back"
  3226. partasdeff.Lifetime = NumberRange.new(1, 2)
  3227. partasdeff.Rate = 1000
  3228. partasdeff.Rotation = NumberRange.new(-100, 100)
  3229. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  3230. partasdeff.Speed = NumberRange.new(6)
  3231. partasdeff.VelocitySpread = 10000
  3232. partasdeff.Enabled=false
  3233. for i = 0, 0.25, 0.1 do
  3234. swait()
  3235. PlayAnimationFromTable({
  3236. CFrame.new(0.0150662307, -4.88092428e-06, 0.0148906102, -0.01982099, -1.08002496e-12, 0.999803543, -4.46946984e-07, 1, -8.86181084e-09, -0.999803782, 3.27825546e-07, -0.0198209975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3237. CFrame.new(-0.00189219415, 1.50098944, -0.129972562, 0.0201512501, 0.0765038878, -0.996864021, 0.0566192083, 0.995383799, 0.0775336027, 0.998202145, -0.0580037907, 0.0157258138) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3238. CFrame.new(2.01696348, 0.389823437, -0.060955409, -0.000397110358, -0.999624014, -0.0274192169, 0.00981300231, 0.0274140034, -0.999576092, 0.999951839, -0.0006660074, 0.00979842618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3239. CFrame.new(-1.64040112, 0.216884568, 1.93210121e-06, 0.962137103, 0.272578239, -7.02217221e-07, -0.272574633, 0.962141275, -9.83368591e-06, -2.00979412e-06, 9.69739631e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3240. CFrame.new(0.64369607, -1.98395038, 0.206737444, 0.19058302, -0.152998164, -0.969677031, 0.0664296299, 0.987527609, -0.142758414, 0.979424179, -0.0372077115, 0.198368743) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3241. CFrame.new(-0.641120076, -1.92643452, -0.0258421432, 0.848103583, 0.133398816, -0.51276207, -0.0662644878, 0.986892581, 0.147146463, 0.52567035, -0.0908175632, 0.845826566) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3242. }, .1, false)
  3243. moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3244. end
  3245. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  3246. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  3247. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  3248. dmg(targetted)
  3249. wait()
  3250. chatfunc("Got you.")
  3251. partasdeff.Enabled=true
  3252. for i = 0, 0.15, 0.1 do
  3253. swait()
  3254. PlayAnimationFromTable({
  3255. CFrame.new(0.0150662307, -4.88092428e-06, 0.0148906102, -0.01982099, -1.08002496e-12, 0.999803543, -4.46946984e-07, 1, -8.86181084e-09, -0.999803782, 3.27825546e-07, -0.0198209975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3256. CFrame.new(-0.0879677385, 1.49240708, -0.127746791, 0.0201510563, -0.100440688, -0.994740784, 0.0566197298, 0.99346137, -0.0991647467, 0.998197258, -0.0543235913, 0.0257058665) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3257. CFrame.new(2.03539443, 0.729742587, 0.0108130341, -0.00389442407, -0.967803538, 0.251676887, 0.0148300035, -0.251707017, -0.967689872, 0.999882519, -3.62247229e-05, 0.0153327845) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3258. CFrame.new(-1.64040112, 0.216884568, 1.93210121e-06, 0.962137103, 0.272578239, -7.02217221e-07, -0.272574633, 0.962141275, -9.83368591e-06, -2.00979412e-06, 9.69739631e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3259. CFrame.new(0.64369607, -1.98395038, 0.206737444, 0.19058302, -0.152998164, -0.969677031, 0.0664296299, 0.987527609, -0.142758414, 0.979424179, -0.0372077115, 0.198368743) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3260. CFrame.new(-0.641120076, -1.92643452, -0.0258421432, 0.848103583, 0.133398816, -0.51276207, -0.0662644878, 0.986892581, 0.147146463, 0.52567035, -0.0908175632, 0.845826566) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3261. }, .3, false)
  3262. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3263. end
  3264. partasdeff.Enabled=false
  3265. for i = 0, 2, 0.1 do
  3266. swait()
  3267. PlayAnimationFromTable({
  3268. CFrame.new(0.0150662307, -4.88092428e-06, 0.0148906102, -0.01982099, -1.08002496e-12, 0.999803543, -4.46946984e-07, 1, -8.86181084e-09, -0.999803782, 3.27825546e-07, -0.0198209975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3269. CFrame.new(-0.00189219415, 1.50098944, -0.129972562, 0.0201512501, 0.0765038878, -0.996864021, 0.0566192083, 0.995383799, 0.0775336027, 0.998202145, -0.0580037907, 0.0157258138) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3270. CFrame.new(2.01696348, 0.389823437, -0.060955409, -0.000397110358, -0.999624014, -0.0274192169, 0.00981300231, 0.0274140034, -0.999576092, 0.999951839, -0.0006660074, 0.00979842618) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3271. CFrame.new(-1.64040112, 0.216884568, 1.93210121e-06, 0.962137103, 0.272578239, -7.02217221e-07, -0.272574633, 0.962141275, -9.83368591e-06, -2.00979412e-06, 9.69739631e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3272. CFrame.new(0.64369607, -1.98395038, 0.206737444, 0.19058302, -0.152998164, -0.969677031, 0.0664296299, 0.987527609, -0.142758414, 0.979424179, -0.0372077115, 0.198368743) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3273. CFrame.new(-0.641120076, -1.92643452, -0.0258421432, 0.848103583, 0.133398816, -0.51276207, -0.0662644878, 0.986892581, 0.147146463, 0.52567035, -0.0908175632, 0.845826566) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3274. }, .3, false)
  3275. moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3276. end
  3277. coroutine.wrap(function()
  3278. wait()
  3279. partasdeff:Remove()
  3280. end)()
  3281. else
  3282. sel = math.random(1,4)
  3283. if sel == 1 then
  3284. chatfunc("...")
  3285. elseif sel == 2 then
  3286. chatfunc("No...")
  3287. elseif sel == 3 then
  3288. chatfunc("I cant kill him...")
  3289. elseif sel == 4 then
  3290. chatfunc("What am I doing?")
  3291. end
  3292. for i = 0, 5, 0.1 do
  3293. swait()
  3294. PlayAnimationFromTable({
  3295. CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3296. CFrame.new(-0.055980958, 1.49253583, -0.318915963, 0.999889553, 0.0107171191, -0.0102898544, -0.00218299939, 0.791040659, 0.611759722, 0.0146959936, -0.61166966, 0.790976703) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  3297. CFrame.new(1.54004693, 0.0494250022, 1.90734852e-06, 0.997847795, -0.0655719861, 0, 0.0655719936, 0.997847855, 7.53468894e-22, -4.94064563e-23, -7.51847299e-22, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3298. CFrame.new(-1.51232088, 0.0410207808, -3.73942044e-06, 0.998558879, 0.053665854, -2.33806347e-07, -0.0536658242, 0.998558939, -1.04548817e-05, -3.27600219e-07, 1.04523697e-05, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3299. CFrame.new(0.540300906, -1.99793804, -2.11055158e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3300. CFrame.new(-0.539562821, -1.99794102, -5.75710146e-09, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3301. }, .3, false)
  3302. moter.C0 = clerp(moter.C0, CFrame.new(0.0111967381, -1.6377008, -0.318754196, -0.0172117949, 0, -0.999851942, 0.999851942, 0, -0.0172117949, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3303. end
  3304. end
  3305. Humanoid.WalkSpeed = 9
  3306. attack = false
  3307. end
  3308.  
  3309. local Grabbed = false
  3310.  
  3311. function hedshoot()
  3312. attack = true
  3313.  
  3314. --local GGyro = Instance.new("BodyPosition")
  3315. local grab = nil
  3316. for i, v in pairs(FindNearestTorso(Torso.CFrame.p, 8)) do
  3317. if v:FindFirstChild('Torso') then
  3318. Grabbed = true
  3319. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=260430060", v.Torso, 4.5, .8)
  3320. grab = v
  3321. end
  3322. end
  3323. Effects.Wave.Create(BrickColor.new("Really black"), RootPart.CFrame * CFrame.Angles(0,math.rad(90),math.rad(90)), .5, .5, .5, 1, .2, 1, 0.07)
  3324. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=120766256", RootPart, 4.5, .68)
  3325. for i = 0, 1, 0.1 do
  3326. swait()
  3327. if Grabbed == true then
  3328. grab.Humanoid.PlatformStand = true
  3329. --GGyro.position = Partss.Position
  3330. --GGyro.Parent = grab.Head
  3331. grab.Torso.CFrame = Partss.CFrame * CFrame.Angles(0,math.rad(-90),0)
  3332. end
  3333. PlayAnimationFromTable({
  3334. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3335. CFrame.new(0.0029296279, 1.47845411, -0.120581962, 0.0750327855, 0.428286105, -0.900522709, 0.166523039, 0.885005891, 0.434781253, 0.983178616, -0.18258062, -0.00491504371) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3336. CFrame.new(1.96751118, 0.433084905, -0.278422326, 0.305184275, -0.951701581, -0.033564698, 0.012345003, 0.0391969904, -0.999155343, 0.952213347, 0.304512084, 0.0237110667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3337. CFrame.new(-1.66092706, 0.266950369, 2.51774691e-06, 0.876968205, 0.480548859, -2.5331974e-06, -0.480548888, 0.876968026, -7.03267551e-06, -1.13248825e-06, 7.38352537e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3338. CFrame.new(0.146832585, -1.7542398, 0.105335698, 0.266426086, 0.491796821, -0.828946948, 0.0135936746, 0.8580302, 0.513420045, 0.96375972, -0.148056909, 0.221916124) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3339. CFrame.new(-1.09110987, -1.74702656, 0.342675447, 0.765578806, 0.632523358, 0.117487431, -0.642276406, 0.740949869, 0.196148768, 0.0370163769, -0.225626737, 0.973510265) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3340. }, .3, false)
  3341. RootPart.Velocity = RootPart.CFrame.lookVector * 180
  3342.  
  3343. moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3344. end
  3345. if Grabbed == true then
  3346. Humanoid.WalkSpeed = 0
  3347. for i = 0, .3, 0.1 do
  3348. swait()
  3349. if Grabbed == true then
  3350. grab.Humanoid.PlatformStand = true
  3351. --GGyro.position = Partss.Position
  3352. --GGyro.Parent = grab.Head
  3353. grab.Torso.CFrame = Partss.CFrame * CFrame.Angles(0,math.rad(-90),0)
  3354. end
  3355. PlayAnimationFromTable({
  3356. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3357. CFrame.new(0.0029296279, 1.47845411, -0.120581962, 0.0750327855, 0.428286105, -0.900522709, 0.166523039, 0.885005891, 0.434781253, 0.983178616, -0.18258062, -0.00491504371) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3358. CFrame.new(1.96751118, 0.433084905, -0.278422326, 0.305184275, -0.951701581, -0.033564698, 0.012345003, 0.0391969904, -0.999155343, 0.952213347, 0.304512084, 0.0237110667) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3359. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3360. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3361. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3362. }, .3, false)
  3363. moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3364. end
  3365. if grab.Name ~= "pdnghiaqoi" then
  3366. local partasdeff = Instance.new("ParticleEmitter",grab.Torso)
  3367. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  3368. partasdeff.LightEmission = .1
  3369. partasdeff.Size = NumberSequence.new(0.2)
  3370. partasdeff.Texture = "http://www.roblox.com/asset/?ID=771221224"
  3371. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  3372. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  3373. partasdeff.Transparency = bbb
  3374. partasdeff.Size = aaa
  3375. partasdeff.ZOffset = .9
  3376. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  3377. partasdeff.LockedToPart = false
  3378. partasdeff.EmissionDirection = "Back"
  3379. partasdeff.Lifetime = NumberRange.new(1, 2)
  3380. partasdeff.Rate = 1000
  3381. partasdeff.Rotation = NumberRange.new(-100, 100)
  3382. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  3383. partasdeff.Speed = NumberRange.new(10)
  3384. partasdeff.VelocitySpread = 20
  3385. partasdeff.Enabled=false
  3386. sel = math.random(1,5)
  3387. if sel == 1 then
  3388. chatfunc("You're done for.")
  3389. elseif sel == 2 then
  3390. chatfunc("You asked for it.")
  3391. elseif sel == 3 then
  3392. chatfunc("Goodbye.")
  3393. elseif sel == 4 then
  3394. chatfunc("Game, over.")
  3395. elseif sel == 5 then
  3396. chatfunc("Heh..")
  3397. end
  3398. for i = 0, 2, 0.1 do
  3399. swait()
  3400. if Grabbed == true then
  3401. grab.Humanoid.PlatformStand = true
  3402. --GGyro.position = Partss.Position
  3403. --GGyro.Parent = grab.Head
  3404. grab.Torso.CFrame = Partss.CFrame * CFrame.Angles(0,math.rad(-90),0)
  3405. end
  3406. PlayAnimationFromTable({
  3407. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3408. CFrame.new(-0.0791492164, 1.44711375, -0.0994036943, 0.0100336075, -0.292051941, -0.95634979, -0.000366999942, 0.956396878, -0.29207015, 0.999949574, 0.00328149647, 0.00948894024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3409. CFrame.new(1.94523025, 1.02494264, -0.272673488, 0.287940055, -0.795002162, 0.533912063, 0.0434400104, -0.546107173, -0.836588264, 0.956662774, 0.264080375, -0.122711219) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3410. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3411. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3412. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3413. }, .1, false)
  3414. moter.C0 = clerp(moter.C0, CFrame.new(0.0111939851, -1.63769794, -0.31875661, -0.0172049776, -1.39437616e-05, -0.999852121, 0.999852002, 5.96046448e-06, -0.0172049757, 6.16908073e-06, -1, 1.38394535e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3415. end
  3416. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  3417. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  3418. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  3419. dmg(grab)
  3420. grab.Head.Velocity = grab.Head.CFrame.lookVector * -60
  3421. partasdeff.Enabled=true
  3422. for i = 0, 1, 0.1 do
  3423. swait()
  3424. PlayAnimationFromTable({
  3425. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3426. CFrame.new(-0.0791492164, 1.44711375, -0.0994036943, 0.0100336075, -0.292051941, -0.95634979, -0.000366999942, 0.956396878, -0.29207015, 0.999949574, 0.00328149647, 0.00948894024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3427. CFrame.new(1.95760894, 1.20200562, -0.275867403, 0.278526366, -0.669772983, 0.688351095, 0.0506580099, -0.705469668, -0.706927419, 0.959091723, 0.23176837, -0.162562534) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3428. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3429. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3430. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3431. }, .3, false)
  3432. moter.C0 = clerp(moter.C0, CFrame.new(0.0111932531, -1.63769579, -0.318755656, -0.0172050633, -1.61863863e-05, -0.999852121, 0.999851882, 5.15580177e-06, -0.017205067, 5.453825e-06, -1, 1.60960481e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3433. end
  3434. partasdeff.Enabled=false
  3435. for i = 0, 2.5, 0.1 do
  3436. swait()
  3437. PlayAnimationFromTable({
  3438. CFrame.new(0.104281992, -1.37529127e-22, -0.179345995, 0.249840975, 5.92156003e-22, 0.968286872, -5.57068883e-22, 1, -4.67813147e-22, -0.968286872, -4.22523594e-22, 0.249840975) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3439. CFrame.new(-0.0791492164, 1.44711375, -0.0994036943, 0.0100336075, -0.292051941, -0.95634979, -0.000366999942, 0.956396878, -0.29207015, 0.999949574, 0.00328149647, 0.00948894024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3440. CFrame.new(1.94523025, 1.02494264, -0.272673488, 0.287940055, -0.795002162, 0.533912063, 0.0434400104, -0.546107173, -0.836588264, 0.956662774, 0.264080375, -0.122711219) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3441. CFrame.new(-1.58139038, 0.176945746, 5.27966768e-06, 0.939729631, 0.341920435, -3.69548798e-06, -0.341920793, 0.93972975, -6.50105221e-06, -5.81145287e-07, 6.40749931e-06, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3442. CFrame.new(0.569345832, -1.89868093, -0.00942828506, 0.266425997, -0.0769406706, -0.960779786, 0.0135936281, 0.997010291, -0.0760724545, 0.963760078, 0.00720720552, 0.266675085) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3443. CFrame.new(-0.849354744, -2.01616573, 0.241646215, 0.948664129, 0.308412433, 0.0701368451, -0.312046438, 0.948832989, 0.0484089628, -0.0516182035, -0.0678096861, 0.996362925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3444. }, .2, false)
  3445. moter.C0 = clerp(moter.C0, CFrame.new(0.0111939851, -1.63769794, -0.31875661, -0.0172049776, -1.39437616e-05, -0.999852121, 0.999852002, 5.96046448e-06, -0.0172049757, 6.16908073e-06, -1, 1.38394535e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3446. end
  3447. coroutine.wrap(function()
  3448. wait(2)
  3449. partasdeff:Remove()
  3450. end)()
  3451. else
  3452. grab.Humanoid.PlatformStand = false
  3453. for i = 0, 3, 0.1 do
  3454. swait()
  3455. PlayAnimationFromTable({
  3456. CFrame.new(0.104280457, -1.46030498e-22, -0.179343686, 0.249860913, 5.18448626e-22, 0.968281686, -5.82335151e-22, 1, -5.29395592e-22, -0.968281686, -3.70576914e-22, 0.249860913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3457. CFrame.new(0.00671941042, 1.48144531, -0.121562012, 0.0679168552, 0.388981611, -0.918738663, 0.158512011, 0.904961228, 0.394866198, 0.985018492, -0.172449201, -0.000196114182) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3458. CFrame.new(1.5714488, -0.100437641, -0.219321564, 0.297819793, -0.653239965, -0.696118593, -0.0311920028, 0.722160041, -0.691022456, 0.954112411, 0.227513462, 0.194697708) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3459. CFrame.new(-1.5814501, 0.177012652, 5.41775626e-06, 0.939689815, 0.342028022, -2.68220901e-06, -0.342027992, 0.939689755, -6.1805149e-06, 4.17232513e-07, 6.72787428e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3460. CFrame.new(0.569012046, -1.89856982, -0.00933695585, 0.266445845, -0.0764764398, -0.960811257, 0.0135949478, 0.997046292, -0.075590536, 0.963754177, 0.00707861409, 0.266698539) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3461. CFrame.new(-0.849534154, -2.01595497, 0.241721377, 0.948572636, 0.308689058, 0.070150286, -0.312330276, 0.948733151, 0.0485308319, -0.0515729487, -0.067945078, 0.996355295) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3462. }, .1, false)
  3463. moter.C0 = clerp(moter.C0, CFrame.new(0.0111981034, -1.63767779, -0.318741798, -0.0172085222, -1.4077872e-05, -0.999851882, 0.999851942, 7.4505806e-06, -0.0172085222, 7.68899918e-06, -1.00000012, 1.39512122e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3464. end
  3465. sel = math.random(1,3)
  3466. if sel == 1 then
  3467. chatfunc("I'm stupid...")
  3468. elseif sel == 2 then
  3469. chatfunc("What am I even doing...?")
  3470. elseif sel == 3 then
  3471. chatfunc("...Silly me.")
  3472. end
  3473. for i = 0, 5, 0.1 do
  3474. swait()
  3475. PlayAnimationFromTable({
  3476. CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3477. CFrame.new(-0.0399715528, 1.42130852, -0.217550665, 0.985933542, -0.136098281, -0.097015582, 0.166522697, 0.849608123, 0.500436008, 0.0143167432, -0.509551942, 0.860320628) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  3478. CFrame.new(1.57258642, 0.0433240086, 3.83948304e-08, 0.990993857, -0.133906633, -2.60571618e-08, 0.133906662, 0.990993977, 5.96046341e-08, 1.78410318e-08, -6.25570422e-08, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3479. CFrame.new(-0.693957031, 0.999676406, -0.811627388, 0.817211449, -0.569911301, -0.0858340934, -0.499626935, -0.626295447, -0.598442137, 0.287295371, 0.531934083, -0.796558976) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3480. CFrame.new(0.540301144, -1.99792778, 1.70425119e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3481. CFrame.new(-0.539563119, -1.99793291, 1.9016752e-06, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3482. }, .3, false)
  3483. moter.C0 = clerp(moter.C0, CFrame.new(0.0111991819, -1.63769639, -0.318748534, -0.0172109455, -5.96046448e-08, -0.999852002, 0.999852061, -1.19209318e-07, -0.0172108412, 5.96046519e-08, -0.99999994, -1.19209275e-07) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3484. end
  3485. end
  3486. end
  3487. --GGyro.Parent = nil
  3488. attack = false
  3489. Grabbed = false
  3490. Humanoid.WalkSpeed = 9
  3491.  
  3492. end
  3493. function moarblood()
  3494. attack = true
  3495. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=541710285", Character, 3, 1)
  3496. RootPart.CFrame = targetted.Torso.CFrame * CFrame.new(0,0,4)
  3497. local k = New("Part",LeftArm,"k",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Neon,Transparency = 1,Transparency = 1,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.221472204, 0.221472189),CFrame = CFrame.new(4.93319941, -1.31948221, -45.7696877, 0.141969427, -5.55023435e-05, -0.989871144, 0.989874005, 1.80069164e-05, 0.141970903, 1.06166653e-05, -1.00000143, 5.59078326e-05),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(.6, 0.164706, 0.207843),})
  3498. mot = New("Weld",k,"mot",{Part0 = k,Part1 = LeftArm,C0 = CFrame.new(0, 0, 0, 0.141969457, 0.989873946, 1.06166663e-05, -5.55023507e-05, 1.80069164e-05, -1.00000167, -0.989871264, 0.141970903, 5.59078399e-05),C1 = CFrame.new(6.67572021e-06, -1.40000057, -3.81469727e-06, 0.989870846, -0.14197053, -1.2531201e-06, 0.141970515, 0.989870906, 1.03843358e-05, -2.33842215e-07, -1.04570581e-05, 0.99999994),})
  3499. wait(.5)
  3500. for i = 0, 0.15, 0.1 do
  3501. swait()
  3502. PlayAnimationFromTable({
  3503. CFrame.new(0.0246932413, -0.0966757834, -0.0092370566, 0.713696778, 5.59592329e-22, 0.700454772, -9.27150216e-22, 1, 1.45779223e-22, -0.700454772, -7.53468894e-22, 0.713696778) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3504. CFrame.new(0.098094359, 1.53651738, -0.281765848, 0.593379974, 0.280785412, -0.754360616, -0.0276839901, 0.943748772, 0.329502523, 0.804446399, -0.174636483, 0.567774832) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3505. CFrame.new(1.58677018, 0.143787161, 0.0495693758, 0.968102753, -0.250522822, -0.00394502282, 0.250228018, 0.965921044, 0.0662006512, -0.0127741396, -0.0650762022, 0.997798622) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3506. CFrame.new(-1.74332106, 0.446618229, -0.859300971, 0.795205951, 0.606264353, -0.0095520094, -0.0538869984, 0.0549720451, -0.997032762, -0.603940368, 0.793361068, 0.0763838589) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3507. CFrame.new(0.648194611, -1.97843742, -0.088139981, 0.954304218, -0.129303336, -0.269414723, 0.107585981, 0.989748061, -0.0939367935, 0.278798997, 0.0606590137, 0.958431959) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3508. CFrame.new(-0.671899676, -2.02211809, 0.00866907835, 0.94230175, 0.108399026, -0.316728801, -0.108764999, 0.993929207, 0.0165804606, 0.316603303, 0.0188252106, 0.948371291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3509. }, .2, false)
  3510. moter.C0 = clerp(moter.C0, CFrame.new(0.0111978557, -1.63769853, -0.318748116, -0.0172083378, 3.06963921e-06, -0.999852002, 0.999851942, -2.01165676e-07, -0.0172083378, -2.4586916e-07, -1, -3.09944153e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3511. end
  3512. if targetted.Name ~= "pdnghiaqoi" then
  3513. local grab = nil
  3514. for i, v in pairs(FindNearestTorso(Torso.CFrame.p, 7)) do
  3515. if v:FindFirstChild('Head') then
  3516. Grabbed = true
  3517. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=260430060", v.Head, 4.5, .8)
  3518. grab = v
  3519. end
  3520. end
  3521. Humanoid.WalkSpeed = 9
  3522. for i = 0, 2, 0.1 do
  3523. swait()
  3524. if Grabbed == true then
  3525. grab.Humanoid.PlatformStand = true
  3526. --GGyro.position = Partss.Position
  3527. --GGyro.Parent = grab.Head
  3528. grab.Head.CFrame = k.CFrame * CFrame.Angles(0,math.rad(-90),0)
  3529. end
  3530. PlayAnimationFromTable({
  3531. CFrame.new(-0.203895777, -0.0966757089, 0.221102715, 0.860356927, 5.59592329e-22, -0.509691954, -9.74120787e-23, 1, 9.33471908e-22, 0.509691954, -7.53468894e-22, 0.860356927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3532. CFrame.new(-0.0263810754, 1.49789393, -0.36129567, 0.83927381, -0.177804202, 0.513814509, -0.0293880031, 0.928800881, 0.369412124, -0.542914331, -0.325137854, 0.774292946) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3533. CFrame.new(1.70567894, 0.192227185, 0.324310064, 0.910149336, -0.402004361, -0.100104719, 0.41140601, 0.848634601, 0.332512379, -0.0487190783, -0.343819588, 0.937771142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3534. CFrame.new(-0.925376594, 0.275374949, -0.912649989, 0.847262561, -0.507846355, 0.155686736, 0.278232396, 0.17463918, -0.944503605, 0.452473402, 0.84355998, 0.289265245) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3535. CFrame.new(0.648186982, -1.97843516, -0.0881449506, 0.954305232, -0.129303262, -0.269411147, 0.107586049, 0.989748061, -0.0939371213, 0.278795511, 0.0606598109, 0.958432913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3536. CFrame.new(-0.671897829, -2.02211738, 0.00865991414, 0.942302644, 0.108399101, -0.316726208, -0.108764961, 0.993929207, 0.0165806562, 0.31660068, 0.0188247077, 0.948372126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3537. }, .25, false)
  3538. moter.C0 = clerp(moter.C0, CFrame.new(0.0111928731, -1.63769662, -0.318741947, -0.0172089636, 8.2552433e-06, -0.999852061, 0.999852061, 7.4505806e-07, -0.0172089189, 5.66244125e-07, -1.00000012, -8.2552433e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3539. end
  3540. if Grabbed == true then
  3541. sel = math.random(1,5)
  3542. if sel == 1 then
  3543. chatfunc("Surprised?")
  3544. elseif sel == 2 then
  3545. chatfunc("What were you looking at?")
  3546. elseif sel == 3 then
  3547. chatfunc("Looking for me?")
  3548. elseif sel == 4 then
  3549. chatfunc("You're hopeless.")
  3550. elseif sel == 5 then
  3551. chatfunc("Hmph.")
  3552. end
  3553. local partasdeff = Instance.new("ParticleEmitter",targetted.Head)
  3554. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  3555. partasdeff.LightEmission = .1
  3556. partasdeff.Size = NumberSequence.new(0.2)
  3557. partasdeff.Texture = "http://www.roblox.com/asset/?ID=771221224"
  3558. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  3559. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  3560. partasdeff.Transparency = bbb
  3561. partasdeff.Size = aaa
  3562. partasdeff.ZOffset = .9
  3563. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  3564. partasdeff.LockedToPart = false
  3565. partasdeff.EmissionDirection = "Back"
  3566. partasdeff.Lifetime = NumberRange.new(1, 2)
  3567. partasdeff.Rate = 1000
  3568. partasdeff.Rotation = NumberRange.new(-100, 100)
  3569. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  3570. partasdeff.Speed = NumberRange.new(6)
  3571. partasdeff.VelocitySpread = 10000
  3572. partasdeff.Enabled=false
  3573. for i = 0, 2.5, 0.1 do
  3574. swait()
  3575. if Grabbed == true then
  3576. grab.Humanoid.PlatformStand = true
  3577. --GGyro.position = Partss.Position
  3578. --GGyro.Parent = grab.Head
  3579. grab.Head.CFrame = k.CFrame * CFrame.Angles(0,math.rad(-90),0)
  3580. end
  3581. PlayAnimationFromTable({
  3582. CFrame.new(-0.203895777, -0.0966757089, 0.221102715, 0.860356927, 5.59592329e-22, -0.509691954, -9.74120787e-23, 1, 9.33471908e-22, 0.509691954, -7.53468894e-22, 0.860356927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3583. CFrame.new(0.0996288583, 1.46053851, -0.148588806, 0.834862471, 0.0359686315, 0.549282432, -0.0103890011, 0.998714745, -0.0496083908, -0.550360739, 0.0357096791, 0.83416307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3584. CFrame.new(1.70567894, 0.192227185, 0.324310064, 0.910149336, -0.402004361, -0.100104719, 0.41140601, 0.848634601, 0.332512379, -0.0487190783, -0.343819588, 0.937771142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3585. CFrame.new(-1.5511272, 1.22937977, -0.634234905, 0.785770595, 0.333147645, 0.521131098, 0.522403002, -0.808557391, -0.270795107, 0.331149668, 0.485022962, -0.809378147) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3586. CFrame.new(0.648186982, -1.97843516, -0.0881449506, 0.954305232, -0.129303262, -0.269411147, 0.107586049, 0.989748061, -0.0939371213, 0.278795511, 0.0606598109, 0.958432913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3587. CFrame.new(-0.684103072, -2.02189779, 0.0673112273, 0.973016024, 0.108399175, -0.203689545, -0.109960191, 0.993929327, 0.00367253274, 0.202851087, 0.0188243091, 0.979028702) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3588. }, .1, false)
  3589. moter.C0 = clerp(moter.C0, CFrame.new(0.0111928731, -1.63769662, -0.318741947, -0.0172089636, 8.2552433e-06, -0.999852061, 0.999852061, 7.4505806e-07, -0.0172089189, 5.66244125e-07, -1.00000012, -8.2552433e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3590. end
  3591. partasdeff.Enabled=true
  3592. grab.Torso.Transparency = 1
  3593. dmg(grab)
  3594. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=245185986", grab.Head, 4.5, .8)
  3595. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=245185986", grab.Head, 4.5, .8)
  3596.  
  3597. coroutine.wrap(function()
  3598. wait(.4)
  3599. partasdeff.Enabled=false
  3600. end)()
  3601. for i = 0, 3.5, 0.1 do
  3602. swait()
  3603. PlayAnimationFromTable({
  3604. CFrame.new(-0.203895777, -0.0966757089, 0.221102715, 0.860356927, 5.59592329e-22, -0.509691954, -9.74120787e-23, 1, 9.33471908e-22, 0.509691954, -7.53468894e-22, 0.860356927) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3605. CFrame.new(0.0996288583, 1.46053851, -0.148588806, 0.834862471, 0.0359686315, 0.549282432, -0.0103890011, 0.998714745, -0.0496083908, -0.550360739, 0.0357096791, 0.83416307) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3606. CFrame.new(1.70567894, 0.192227185, 0.324310064, 0.910149336, -0.402004361, -0.100104719, 0.41140601, 0.848634601, 0.332512379, -0.0487190783, -0.343819588, 0.937771142) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3607. CFrame.new(-1.40260935, 1.29555511, -0.560751677, 0.832364976, 0.188659444, 0.521130562, 0.370884001, -0.88832134, -0.2707977, 0.411842346, 0.418681324, -0.809378505) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3608. CFrame.new(0.648186982, -1.97843516, -0.0881449506, 0.954305232, -0.129303262, -0.269411147, 0.107586049, 0.989748061, -0.0939371213, 0.278795511, 0.0606598109, 0.958432913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3609. CFrame.new(-0.684103072, -2.02189779, 0.0673112273, 0.973016024, 0.108399175, -0.203689545, -0.109960191, 0.993929327, 0.00367253274, 0.202851087, 0.0188243091, 0.979028702) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3610. }, .3, false)
  3611. moter.C0 = clerp(moter.C0, CFrame.new(0.0111928731, -1.63769662, -0.318741947, -0.0172089636, 8.2552433e-06, -0.999852061, 0.999852061, 7.4505806e-07, -0.0172089189, 5.66244125e-07, -1.00000012, -8.2552433e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3612. end
  3613. end
  3614. else
  3615. Humanoid.WalkSpeed = 9
  3616. for i = 0, 3, 0.1 do
  3617. swait()
  3618. PlayAnimationFromTable({
  3619. CFrame.new(0.0246932413, -0.0966757834, -0.0092370566, 0.713696778, 5.59592329e-22, 0.700454772, -9.27150216e-22, 1, 1.45779223e-22, -0.700454772, -7.53468894e-22, 0.713696778) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3620. CFrame.new(0.098094359, 1.53651738, -0.281765848, 0.593379974, 0.280785412, -0.754360616, -0.0276839901, 0.943748772, 0.329502523, 0.804446399, -0.174636483, 0.567774832) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3621. CFrame.new(1.58677018, 0.143787161, 0.0495693758, 0.968102753, -0.250522822, -0.00394502282, 0.250228018, 0.965921044, 0.0662006512, -0.0127741396, -0.0650762022, 0.997798622) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3622. CFrame.new(-1.74332106, 0.446618229, -0.859300971, 0.795205951, 0.606264353, -0.0095520094, -0.0538869984, 0.0549720451, -0.997032762, -0.603940368, 0.793361068, 0.0763838589) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3623. CFrame.new(0.648194611, -1.97843742, -0.088139981, 0.954304218, -0.129303336, -0.269414723, 0.107585981, 0.989748061, -0.0939367935, 0.278798997, 0.0606590137, 0.958431959) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3624. CFrame.new(-0.671899676, -2.02211809, 0.00866907835, 0.94230175, 0.108399026, -0.316728801, -0.108764999, 0.993929207, 0.0165804606, 0.316603303, 0.0188252106, 0.948371291) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3625. }, .2, false)
  3626. moter.C0 = clerp(moter.C0, CFrame.new(0.0111978557, -1.63769853, -0.318748116, -0.0172083378, 3.06963921e-06, -0.999852002, 0.999851942, -2.01165676e-07, -0.0172083378, -2.4586916e-07, -1, -3.09944153e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3627. end
  3628. sel = math.random(1,3)
  3629. if sel == 1 then
  3630. chatfunc("No...")
  3631. elseif sel == 2 then
  3632. chatfunc("Something's wrong...")
  3633. elseif sel == 3 then
  3634. chatfunc("What...?")
  3635. end
  3636. for i = 0, 5, 0.1 do
  3637. swait()
  3638. PlayAnimationFromTable({
  3639. CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3640. CFrame.new(-0.0399715528, 1.42130852, -0.217550665, 0.985933542, -0.136098281, -0.097015582, 0.166522697, 0.849608123, 0.500436008, 0.0143167432, -0.509551942, 0.860320628) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  3641. CFrame.new(1.57258642, 0.0433240086, 3.83948304e-08, 0.990993857, -0.133906633, -2.60571618e-08, 0.133906662, 0.990993977, 5.96046341e-08, 1.78410318e-08, -6.25570422e-08, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3642. CFrame.new(-0.693957031, 0.999676406, -0.811627388, 0.817211449, -0.569911301, -0.0858340934, -0.499626935, -0.626295447, -0.598442137, 0.287295371, 0.531934083, -0.796558976) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3643. CFrame.new(0.540301144, -1.99792778, 1.70425119e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3644. CFrame.new(-0.539563119, -1.99793291, 1.9016752e-06, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3645. }, .3, false)
  3646. moter.C0 = clerp(moter.C0, CFrame.new(0.0111991819, -1.63769639, -0.318748534, -0.0172109455, -5.96046448e-08, -0.999852002, 0.999852061, -1.19209318e-07, -0.0172108412, 5.96046519e-08, -0.99999994, -1.19209275e-07) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3647. end
  3648. end
  3649. attack = false
  3650. Grabbed = false
  3651. k:Remove()
  3652. Humanoid.WalkSpeed = 9
  3653. end
  3654.  
  3655. function painlessrain()
  3656. attack = true
  3657. Humanoid.WalkSpeed = 0
  3658. local ref1 = New("Part",m,"ref",{Transparency = 1,Size = Vector3.new(.2,.2,.2),CFrame = Torso.CFrame,Anchored = true,CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  3659.  
  3660. coroutine.wrap(function()
  3661. for i = 0, 4 do
  3662. wait(.2)
  3663. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=199145095", RootPart, 4.5, 1.3)
  3664. end
  3665. end)()
  3666. for i = 0, 4, 0.1 do
  3667. swait()
  3668. PlayAnimationFromTable({
  3669. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3670. CFrame.new(-0.115934461, 1.42953098, -0.0387745127, 0.0422455594, -0.156738758, -0.986736298, 0.091215007, 0.984098434, -0.152414545, 0.994934857, -0.083566308, 0.0558707118) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3671. CFrame.new(1.88563442, 0.849646449, -0.150348112, 0.134151325, -0.917590559, 0.374207288, 0.151069015, -0.354270071, -0.922860146, 0.979378283, 0.180334046, 0.0910937041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3672. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3673. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3674. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3675. }, .07, false)
  3676. moter.C0 = clerp(moter.C0, CFrame.new(0.00354172289, -1.19249964, -0.318736732, -0.017209189, -1.8668361e-06, -0.999851942, 0.999851882, 1.90734863e-06, -0.0172091946, 1.93715096e-06, -1.00000012, 1.82725489e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, math.rad(doe * 22)), 0.3)
  3677. end
  3678. for i = 0, 1.5, 0.1 do
  3679. swait()
  3680. PlayAnimationFromTable({
  3681. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3682. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3683. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3684. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3685. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3686. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3687. }, .2, false)
  3688. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3689. end
  3690. for i = 0, 3 do
  3691. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  3692. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  3693. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  3694. for i = 0, .5, 0.1 do
  3695. swait()
  3696. PlayAnimationFromTable({
  3697. CFrame.new(0.160087422, -3.66470256e-23, -0.0753137618, 0.15316838, 2.95750466e-22, 0.988200247, 9.50818972e-23, 1, -3.14019425e-22, -0.988200247, 1.42057819e-22, 0.15316838) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3698. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3699. CFrame.new(1.46630716, 1.08524323, -0.0336530581, 0.00764143467, -0.0426861309, 0.999059498, 0.0445286781, -0.998082876, -0.0429849848, 0.998979032, 0.0448152684, -0.0057259798) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3700. CFrame.new(-1.53188026, 0.0735908896, 2.69562906e-06, 0.978447855, 0.206495479, 2.48849392e-06, -0.206495419, 0.978447556, -1.05270137e-05, -4.61935997e-06, 9.78633761e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3701. CFrame.new(0.659685254, -2.0274992, -0.0100700259, 0.00885757804, -0.161218897, -0.986879349, 0.00904085487, 0.986890197, -0.161139548, 0.999920309, -0.00749491528, 0.0101990253) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3702. CFrame.new(-0.566697419, -2.04759264, -0.0995131433, 0.988195002, 0.078684561, 0.131453067, -0.0635149851, 0.991233289, -0.115855575, -0.139416695, 0.106138662, 0.984529436) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3703. }, .3, false)
  3704. moter.C0 = clerp(moter.C0, CFrame.new(0.0112046078, -1.63744116, -0.318734497, -0.0172122065, 2.46167183e-05, -0.999852002, 0.999850631, -0.00159030408, -0.0172121339, -0.00159040466, -0.999998927, 2.57790089e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3705. end
  3706. for i = 0, .5, 0.1 do
  3707. swait()
  3708. PlayAnimationFromTable({
  3709. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3710. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3711. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3712. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3713. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3714. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3715. }, .3, false)
  3716. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3717. end
  3718. end
  3719. attack = false
  3720. Humanoid.WalkSpeed = 9
  3721. wait(.4)
  3722. for i = 0, 8 do
  3723. wait(.2)
  3724. mdmg(ref1, 3)
  3725. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=192410089", Character, 3, .7)
  3726. ref1.Position = Mouse.hit.p
  3727. ref1.CFrame = ref1.CFrame * CFrame.new(math.random(-.5,.5),0,math.random(-.5,.5))
  3728. Effects.Cylinder.Create(BrickColor.new("Deep orange"), ref1.CFrame, .5, 9999, .5, 0.5, 0, 0.5, 0.07)
  3729. end
  3730. ref1:Remove()
  3731. end
  3732.  
  3733. function painlessrain2()
  3734. attack = true
  3735. Humanoid.WalkSpeed = 0
  3736. chatfunc("Try dodging THIS.")
  3737. local ref1 = New("Part",m,"ref",{Transparency = 1,Size = Vector3.new(.2,.2,.2),CFrame = Torso.CFrame,Anchored = true,CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  3738.  
  3739. coroutine.wrap(function()
  3740. for i = 0, 4 do
  3741. wait(.2)
  3742. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=199145095", RootPart, 4.5, 1.3)
  3743. end
  3744. end)()
  3745. for i = 0, 4, 0.1 do
  3746. swait()
  3747. PlayAnimationFromTable({
  3748. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3749. CFrame.new(-0.115934461, 1.42953098, -0.0387745127, 0.0422455594, -0.156738758, -0.986736298, 0.091215007, 0.984098434, -0.152414545, 0.994934857, -0.083566308, 0.0558707118) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3750. CFrame.new(1.88563442, 0.849646449, -0.150348112, 0.134151325, -0.917590559, 0.374207288, 0.151069015, -0.354270071, -0.922860146, 0.979378283, 0.180334046, 0.0910937041) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3751. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3752. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3753. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3754. }, .07, false)
  3755. moter.C0 = clerp(moter.C0, CFrame.new(0.00354172289, -1.19249964, -0.318736732, -0.017209189, -1.8668361e-06, -0.999851942, 0.999851882, 1.90734863e-06, -0.0172091946, 1.93715096e-06, -1.00000012, 1.82725489e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, math.rad(doe * 22)), 0.3)
  3756. end
  3757. for i = 0, 1.5, 0.1 do
  3758. swait()
  3759. PlayAnimationFromTable({
  3760. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3761. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3762. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3763. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3764. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3765. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3766. }, .2, false)
  3767. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3768. end
  3769. for i = 0, 3 do
  3770. Effects.Block.Create(BrickColor.new("Bright red"), Partss.CFrame, 2, 2, 2, 0.9, 0.9, 0.9, 0.05)
  3771. Effects.Block.Create(BrickColor.new("Deep orange"), Partss.CFrame, 2, 2, 2, 0.5, 0.5, 0.5, 0.05)
  3772. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=138137702", Character, 3, .8)
  3773. for i = 0, .5, 0.1 do
  3774. swait()
  3775. PlayAnimationFromTable({
  3776. CFrame.new(0.160087422, -3.66470256e-23, -0.0753137618, 0.15316838, 2.95750466e-22, 0.988200247, 9.50818972e-23, 1, -3.14019425e-22, -0.988200247, 1.42057819e-22, 0.15316838) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3777. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3778. CFrame.new(1.46630716, 1.08524323, -0.0336530581, 0.00764143467, -0.0426861309, 0.999059498, 0.0445286781, -0.998082876, -0.0429849848, 0.998979032, 0.0448152684, -0.0057259798) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3779. CFrame.new(-1.53188026, 0.0735908896, 2.69562906e-06, 0.978447855, 0.206495479, 2.48849392e-06, -0.206495419, 0.978447556, -1.05270137e-05, -4.61935997e-06, 9.78633761e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3780. CFrame.new(0.659685254, -2.0274992, -0.0100700259, 0.00885757804, -0.161218897, -0.986879349, 0.00904085487, 0.986890197, -0.161139548, 0.999920309, -0.00749491528, 0.0101990253) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3781. CFrame.new(-0.566697419, -2.04759264, -0.0995131433, 0.988195002, 0.078684561, 0.131453067, -0.0635149851, 0.991233289, -0.115855575, -0.139416695, 0.106138662, 0.984529436) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3782. }, .3, false)
  3783. moter.C0 = clerp(moter.C0, CFrame.new(0.0112046078, -1.63744116, -0.318734497, -0.0172122065, 2.46167183e-05, -0.999852002, 0.999850631, -0.00159030408, -0.0172121339, -0.00159040466, -0.999998927, 2.57790089e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3784. end
  3785. for i = 0, .5, 0.1 do
  3786. swait()
  3787. PlayAnimationFromTable({
  3788. CFrame.new(0.160091802, -3.66497677e-23, -0.0753167868, 0.153125972, 2.95760942e-22, 0.988206744, 9.50910858e-23, 1, -3.14025256e-22, -0.988206744, 1.42055005e-22, 0.153125986) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3789. CFrame.new(-0.181723118, 1.42154801, -0.0812263489, 0.0422911495, -0.473342478, -0.879862845, 0.0912349299, 0.878800809, -0.468385875, 0.994931221, -0.0604656339, 0.0803508535) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3790. CFrame.new(1.46608233, 1.280774, -0.0335922651, 0.00761340559, -0.0420075022, 0.999088407, 0.0443810038, -0.998118579, -0.0423049256, 0.998985708, 0.044662632, -0.00573477149) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3791. CFrame.new(-1.53188074, 0.0735950321, 2.69606994e-06, 0.978446901, 0.206499115, 2.48849392e-06, -0.2064991, 0.978446841, -1.05276868e-05, -4.61935997e-06, 9.78447497e-06, 1.00000012) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3792. CFrame.new(0.6596874, -2.0274992, -0.0100709619, 0.00881013274, -0.161221251, -0.986878991, 0.00903601572, 0.986890376, -0.161142424, 0.999920428, -0.0074977763, 0.0101515204) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3793. CFrame.new(-0.56669867, -2.04759455, -0.0995163321, 0.988194227, 0.0786855519, 0.131456956, -0.0635150596, 0.991232872, -0.115859069, -0.139420897, 0.106141761, 0.984528303) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3794. }, .3, false)
  3795. moter.C0 = clerp(moter.C0, CFrame.new(0.0112083405, -1.63769615, -0.31873402, -0.0172121376, -2.89082527e-06, -0.999851882, 0.999851942, 4.58210707e-07, -0.0172121413, 5.06639481e-07, -1.00000012, 2.89082527e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3796. end
  3797. end
  3798. attack = false
  3799. Humanoid.WalkSpeed = 9
  3800. wait(.4)
  3801. for i = 0, 150 do
  3802. wait(.001)
  3803. mdmg(ref1, 3)
  3804. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=192410089", Character, 3, .7)
  3805. ref1.Position = Mouse.hit.p
  3806. ref1.CFrame = ref1.CFrame * CFrame.new(math.random(-.5,.5),0,math.random(-.5,.5))
  3807. Effects.Cylinder.Create(BrickColor.new("Deep orange"), ref1.CFrame, .5, 9999, .5, 0.5, 0, 0.5, 0.07)
  3808. end
  3809. ref1:Remove()
  3810. chatfunc("...")
  3811. wait(1.2)
  3812. chatfunc("...Impressive.")
  3813. end
  3814.  
  3815. function TargetSelect(person)
  3816. local dd=coroutine.wrap(function()
  3817. if targetted ~= person then
  3818. targetted = person
  3819. img2.Size = UDim2.new(1,0,1,0)
  3820. img2.ImageTransparency = 0
  3821. img2.Position = UDim2.new(0,0,0,0)
  3822. img3.Size = UDim2.new(1,0,1,0)
  3823. img3.ImageTransparency = 0
  3824. img3.Position = UDim2.new(0,0,0,0)
  3825. for i = 0, 0.001, 0.1 do
  3826. swait()
  3827. img2.Size = img2.Size + UDim2.new(.05,0,.05,0)
  3828. img2.Position = img2.Position + UDim2.new(-.025,0,-.025,0)
  3829. img2.ImageTransparency = img2.ImageTransparency + 0.05
  3830. end
  3831. end
  3832. end)
  3833. dd()
  3834. end
  3835.  
  3836. function LockOn()
  3837. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
  3838. TargetSelect(Mouse.Target.Parent)
  3839. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=263321145", Character, 5, 1)
  3840. chatfunc("Target locked.")
  3841. end
  3842. end
  3843.  
  3844.  
  3845. function ofmoosic() -- 2 lazi hoh
  3846. delays = true
  3847. while wait() and kkk and kkk.Volume >= 0.02 do
  3848. kkk.Volume = kkk.Volume - 0.05
  3849. end
  3850. wait(0.1)
  3851. kkk.Pitch = 0
  3852. kkk.PlaybackSpeed = 0
  3853. play = false
  3854. delays = false
  3855. end
  3856. function onmoosic()
  3857. delays = true
  3858. kkk.Pitch = .6
  3859. kkk.PlaybackSpeed = .6
  3860. while wait() and kkk and kkk.Volume <= 1.5 do
  3861. kkk.Volume = kkk.Volume + 0.05
  3862. end
  3863. wait()
  3864. play = true
  3865. delays = false
  3866. end
  3867. Mouse.Button1Down:connect(function()
  3868. if attack == false and targetted ~= nil then
  3869. attackone()
  3870. end
  3871. end)
  3872.  
  3873. Mouse.KeyDown:connect(function(k)
  3874. k = k:lower()
  3875. if attack == false and k == 'q' then
  3876. LockOn()
  3877. end
  3878. if k == 'z' and attack == false then
  3879. hedshoot()
  3880. elseif k == 'x' and attack == false and targetted ~= nil then
  3881. moarblood()
  3882. elseif k == 'c' and attack == false then
  3883. painlessrain()
  3884. elseif k == 'v' and attack == false then
  3885. painlessrain2()
  3886. elseif k == 'g' and delays == false and Character.Name == "VictoriaChristophe" then
  3887. delays = true
  3888. chatfunc("Hey, err..")
  3889. wait(2)
  3890. chatfunc("I wanna ask you something.")
  3891. wait(2)
  3892. chatfunc("Would you be my..")
  3893. wait(1.1)
  3894. chatfunc("Sacrific--")
  3895. wait(.6)
  3896. chatfunc("...")
  3897. wait(1.8)
  3898. chatfunc("Forget that.")
  3899. delays = false
  3900. elseif k == 'm' and play == true and delays == false then
  3901. ofmoosic()
  3902. elseif k == 'm' and play == false and delays == false then
  3903. onmoosic()
  3904. end
  3905. end)
  3906.  
  3907. kkk = Instance.new("Sound",Character)
  3908. kkk.Volume = 5
  3909. kkk.PlaybackSpeed = 0
  3910. kkk.Pitch = .8
  3911. kkk.SoundId = "rbxassetid://161648876"
  3912. kkk:Play()
  3913. kkk.Name = "a"
  3914. kkk.Looped = true
  3915.  
  3916.  
  3917. coroutine.wrap(function()
  3918. while true do
  3919. swait()
  3920. for i, v in pairs(Character.WeaponModel:GetChildren()) do
  3921. if v:IsA("Part") then
  3922. v.Anchored = false
  3923. end
  3924. end
  3925. for i, v in pairs(Character:GetChildren()) do
  3926. if v:IsA("Part") then
  3927. v.Anchored = false
  3928. elseif v:IsA("Accessory") then
  3929. v.Handle.Anchored = false
  3930. end
  3931. end
  3932. end
  3933. end)()
  3934. coroutine.wrap(function()
  3935. while 1 do
  3936. swait()
  3937. if doe <= 360 then
  3938. doe = doe + 2
  3939. else
  3940. doe = 0
  3941. end
  3942. end
  3943. end)()
  3944. while true do
  3945. swait()
  3946. for i, v in pairs(Character:GetChildren()) do
  3947. if v:IsA("Part") then
  3948. v.Material = "Neon"
  3949. elseif v:IsA("Accessory") then
  3950. v:WaitForChild("Handle").Material = "Neon"
  3951. end
  3952. end
  3953. while true do
  3954. swait()
  3955. Character.Humanoid.MaxHealth = math.huge
  3956. Character.Humanoid.Health = math.huge
  3957. imgl.Rotation = imgl.Rotation + 3
  3958. imgf.Rotation = imgf.Rotation + 3
  3959. img2.Rotation = img2.Rotation + 3
  3960. img3.Rotation = img3.Rotation + 3
  3961. if targetted ~= nil then
  3962. abss.Adornee = targetted:FindFirstChild("Torso") or targetted:FindFirstChild("UpperTorso")
  3963. abss.Enabled = true
  3964. elseif targetted == nil then
  3965. abss.Adornee = nil
  3966. abss.Enabled = false
  3967. end
  3968.  
  3969. while true and imgl.Rotation >= 360 do
  3970. imgl.Rotation = 0
  3971. imgf.Rotation = 0
  3972. img2.Rotation = 0
  3973. img3.Rotation = 0
  3974. end
  3975. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  3976. velocity = RootPart.Velocity.y
  3977. sine = sine + change
  3978. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  3979. if RootPart.Velocity.y > 1 and hit == nil then
  3980. Anim = "Jump"
  3981. if attack == false then
  3982. PlayAnimationFromTable({
  3983. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3984. CFrame.new(-0.0579944476, 1.48445117, -0.000906195492, 0.999631822, -0.0259140469, -0.00804444961, 0.0262291897, 0.998776913, 0.0419151038, 0.0069484422, -0.0421099029, 0.999089062) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3985. CFrame.new(1.68067598, 0.167780995, 5.50026158e-08, 0.965881884, -0.258982956, -3.41060513e-13, 0.258982956, 0.965881884, 4.47034836e-07, 8.49010675e-08, 3.16640808e-07, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3986. CFrame.new(-1.67620921, 0.188169807, -3.04922651e-07, 0.95698452, 0.290146649, -2.61441073e-07, -0.290146649, 0.95698452, -1.0069979e-05, -2.89639524e-06, 1.04542296e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3987. CFrame.new(0.537238836, -1.93797374, 0.176598221, 0.998698533, -0.0506777391, -0.00574572897, 0.0510024093, 0.992341697, 0.112511501, -6.35704041e-08, -0.112657718, 0.993634105) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3988. CFrame.new(-0.536944568, -1.94808352, 0.126473114, 0.998626292, 0.0520468242, 0.00521374354, -0.0523067154, 0.993665218, 0.0995327011, -3.84102691e-07, -0.099668026, 0.995023906) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3989. }, .3, false)
  3990. moter.C0 = clerp(moter.C0, CFrame.new(0.0111988392, -1.63769972, -0.318750381, -0.0172117054, 0, -0.999851942, 0.999851942, 0, -0.0172116756, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3991. end
  3992. elseif RootPart.Velocity.y < -1 and hit == nil then
  3993. Anim = "Fall"
  3994. if attack == false then
  3995. PlayAnimationFromTable({
  3996. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3997. CFrame.new(-0.0576509275, 1.50532985, -0.129091382, 0.999631822, -0.0231846143, -0.0140984114, 0.0262298863, 0.958684564, 0.283279002, 0.00694822101, -0.283544153, 0.958935201) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3998. CFrame.new(1.68622994, 0.21415168, 7.02040666e-08, 0.881990671, -0.471266806, -3.41060513e-13, 0.471266806, 0.881990671, 4.47034836e-07, 1.54493137e-07, 2.89139166e-07, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  3999. CFrame.new(-1.72513735, 0.240890861, 2.54038241e-07, 0.814108491, 0.58071363, -2.61430017e-07, -0.580713034, 0.814108849, -1.00698489e-05, -6.08482924e-06, 8.98058715e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4000. CFrame.new(0.536720514, -1.92783141, 0.223740995, 0.998698533, -0.0498600565, -0.0107376017, 0.0510031059, 0.976314366, 0.210260883, -3.04512355e-07, -0.210534185, 0.977587521) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4001. CFrame.new(-0.535922825, -1.92850935, 0.222419083, 0.99863112, 0.0512506701, 0.0104565797, -0.0523065142, 0.978474379, 0.199629858, -3.7062793e-07, -0.199902818, 0.97981596) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4002. }, .3, false)
  4003. moter.C0 = clerp(moter.C0, CFrame.new(0.0112015437, -1.63769758, -0.318750381, -0.0172110498, 0, -0.999851942, 0.999851942, 0, -0.0172110498, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  4004. end
  4005. elseif Torsovelocity < 1 and hit ~= nil then
  4006. Anim = "Idle"
  4007. if attack == false then
  4008. change = 1
  4009. PlayAnimationFromTable({
  4010. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4011. CFrame.new(-0.0575585738, 1.52553558, -0.218724757, 0.985934377, -0.143356442, -0.0859283879, 0.166522771, 0.886584163, 0.431554198, 0.0143168001, -0.439792335, 0.897985697) * CFrame.new(0, -.05- .05 * math.cos((sine) / 55), 0- .05 * math.cos((sine) / 55)) * CFrame.Angles(math.rad(0 - 5 * math.cos((sine) / 55)), 0, 0),
  4012. CFrame.new(1.54809988, 0.041232653, 1.35168499e-08, 0.996376455, -0.0850530341, -3.41060513e-13, 0.0850530341, 0.996376455, 4.47034836e-07, 2.78823862e-08, 3.26637689e-07, 1.00000024) * CFrame.new(0- 0.025 * math.cos((sine) / 45), 0, 0) * CFrame.Angles(0, 0, 0- 0.05 * math.cos((sine) / 45)),
  4013. CFrame.new(-1.53598976, 0.0413191095, -1.86092848e-06, 0.995650649, 0.0931596532, -2.61508148e-07, -0.0931649953, 0.995651186, -1.00695124e-05, -7.49969331e-07, 1.08217946e-05, 1.00000024) * CFrame.new(0+ 0.025 * math.cos((sine) / 45), 0, 0) * CFrame.Angles(0, 0, 0+ 0.05 * math.cos((sine) / 45)),
  4014. CFrame.new(0.540300786, -1.99793816, -9.82598067e-07, 0.998698533, -0.0510031395, 6.36324955e-07, 0.0510031395, 0.998698533, -1.00461093e-05, -8.35937328e-08, 1.08393433e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4015. CFrame.new(-0.539563596, -1.99794078, 1.12228372e-06, 0.998635888, 0.0523072146, -1.77852357e-07, -0.0523072146, 0.998635888, -1.00715051e-05, -3.89727461e-07, 1.08406466e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4016. }, .3, false)
  4017. moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  4018. end
  4019. elseif Torsovelocity > 2 and hit ~= nil then
  4020. Anim = "Walk"
  4021. if attack == false then
  4022. PlayAnimationFromTable({
  4023. CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0- .08 * math.cos((sine) / 5), 0) * CFrame.Angles(0, 0, 0),
  4024. CFrame.new(-0.0595112406, 1.55331731, -0.0425721854, 0.999631822, -0.0248252042, -0.010953242, 0.0262294486, 0.987443328, 0.155781403, 0.00694842171, -0.156010598, 0.987731278) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  4025. CFrame.new(1.54809988, 0.041232653, 1.35168499e-08, 0.996376455, -0.0850530341, -3.41060513e-13, 0.0850530341, 0.996376455, 4.47034836e-07, 2.78823862e-08, 3.26637689e-07, 1.00000024) * CFrame.new(0, 0, 0- .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 10)), 0, 0),
  4026. CFrame.new(-1.53598976, 0.0413191095, -1.86092848e-06, 0.995650649, 0.0931596532, -2.61508148e-07, -0.0931649953, 0.995651186, -1.00695124e-05, -7.49969331e-07, 1.08217946e-05, 1.00000024) * CFrame.new(0, 0, 0+ .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 10)), 0, 0),
  4027. CFrame.new(0.540300786, -1.99793816, -9.82598067e-07, 0.998698533, -0.0510031395, 6.36324955e-07, 0.0510031395, 0.998698533, -1.00461093e-05, -8.35937328e-08, 1.08393433e-05, 1.00000024) * CFrame.new(0, 0, 0+ .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 10)), 0, 0),
  4028. CFrame.new(-0.539563596, -1.99794078, 1.12228372e-06, 0.998635888, 0.0523072146, -1.77852357e-07, -0.0523072146, 0.998635888, -1.00715051e-05, -3.89727461e-07, 1.08406466e-05, 1.00000024) * CFrame.new(0, 0, 0- .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 10)), 0, 0),
  4029. }, .3, false)
  4030. moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  4031. end
  4032. end
  4033. if 0 < #Effects then
  4034. for e = 1, #Effects do
  4035. if Effects[e] ~= nil then
  4036. local Thing = Effects[e]
  4037. if Thing ~= nil then
  4038. local Part = Thing[1]
  4039. local Mode = Thing[2]
  4040. local Delay = Thing[3]
  4041. local IncX = Thing[4]
  4042. local IncY = Thing[5]
  4043. local IncZ = Thing[6]
  4044. if Thing[2] == "Shoot" then
  4045. local Look = Thing[1]
  4046. local move = 30
  4047. if Thing[8] == 3 then
  4048. move = 10
  4049. end
  4050. local hit, pos = rayCast(Thing[4], Thing[1], move, m)
  4051. if Thing[10] ~= nil then
  4052. da = pos
  4053. cf2 = CFrame.new(Thing[4], Thing[10].Position)
  4054. cfa = CFrame.new(Thing[4], pos)
  4055. tehCF = cfa:lerp(cf2, 0.2)
  4056. Thing[1] = tehCF.lookVector
  4057. end
  4058. local mag = (Thing[4] - pos).magnitude
  4059. Effects["Head"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * 5, 1, 0.5, 0, 0.5, 0.2)
  4060. if Thing[8] == 2 then
  4061. Effects["Ring"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0) * CFrame.fromEulerAnglesXYZ(1.57, 0, 0), 1, 1, 0.1, 0.5, 0.5, 0.1, 0.1, 1)
  4062. end
  4063. Thing[4] = Thing[4] + Look * move
  4064. Thing[3] = Thing[3] - 1
  4065. if 2 < Thing[5] then
  4066. Thing[5] = Thing[5] - 0.3
  4067. Thing[6] = Thing[6] - 0.3
  4068. end
  4069. if hit ~= nil then
  4070. Thing[3] = 0
  4071. if Thing[8] == 1 or Thing[8] == 3 then
  4072. Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  4073. else
  4074. if Thing[8] == 2 then
  4075. Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  4076. if (hit.Parent:findFirstChild("Humanoid")) ~= nil or (hit.Parent.Parent:findFirstChild("Humanoid")) ~= nil then
  4077. ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  4078. ref.Anchored = true
  4079. ref.CFrame = CFrame.new(pos)
  4080. CFuncs["Sound"].Create("161006093", ref, 1, 1.2)
  4081. game:GetService("Debris"):AddItem(ref, 0.2)
  4082. Effects["Block"].Create(Torso.BrickColor, CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 1, 10, 10, 10, 0.1, 2)
  4083. Effects["Ring"].Create(BrickColor.new("Bright yellow"), CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 0.1, 4, 4, 0.1, 0.1)
  4084. MagnitudeDamage(ref, 15, Thing[5] / 1.5, Thing[6] / 1.5, 0, "Normal", "", 1)
  4085. end
  4086. end
  4087. end
  4088. ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  4089. ref.Anchored = true
  4090. ref.CFrame = CFrame.new(pos)
  4091. Effects["Sphere"].Create(Torso.BrickColor, CFrame.new(pos), 5, 5, 5, 1, 1, 1, 0.07)
  4092. game:GetService("Debris"):AddItem(ref, 1)
  4093. end
  4094. if Thing[3] <= 0 then
  4095. table.remove(Effects, e)
  4096. end
  4097. end
  4098. do
  4099. do
  4100. if Thing[2] == "FireWave" then
  4101. if Thing[3] <= Thing[4] then
  4102. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(0, 1, 0)
  4103. Thing[3] = Thing[3] + 1
  4104. Thing[6].Scale = Thing[6].Scale + Vector3.new(Thing[5], 0, Thing[5])
  4105. else
  4106. Part.Parent = nil
  4107. table.remove(Effects, e)
  4108. end
  4109. end
  4110. if Thing[2] ~= "Shoot" and Thing[2] ~= "Wave" and Thing[2] ~= "FireWave" then
  4111. if Thing[1].Transparency <= 1 then
  4112. if Thing[2] == "Block1" then
  4113. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  4114. Mesh = Thing[7]
  4115. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4116. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4117. else
  4118. if Thing[2] == "Block2" then
  4119. Thing[1].CFrame = Thing[1].CFrame
  4120. Mesh = Thing[7]
  4121. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4122. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4123. else
  4124. if Thing[2] == "Fire" then
  4125. Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  4126. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  4127. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4128. else
  4129. if Thing[2] == "Cylinder" then
  4130. Mesh = Thing[7]
  4131. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4132. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4133. else
  4134. if Thing[2] == "Blood" then
  4135. Mesh = Thing[7]
  4136. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 0.5, 0)
  4137. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  4138. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4139. else
  4140. if Thing[2] == "Elec" then
  4141. Mesh = Thing[10]
  4142. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  4143. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4144. else
  4145. if Thing[2] == "Disappear" then
  4146. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4147. else
  4148. if Thing[2] == "Shatter" then
  4149. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  4150. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  4151. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  4152. Thing[6] = Thing[6] + Thing[5]
  4153. end
  4154. end
  4155. end
  4156. end
  4157. end
  4158. end
  4159. end
  4160. end
  4161. else
  4162. Part.Parent = nil
  4163. table.remove(Effects, e)
  4164. end
  4165. end
  4166. end
  4167. end
  4168. end
  4169. end
  4170. end
  4171. end
  4172. end
  4173. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement