Advertisement
Dark_EccentricYT

Untitled

Oct 30th, 2017
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 133.62 KB | None | 0 0
  1. --[[Credits to Ace_Alteriano for his Template]]--
  2. --[[By When_kun]]--
  3. --[[The model took time to make but it was worth it.]]--
  4. --[[x is cringey]]--
  5. wait(1 / 60)
  6. Effects = { }
  7. local Player = game.Players.localPlayer
  8. local Character = Player.Character
  9. local Humanoid = Character.Humanoid
  10. local Mouse = Player:GetMouse()
  11. local mouse, Mouse = Player:GetMouse(), Player:GetMouse()
  12. local LeftArm = Character["Left Arm"]
  13. local RightArm = Character["Right Arm"]
  14. local LeftLeg = Character["Left Leg"]
  15. local RightLeg = Character["Right Leg"]
  16. local Head = Character.Head
  17. local Torso = Character.Torso
  18. local Camera = game.Workspace.CurrentCamera
  19. local RootPart = Character.HumanoidRootPart
  20. local RootJoint = RootPart.RootJoint
  21. local attack = false
  22. local Anim = 'Idle'
  23. local attacktype = 1
  24. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  25. local velocity = RootPart.Velocity.y
  26. local sine = 0
  27. local change = 1
  28. local Create = LoadLibrary("RbxUtility").Create
  29.  
  30. renderstepped = game:GetService('RunService').RenderStepped
  31. userinput = game:GetService('UserInputService')
  32. mainmodel = Instance.new('Model',Character)
  33. mainchord = 5
  34.  
  35. local m = Create("Model"){
  36. Parent = Character,
  37. Name = "WeaponModel",
  38. }
  39.  
  40. Humanoid.Animator.Parent = nil
  41. Character.Animate.Parent = nil
  42.  
  43. children = mainmodel:GetChildren()
  44. my = 0
  45. function rot()
  46. for i,v in pairs(children) do
  47. -- v.Size = Vector3.new(mainchord/5,mainchord/5,mainchord/5)
  48. v.CFrame = v.CFrame*CFrame.Angles(math.rad(1),math.rad(1),math.rad(2))
  49. end
  50. end
  51. function rotA()
  52. while renderstepped:wait() do
  53. spawn(rot)
  54. my = my + 1.5
  55. if my > 360 then
  56. my = 0
  57. end
  58. end
  59. end
  60. spawn(rotA)
  61.  
  62. function lerp(dist,inc)
  63. for i = 0,10 do
  64. renderstepped:wait()
  65. for x,v in pairs(children) do
  66. --lookvector
  67. --( centerPoint.Y + distance * Math.Sin( angle ) )
  68. --diff rot is 90
  69. v.Size = v.Size + Vector3.new(.1/(dist/math.abs(dist)),.1/(dist/math.abs(dist)),.1/(dist/math.abs(dist)))
  70. v.Transparency = v.Transparency - .1/(dist/math.abs(dist))
  71. v.CFrame = CFrame.new(v.Position)*CFrame.Angles(0,math.rad(90*x+my),0)*CFrame.new(dist/10,0,0)
  72. end
  73. end
  74. end
  75.  
  76. local newMotor = function(part0, part1, c0, c1)
  77. local w = Create('Motor'){
  78. Parent = part0,
  79. Part0 = part0,
  80. Part1 = part1,
  81. C0 = c0,
  82. C1 = c1,
  83. }
  84. return w
  85. end
  86.  
  87. function clerp(a, b, t)
  88. return a:lerp(b, t)
  89. end
  90.  
  91. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  92. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  93.  
  94. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  95. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  96. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  97. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  98. RootJoint.C1 = CFrame.new(0, 0, 0)
  99. RootJoint.C0 = CFrame.new(0, 0, 0)
  100. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  101. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  102.  
  103. local rarmc1 = RW.C1
  104. local larmc1 = LW.C1
  105. local rlegc1 = RH.C1
  106. local llegc1 = LH.C1
  107.  
  108. local resetc1 = false
  109.  
  110. function PlayAnimationFromTable(table, speed, bool)
  111. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  112. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  113. RW.C0 = clerp(RW.C0, table[3], speed)
  114. LW.C0 = clerp(LW.C0, table[4], speed)
  115. RH.C0 = clerp(RH.C0, table[5], speed)
  116. LH.C0 = clerp(LH.C0, table[6], speed)
  117. if bool == true then
  118. if resetc1 == false then
  119. resetc1 = true
  120. RootJoint.C1 = RootJoint.C1
  121. Torso.Neck.C1 = Torso.Neck.C1
  122. RW.C1 = rarmc1
  123. LW.C1 = larmc1
  124. RH.C1 = rlegc1
  125. LH.C1 = llegc1
  126. end
  127. end
  128. end
  129.  
  130. local co1 = 15
  131. local co2 = 8
  132. local co3 = 20
  133. local co5 = 30
  134. local co4 = 32
  135. local cooldown1 = 5
  136. local cooldown2 = 7
  137. local cooldown3 = 3
  138. local cooldown4 = 2
  139. local cooldown5 = 0
  140. local skillcolorscheme = BrickColor.new("White").Color
  141. local scrn = Instance.new("ScreenGui", Player.PlayerGui)
  142. makeframe = function(par, trans, pos, size, color)
  143.  
  144. local frame = Instance.new("Frame", par)
  145. frame.BackgroundTransparency = trans
  146. frame.BorderSizePixel = 0
  147. frame.Position = pos
  148. frame.Size = size
  149. frame.BackgroundColor3 = color
  150. return frame
  151. end
  152.  
  153. makelabel = function(par, text)
  154.  
  155. local label = Instance.new("TextLabel", par)
  156. label.BackgroundTransparency = 1
  157. label.Size = UDim2.new(1, 0, 1, 0)
  158. label.Position = UDim2.new(0, 0, 0, 0)
  159. label.TextColor3 = Color3.new(255, 250, 190)
  160. label.TextStrokeTransparency = 0
  161. label.FontSize = Enum.FontSize.Size32
  162. label.Font = Enum.Font.SourceSansLight
  163. label.BorderSizePixel = 0
  164. label.TextScaled = true
  165. label.Text = text
  166. end
  167.  
  168. framesk1 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.85, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  169. framesk2 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.74, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  170. framesk3 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.63, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  171. framesk4 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.52, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  172. bar1 = makeframe(framesk1, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  173. bar2 = makeframe(framesk2, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  174. bar3 = makeframe(framesk3, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  175. bar4 = makeframe(framesk4, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  176. text1 = Instance.new("TextLabel", framesk1)
  177. text1.BackgroundTransparency = 1
  178. text1.Size = UDim2.new(1, 0, 1, 0)
  179. text1.Position = UDim2.new(0, 0, 0, 0)
  180. text1.TextColor3 = Color3.new(255, 250, 190)
  181. text1.TextStrokeTransparency = 0
  182. text1.FontSize = Enum.FontSize.Size18
  183. text1.Font = Enum.Font.SourceSansLight
  184. text1.BorderSizePixel = 0
  185. text1.TextScaled = true
  186. text1.Text = "[Z]\n Persona Reference ok"
  187. text2 = Instance.new("TextLabel", framesk2)
  188. text2.BackgroundTransparency = 1
  189. text2.Size = UDim2.new(1, 0, 1, 0)
  190. text2.Position = UDim2.new(0, 0, 0, 0)
  191. text2.TextColor3 = Color3.new(255, 250, 190)
  192. text2.TextStrokeTransparency = 0
  193. text2.FontSize = Enum.FontSize.Size18
  194. text2.Font = Enum.Font.SourceSansLight
  195. text2.BorderSizePixel = 0
  196. text2.TextScaled = true
  197. text2.Text = "[X]\n DAB ON EM HATERS"
  198. text3 = Instance.new("TextLabel", framesk3)
  199. text3.BackgroundTransparency = 1
  200. text3.Size = UDim2.new(1, 0, 1, 0)
  201. text3.Position = UDim2.new(0, 0, 0, 0)
  202. text3.TextColor3 = Color3.new(255, 250, 190)
  203. text3.TextStrokeTransparency = 0
  204. text3.FontSize = Enum.FontSize.Size18
  205. text3.Font = Enum.Font.SourceSansLight
  206. text3.BorderSizePixel = 0
  207. text3.TextScaled = false
  208. text3.Text = "[C]\n Slide"
  209. text4 = Instance.new("TextLabel", framesk4)
  210. text4.BackgroundTransparency = 1
  211. text4.Size = UDim2.new(1, 0, 1, 0)
  212. text4.Position = UDim2.new(0, 0, 0, 0)
  213. text4.TextColor3 = Color3.new(255, 250, 190)
  214. text4.TextStrokeTransparency = 0
  215. text4.FontSize = Enum.FontSize.Size18
  216. text4.Font = Enum.Font.SourceSansLight
  217. text4.BorderSizePixel = 0
  218. text4.TextScaled = true
  219. text4.Text = "[V]\n slap"
  220.  
  221. ArtificialHB = Create("BindableEvent", script){
  222. Parent = script,
  223. Name = "Heartbeat",
  224. }
  225.  
  226. script:WaitForChild("Heartbeat")
  227.  
  228. frame = 1 / 30
  229. tf = 0
  230. allowframeloss = false
  231. tossremainder = false
  232. lastframe = tick()
  233. script.Heartbeat:Fire()
  234.  
  235. game:GetService("RunService").Heartbeat:connect(function(s, p)
  236. tf = tf + s
  237. if tf >= frame then
  238. if allowframeloss then
  239. script.Heartbeat:Fire()
  240. lastframe = tick()
  241. else
  242. for i = 1, math.floor(tf / frame) do
  243. script.Heartbeat:Fire()
  244. end
  245. lastframe = tick()
  246. end
  247. if tossremainder then
  248. tf = 0
  249. else
  250. tf = tf - frame * math.floor(tf / frame)
  251. end
  252. end
  253. end)
  254.  
  255. function swait(num)
  256. if num == 0 or num == nil then
  257. ArtificialHB.Event:wait()
  258. else
  259. for i = 0, num do
  260. ArtificialHB.Event:wait()
  261. end
  262. end
  263. end
  264.  
  265. function RemoveOutlines(part)
  266. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  267. end
  268.  
  269. CFuncs = {
  270. Part = {
  271. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  272. local Part = Create("Part"){
  273. Parent = Parent,
  274. Reflectance = Reflectance,
  275. Transparency = Transparency,
  276. CanCollide = false,
  277. Locked = true,
  278. BrickColor = BrickColor.new(tostring(BColor)),
  279. Name = Name,
  280. Size = Size,
  281. Material = Material,
  282. }
  283. RemoveOutlines(Part)
  284. return Part
  285. end;
  286. };
  287.  
  288. Mesh = {
  289. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  290. local Msh = Create(Mesh){
  291. Parent = Part,
  292. Offset = OffSet,
  293. Scale = Scale,
  294. }
  295. if Mesh == "SpecialMesh" then
  296. Msh.MeshType = MeshType
  297. Msh.MeshId = MeshId
  298. end
  299. return Msh
  300. end;
  301. };
  302.  
  303. Weld = {
  304. Create = function(Parent, Part0, Part1, C0, C1)
  305. local Weld = Create("Weld"){
  306. Parent = Parent,
  307. Part0 = Part0,
  308. Part1 = Part1,
  309. C0 = C0,
  310. C1 = C1,
  311. }
  312. return Weld
  313. end;
  314. };
  315.  
  316. Sound = {
  317. Create = function(id, par, vol, pit)
  318. coroutine.resume(coroutine.create(function()
  319. local Sound = Create("Sound"){
  320. Volume = vol,
  321. Pitch = pit or 1,
  322. SoundId = "rbxassetid://" .. id,
  323. Parent = par or workspace,
  324. }
  325. Sound:play()
  326. game:GetService("Debris"):AddItem(Sound, 10)
  327. end))
  328. end;
  329. };
  330.  
  331. Decal = {
  332. Create = function(Color, Texture, Transparency, Name, Parent)
  333. local Decal = Create("Decal"){
  334. Color3 = Color,
  335. Texture = "rbxassetid://" .. Texture,
  336. Transparency = Transparency,
  337. Name = Name,
  338. Parent = Parent,
  339. }
  340. return Decal
  341. end;
  342. };
  343.  
  344. BillboardGui = {
  345. Create = function(Parent, Image, Position, Size)
  346. local BillPar = CFuncs.Part.Create(Parent, "SmoothPlastic", 0, 1, BrickColor.new("Black"), "BillboardGuiPart", Vector3.new(1, 1, 1))
  347. BillPar.CFrame = CFrame.new(Position)
  348. local Bill = Create("BillboardGui"){
  349. Parent = BillPar,
  350. Adornee = BillPar,
  351. Size = UDim2.new(1, 0, 1, 0),
  352. SizeOffset = Vector2.new(Size, Size),
  353. }
  354. local d = Create("ImageLabel", Bill){
  355. Parent = Bill,
  356. BackgroundTransparency = 1,
  357. Size = UDim2.new(1, 0, 1, 0),
  358. Image = "rbxassetid://" .. Image,
  359. }
  360. return BillPar
  361. end
  362. };
  363.  
  364. ParticleEmitter = {
  365. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  366. local Particle = Create("ParticleEmitter"){
  367. Parent = Parent,
  368. Color = ColorSequence.new(Color1, Color2),
  369. LightEmission = LightEmission,
  370. Size = Size,
  371. Texture = Texture,
  372. Transparency = Transparency,
  373. ZOffset = ZOffset,
  374. Acceleration = Accel,
  375. Drag = Drag,
  376. LockedToPart = LockedToPart,
  377. VelocityInheritance = VelocityInheritance,
  378. EmissionDirection = EmissionDirection,
  379. Enabled = Enabled,
  380. Lifetime = LifeTime,
  381. Rate = Rate,
  382. Rotation = Rotation,
  383. RotSpeed = RotSpeed,
  384. Speed = Speed,
  385. VelocitySpread = VelocitySpread,
  386. }
  387. return Particle
  388. end;
  389. };
  390.  
  391. CreateTemplate = {
  392.  
  393. };
  394. }
  395.  
  396. function rayCast(Position, Direction, Range, Ignore)
  397. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  398. end
  399.  
  400. function FindNearestTorso(pos)
  401. local list = (game.Workspace:children())
  402. local torso = nil
  403. local dist = 1000
  404. local temp, human, temp2 = nil, nil, nil
  405. for x = 1, #list do
  406. temp2 = list[x]
  407. if temp2.className == "Model" and temp2.Name ~= Character.Name then
  408. temp = temp2:findFirstChild("Torso")
  409. human = temp2:findFirstChild("Humanoid")
  410. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  411. local dohit = true
  412. if dohit == true then
  413. torso = temp
  414. dist = (temp.Position - pos).magnitude
  415. end
  416. end
  417. end
  418. end
  419. return torso, dist
  420. end
  421.  
  422. --[[
  423. Thanks for using Build-To-Lua by jarredbcv.
  424. ]]--
  425.  
  426. New = function(Object, Parent, Name, Data)
  427. local Object = Instance.new(Object)
  428. for Index, Value in pairs(Data or {}) do
  429. Object[Index] = Value
  430. end
  431. Object.Parent = Parent
  432. Object.Name = Name
  433. return Object
  434. end
  435.  
  436. Revolver = New("Model",Character,"Revolver",{})
  437. Handle = New("Part",Revolver,"Handle",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.179147512, 0.312856019, 0.179147318),CFrame = CFrame.new(-38.3728828, 3.70457292, 25.9037609, -0.0267938077, 0.00274490844, -0.999638677, -0.778030157, -0.62793833, 0.0191296302, -0.627656579, 0.778258383, 0.0189604424),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.105882, 0.164706, 0.207843),})
  438. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-38.362484, 3.83855653, 26.3172855, 0.999638855, -0.0240355674, -0.0121608162, -0.0191355199, -0.951385379, 0.307414979, -0.0189584699, -0.307070196, -0.951497018),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,})
  439. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.523787498, 0.823096395),})
  440. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637246, -0.019135505, -0.0189584643, -0.0240355078, -0.951383531, -0.307070255, -0.012160819, 0.307414532, -0.951497853),C1 = CFrame.new(-0.3640728, 0.237724304, 7.62939453e-06, -0.0267937686, -0.778028965, -0.627657056, 0.00274492614, -0.627937436, 0.778259039, -0.999637365, 0.0191296153, 0.0189604387),})
  441. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201684, 0.523788631),CFrame = CFrame.new(-38.358242, 3.88810968, 26.5481853, 0.999638915, 0.0191061404, 0.0189892221, -0.0191405267, 0.99981761, 0.00163295248, -0.0189545136, -0.00199547224, 0.999817371),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,})
  442. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.54766655, 0.386320114, 0.00109481812, -0.0267937686, -0.778028965, -0.627657056, 0.00274492614, -0.627937436, 0.778259039, -0.999637365, 0.0191296153, 0.0189604387),})
  443. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.318014473, 0.0500000007),CFrame = CFrame.new(-38.35009, 4.07556772, 26.7909775, 0.999639273, 0.0191061497, 0.0189892203, -0.0191405285, 0.999818027, 0.00163298217, -0.0189545136, -0.00199544244, 0.999817133),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,})
  444. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.748272181),})
  445. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.846122742, 0.457586288, 0.00113296509, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  446. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.3649025, 3.73728037, 26.2916756, 0.999639153, 0.0123028848, 0.0239647776, -0.0191405062, 0.950381041, 0.31050685, -0.0189554915, -0.310851365, 0.950268209),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,})
  447. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637187, -0.0191404838, -0.0189554859, 0.012302829, 0.950378895, -0.310851872, 0.0239647459, 0.310505927, 0.950269282),C1 = CFrame.new(-0.269138336, 0.281381607, 3.81469727e-06, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  448. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.112240277, 0.467668325),CFrame = CFrame.new(-38.3500748, 4.29035711, 26.5754204, 0.999639273, 0.0191061497, 0.0189892203, -0.0191405285, 0.999818027, 0.00163298217, -0.0189545136, -0.00199544244, 0.999817133),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,})
  449. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.877939224, 0.154953003, 0.00114059448, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  450. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.3610039, 3.80826855, 26.4241943, 0.999639332, 0.00149332604, 0.0268912073, -0.0191375222, 0.741928697, 0.670209289, -0.0189504661, -0.670477986, 0.741685748),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,})
  451. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191374999, -0.0189504586, 0.00149328914, 0.741927147, -0.67047888, 0.0268911533, 0.67020756, 0.741686463),C1 = CFrame.new(-0.407649994, 0.339950562, -2.28881836e-05, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  452. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.3620377, 3.78318405, 26.3964386, 0.999639332, 0.00149332604, 0.0268912073, -0.0191375222, 0.741928697, 0.670209289, -0.0189504661, -0.670477986, 0.741685748),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,})
  453. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191374999, -0.0189504586, 0.00149328914, 0.741927147, -0.67047888, 0.0268911533, 0.67020756, 0.741686463),C1 = CFrame.new(-0.370685577, 0.334098816, 3.81469727e-06, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  454. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.0945501924, 0.0696684495, 0.179147348),CFrame = CFrame.new(-38.3761673, 3.52345395, 25.9137459, -0.0267938264, 0.00274489797, -0.999639273, -0.778030872, -0.627938807, 0.0191296358, -0.62765646, 0.778258145, 0.0189604443),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.105882, 0.164706, 0.207843),})
  455. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0267937686, -0.778028965, -0.627657056, 0.00274492614, -0.627937436, 0.778259039, -0.999637365, 0.0191296153, 0.0189604387),C1 = CFrame.new(0.134737015, 0.121492386, 7.62939453e-06, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  456. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.393857986, 0.312856048, 0.179147348),CFrame = CFrame.new(-38.3805237, 3.48336768, 25.7251568, -0.0267938264, 0.00274489797, -0.999639273, -0.778030872, -0.627938807, 0.0191296358, -0.62765646, 0.778258145, 0.0189604443),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.105882, 0.164706, 0.207843),})
  457. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0267937686, -0.778028965, -0.627657056, 0.00274492614, -0.627937436, 0.778259039, -0.999637365, 0.0191296153, 0.0189604387),C1 = CFrame.new(0.284410477, -0.000118255615, 1.90734863e-05, -0.0267937779, -0.778029323, -0.627656877, 0.00274492148, -0.627937675, 0.778258801, -0.999637723, 0.0191296227, 0.0189604405),})
  458. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Dark stone grey"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.390549749, 0.324007213, 0.305300444),CFrame = CFrame.new(-38.3595772, 4.07825518, 26.5373688, -0.0189993083, 0.0190935526, 0.999639571, -0.00162295077, 0.999818623, -0.0191277508, -0.999817073, -0.00198539486, -0.0189648122),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.388235, 0.372549, 0.384314),})
  459. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.688779831, 0.258499146, 0.005859375, -0.026793791, -0.77802968, -0.627656937, 0.00274491566, -0.627937913, 0.778258801, -0.999637961, 0.0191296227, 0.0189604424),})
  460. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.179147512, 0.312856019, 0.179147348),CFrame = CFrame.new(-38.368103, 3.84367514, 26.0160179, -0.0267938599, 0.00274484348, -0.999639988, -0.778030753, -0.62793988, 0.0191296656, -0.627656996, 0.77825743, 0.0189604368),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.105882, 0.164706, 0.207843),})
  461. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0267937854, -0.778028429, -0.627657712, 0.00274487957, -0.627938151, 0.778258562, -0.999637365, 0.0191296414, 0.0189604294),C1 = CFrame.new(-0.178812027, 3.05175781e-05, 1.14440918e-05, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  462. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.0538285114, 0.136939868, 0.0621128492),CFrame = CFrame.new(-38.2891121, 4.1708045, 26.704916, -0.0189993102, 0.0190935601, 0.999639928, -0.00162292086, 0.999818861, -0.0191277526, -0.999816775, -0.0019854845, -0.0189648084),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.105882, 0.164706, 0.207843),})
  463. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.867835999, 0.330972672, -0.0596313477, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  464. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.0538285114, 0.136939868, 0.0621128492),CFrame = CFrame.new(-38.4236259, 3.98625422, 26.7077866, -0.0189993102, 0.0190935601, 0.999639928, -0.00162292086, 0.999818861, -0.0191277526, -0.999816775, -0.0019854845, -0.0189648084),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.105882, 0.164706, 0.207843),})
  465. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.722448349, 0.448722839, 0.0713577271, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  466. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.0538285114, 0.136939868, 0.0621128492),CFrame = CFrame.new(-38.4592514, 4.08050108, 26.7083035, -0.0189993102, 0.0190935601, 0.999639928, -0.00162292086, 0.999818861, -0.0191277526, -0.999816775, -0.0019854845, -0.0189648084),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.105882, 0.164706, 0.207843),})
  467. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.795145035, 0.389846802, 0.108783722, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  468. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.0538285114, 0.136939868, 0.0621128492),CFrame = CFrame.new(-38.4200134, 4.17331219, 26.7074127, -0.0189993102, 0.0190935601, 0.999639928, -0.00162292086, 0.999818861, -0.0191277526, -0.999816775, -0.0019854845, -0.0189648084),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.105882, 0.164706, 0.207843),})
  469. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.867847443, 0.330982208, 0.0713195801, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  470. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.130947724, 0.130947024, 0.130947366),CFrame = CFrame.new(-38.3551369, 4.17849255, 26.2829323, 0.0443816409, 0.0274274386, -0.998640835, -0.305555671, 0.952094495, 0.0125694564, 0.951138258, 0.304580629, 0.0506358296),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,})
  471. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0443815626, -0.305554956, 0.95113951, 0.0274273418, 0.952091634, 0.304580897, -0.998638272, 0.012569447, 0.0506358668),C1 = CFrame.new(-0.607187271, -0.00244903564, -0.00148391724, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  472. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.0935342535, 0.0500000007, 0.130947366),CFrame = CFrame.new(-38.3680191, 4.2568469, 26.0246201, 0.0517081767, 0.00700577348, -0.998640478, 0.108116172, 0.994061887, 0.0125716822, 0.992791355, -0.108618066, 0.0506433994),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,})
  473. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.748267233, 1),})
  474. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.051708065, 0.108115688, 0.992792606, 0.00700571574, 0.994058967, -0.108618438, -0.998637855, 0.0125716729, 0.0506434292),C1 = CFrame.new(-0.505672455, -0.252719879, 0.00799560547, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  475. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.0935342535, 0.0500000007, 0.130947366),CFrame = CFrame.new(-38.365242, 4.2511735, 26.0803947, 0.0491153523, 0.0176038202, -0.998640776, -0.100927047, 0.994817436, 0.0125725428, 0.993679285, 0.100171953, 0.0506372154),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,})
  476. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.748267233, 1),})
  477. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0491152555, -0.100926913, 0.993680656, 0.0176037438, 0.994814515, 0.100171924, -0.998638153, 0.0125725307, 0.0506372526),C1 = CFrame.new(-0.536340714, -0.205741882, 0.00616836548, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  478. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.130947158),CFrame = CFrame.new(-38.3627815, 4.09111834, 26.1063156, 0.999639869, 0.0170166213, 0.0208822936, -0.0191405229, 0.994171083, 0.106131464, -0.0189544987, -0.106491901, 0.994131565),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,})
  479. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191404987, -0.0189544931, 0.0170165412, 0.994168162, -0.106492177, 0.0208822638, 0.106130987, 0.994132876),C1 = CFrame.new(-0.42814827, -0.0850582123, 0.00113677979, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  480. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.130947158),CFrame = CFrame.new(-38.3591576, 4.14161539, 26.2474594, 0.999639928, 0.00149333652, 0.0268912259, -0.0191375241, 0.741929173, 0.670209706, -0.0189504642, -0.670477867, 0.741685629),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,})
  481. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191374999, -0.0189504586, 0.00149328914, 0.741927147, -0.67047888, 0.0268911533, 0.67020756, 0.741686463),C1 = CFrame.new(-0.556123734, -0.0069103241, 0.00115585327, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  482. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.3568039, 4.20870543, 26.3017883, 0.999639928, -0.00957353693, 0.0251729488, -0.0191365071, 0.405198783, 0.914031863, -0.0189504921, -0.914177597, 0.404867083),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,})
  483. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019136481, -0.0189504847, -0.00957354996, 0.40519774, -0.914178908, 0.0251728632, 0.914029002, 0.40486744),C1 = CFrame.new(-0.642484665, -0.00675010681, 0.0011177063, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  484. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.3635483, 3.75471187, 26.3450241, 0.99963975, 0.0123029007, 0.0239647925, -0.019140508, 0.950381637, 0.310507029, -0.0189554933, -0.310851365, 0.95026803),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,})
  485. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637187, -0.0191404838, -0.0189554859, 0.012302829, 0.950378895, -0.310851872, 0.0239647459, 0.310505927, 0.950269282),C1 = CFrame.new(-0.316221237, 0.311958313, -3.81469727e-06, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  486. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.359478, 3.85654569, 26.4577274, 0.999639928, -0.00957353693, 0.0251729488, -0.0191365071, 0.405198783, 0.914031863, -0.0189504921, -0.914177597, 0.404867083),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,})
  487. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019136481, -0.0189504847, -0.00957354996, 0.40519774, -0.914178908, 0.0251728632, 0.914029002, 0.40486744),C1 = CFrame.new(-0.466299057, 0.335737228, 1.14440918e-05, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  488. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.3615456, 3.79572582, 26.4103088, 0.999639928, 0.00149333652, 0.0268912259, -0.0191375241, 0.741929173, 0.670209706, -0.0189504642, -0.670477867, 0.741685629),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,})
  489. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191374999, -0.0189504586, 0.00149328914, 0.741927147, -0.67047888, 0.0268911533, 0.67020756, 0.741686463),C1 = CFrame.new(-0.389162064, 0.337018967, 1.52587891e-05, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  490. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.130947158),CFrame = CFrame.new(-38.3547707, 4.29184151, 26.3247204, 0.999639928, -0.0179588627, 0.0200701095, -0.0191365071, 0.0507248156, 0.998532534, -0.0189504921, -0.998549879, 0.0503627956),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,})
  491. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019136481, -0.0189504847, -0.0179588459, 0.0507248193, -0.99855119, 0.0200700238, 0.998529553, 0.0503627472),C1 = CFrame.new(-0.721614838, -0.0411014557, 0.0011100769, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  492. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201498, 0.0748269483),CFrame = CFrame.new(-38.360939, 4.10686398, 26.1891041, 0.99963975, 0.0123029007, 0.0239647925, -0.019140508, 0.950381637, 0.310507029, -0.0189554933, -0.310851365, 0.95026803),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,})
  493. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637187, -0.0191404838, -0.0189554859, 0.012302829, 0.950378895, -0.310851872, 0.0239647459, 0.310505927, 0.950269282),C1 = CFrame.new(-0.49241066, -0.0305099487, 0.00116729736, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  494. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.179147512, 0.312856019, 0.179147348),CFrame = CFrame.new(-38.3670616, 3.78774142, 26.1283646, -0.0190952383, 0.0189964436, -0.999639988, -0.999818921, 0.00162947504, 0.0191295464, 0.0019919856, 0.999816895, 0.0189618152),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.105882, 0.164706, 0.207843),})
  495. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0190951545, -0.999815941, 0.00199208409, 0.0189964212, 0.00162928551, 0.999818146, -0.999637365, 0.0191295221, 0.0189618096),C1 = CFrame.new(-0.20583725, 0.122591019, 3.05175781e-05, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  496. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.179147512, 0.312856019, 0.179147348),CFrame = CFrame.new(-38.3809319, 3.43171239, 25.7549477, -0.0190952383, 0.0189964436, -0.999639988, -0.999818921, 0.00162947504, 0.0191295464, 0.0019919856, 0.999816895, 0.0189618152),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.105882, 0.164706, 0.207843),})
  497. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0190951545, -0.999815941, 0.00199208409, 0.0189964212, 0.00162928551, 0.999818146, -0.999637365, 0.0191295221, 0.0189618096),C1 = CFrame.new(0.305912018, 0.0555019379, 3.81469727e-06, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  498. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.179147512, 0.312856019, 0.179147348),CFrame = CFrame.new(-38.3741188, 3.63771868, 25.904192, -0.0190952383, 0.0189964436, -0.999639988, -0.999818921, 0.00162947504, 0.0191295464, 0.0019919856, 0.999816895, 0.0189618152),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.105882, 0.164706, 0.207843),})
  499. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0190951545, -0.999815941, 0.00199208409, 0.0189964212, 0.00162928551, 0.999818146, -0.999637365, 0.0191295221, 0.0189618096),C1 = CFrame.new(0.051776886, 0.0423126221, -3.43322754e-05, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  500. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.179147512, 0.275442541, 0.179147348),CFrame = CFrame.new(-38.3673401, 3.93712115, 25.9597282, -0.018991746, -0.0190976169, -0.999639869, -0.00159495184, -0.999818861, 0.0191312619, -0.999817133, 0.00195741793, 0.0189577676),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.105882, 0.164706, 0.207843),})
  501. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189917199, -0.00159476697, -0.999818385, -0.0190975331, -0.999815822, 0.00195753202, -0.999637306, 0.0191312376, 0.018957762),C1 = CFrame.new(-0.216205597, -0.102453232, -3.05175781e-05, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  502. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Metal,Size = Vector3.new(0.130947724, 0.130947024, 0.130947366),CFrame = CFrame.new(-38.3258743, 4.31370211, 27.823822, 0.999639869, 0.0123032499, 0.0239638593, -0.0191405416, 0.950381875, 0.310506582, -0.018954508, -0.310850888, 0.950268328),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.0666667, 0.0666667, 0.0666667),})
  503. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191405173, -0.0189545024, 0.0123031754, 0.950379074, -0.310851455, 0.0239638127, 0.310505509, 0.950269461),C1 = CFrame.new(-1.68031883, 1.11194038, 0.00106430054, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  504. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.130947724, 0.0500000007, 0.130947366),CFrame = CFrame.new(-38.3609924, 4.22642231, 26.1701736, 0.0443816409, 0.0274274386, -0.998640835, -0.305555671, 0.952094495, 0.0125694564, 0.951138258, 0.304580629, 0.0506358296),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,})
  505. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.748267233, 1),})
  506. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0443815626, -0.305554956, 0.95113951, 0.0274273418, 0.952091634, 0.304580897, -0.998638272, 0.012569447, 0.0506358668),C1 = CFrame.new(-0.573547363, -0.120317459, 0.00314712524, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  507. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.224480718, 1.08499062),CFrame = CFrame.new(-38.3363838, 4.23546743, 27.3518353, 0.999637306, 0.0191060845, 0.0189892054, -0.019140508, 0.999815702, 0.00163278729, -0.0189545061, -0.00199565664, 0.999818206),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,})
  508. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-1.32292366, 0.793710709, 0.00112533569, -0.0267937984, -0.778029799, -0.627656758, 0.0027449138, -0.627938092, 0.778258622, -0.999638379, 0.0191296265, 0.0189604424),})
  509. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.130947724, 0.130947024, 0.130947366),CFrame = CFrame.new(-38.3523636, 4.34570503, 26.3805065, -0.00542384386, 0.0113785323, -0.999923527, -0.304601461, 0.952401936, 0.0124899168, 0.95246321, 0.304643661, -0.00169967301),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,})
  510. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.00542378426, -0.304600567, 0.952464759, 0.0113784745, 0.952398598, 0.304644048, -0.999920666, 0.0124899149, -0.00169971026),C1 = CFrame.new(-0.798601151, -0.03150177, 0.000793457031, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  511. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0561201051, 0.093533583),CFrame = CFrame.new(-38.3584099, 4.13089132, 26.2951355, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  512. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.577724457, 0.0369300842, 0.0011100769, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  513. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0935335755, 0.0500000007),CFrame = CFrame.new(-38.3564758, 4.20576382, 26.3230495, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  514. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.748267591),})
  515. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.653549194, 0.0116443634, 0.00113677979, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  516. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.243187517, 0.243187711),CFrame = CFrame.new(-38.3637924, 3.98103428, 26.1644993, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  517. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.378992081, 0.0293464661, 0.00114440918, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  518. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.0538285114, 0.136939868, 0.0621128492),CFrame = CFrame.new(-38.2534904, 4.07655191, 26.7043953, -0.0189993102, 0.0190935712, 0.999640286, -0.00162292074, 0.999819279, -0.0191277582, -0.999816477, -0.0019854249, -0.0189648084),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.105882, 0.164706, 0.207843),})
  519. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.795133591, 0.389850616, -0.0970535278, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  520. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.0538285114, 0.136939868, 0.0621128492),CFrame = CFrame.new(-38.2926674, 3.98374462, 26.705307, -0.0189993102, 0.0190935712, 0.999640286, -0.00162292074, 0.999819279, -0.0191277582, -0.999816477, -0.0019854249, -0.0189648084),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.105882, 0.164706, 0.207843),})
  521. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.722448349, 0.448728561, -0.0596466064, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  522. Part = New("Part",Revolver,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Metal,Size = Vector3.new(0.130947724, 0.0748268217, 0.130947158),CFrame = CFrame.new(-38.3472214, 4.17853594, 26.8375359, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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.0666667, 0.0666667, 0.0666667),})
  523. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-0.955533981, 0.429170609, 0.0011177063, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  524. Part = New("Part",Revolver,"Part",{Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.558910429, 0.0621129386, 0.0500000007),CFrame = CFrame.new(-38.3611488, 4.07811308, 26.4538155, -0.0189993102, 0.0190935712, 0.999640286, -0.00162292074, 0.999819279, -0.0191277582, -0.999816477, -0.0019854249, -0.0189648084),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,})
  525. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 0.868122339),MeshType = Enum.MeshType.Cylinder,})
  526. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0189992897, -0.00162276253, -0.999818087, 0.0190934762, 0.999815822, -0.0019855909, 0.999637365, -0.0191277284, -0.0189648028),C1 = CFrame.new(-0.636184692, 0.193557739, 0.00584411621, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  527. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-38.3621101, 3.82861376, 26.3480301, 0.999640226, -0.0218390953, -0.0157698654, -0.0191375352, -0.987764359, 0.154798254, -0.0189574938, -0.154439881, -0.987818539),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,})
  528. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.523787498, 0.823096395),})
  529. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191375054, -0.0189574864, -0.0218389966, -0.987760961, -0.154439867, -0.0157698598, 0.154797867, -0.987820148),C1 = CFrame.new(-0.375644684, 0.267896652, 2.67028809e-05, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  530. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361202, 0.0500000007, 0.0500000007),CFrame = CFrame.new(-38.3626404, 3.85922289, 26.2887363, 0.999640226, -0.0266199727, -0.00413384894, -0.0191405304, -0.809829473, 0.586359143, -0.0189565029, -0.586064339, -0.810040593),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,})
  531. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.523787498, 0.823096395),})
  532. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637246, -0.0191404987, -0.0189564954, -0.0266198851, -0.809826612, -0.586065173, -0.00413388759, 0.586357296, -0.810042024),C1 = CFrame.new(-0.362228394, 0.202528, 1.90734863e-05, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  533. Wedge = New("WedgePart",Revolver,"Wedge",{BrickColor = BrickColor.new("Black"),Size = Vector3.new(0.187067494, 0.0500000007, 0.168360502),CFrame = CFrame.new(-38.3605042, 4.09345627, 25.9539185, 0.999640286, 0.0191050563, 0.0189823508, -0.0191395301, 0.9998191, 0.00164000038, -0.0189475045, -0.00200233795, 0.999816775),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.105882, 0.164706, 0.207843),})
  534. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.748268664, 1),MeshType = Enum.MeshType.Wedge,})
  535. mot = New("Motor",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.0191395003, -0.018947497, 0.0191049613, 0.999815702, -0.0020025298, 0.0189823266, 0.00163980573, 0.999818385),C1 = CFrame.new(-0.334375381, -0.205123901, -0.00398254395, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  536. Shootpart = New("Part",Revolver,"Shootpart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.Metal,Size = Vector3.new(0.130947724, 0.18706724, 0.29930833),CFrame = CFrame.new(-38.3281364, 4.23616076, 27.7820606, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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.0666667, 0.0666667, 0.0666667),})
  537. mot = New("Motor",Shootpart,"mot",{Part0 = Shootpart,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-1.59371758, 1.12812424, 0.00105285645, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  538. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361187, 0.0500000007, 0.0561201721),CFrame = CFrame.new(-38.3278847, 4.13346672, 27.9038849, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  539. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.37413469, 1),})
  540. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-1.59029007, 1.28742218, 0.00114440918, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  541. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.168361187, 0.0500000007, 0.0561201721),CFrame = CFrame.new(-38.323967, 4.33924246, 27.9034653, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  542. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.37413469, 1),})
  543. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-1.75023079, 1.15789223, 0.00115966797, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  544. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.0500000007, 0.224480838, 0.0561201721),CFrame = CFrame.new(-38.4007149, 4.23778868, 27.9050961, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  545. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.374134958, 1, 1),})
  546. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-1.67026329, 1.22265625, 0.075969696, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  547. Part = New("Part",Revolver,"Part",{Material = Enum.Material.Metal,Size = Vector3.new(0.0500000007, 0.224480838, 0.0561201721),CFrame = CFrame.new(-38.2510986, 4.23492861, 27.9022503, 0.999640226, 0.0191061813, 0.0189892277, -0.0191405378, 0.99981904, 0.00163298182, -0.0189545136, -0.00199544267, 0.999816656),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,})
  548. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.37413469, 1, 1),})
  549. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999637306, -0.019140508, -0.0189545061, 0.0191060845, 0.999815702, -0.00199565664, 0.0189892054, 0.00163278729, 0.999818206),C1 = CFrame.new(-1.67026138, 1.22264862, -0.0737037659, -0.0267938077, -0.778030157, -0.627656579, 0.00274490844, -0.62793833, 0.778258383, -0.999638677, 0.0191296302, 0.0189604424),})
  550.  
  551. moter = New("Motor",Handle,"mot",{Part0 =RightArm, Part1 = Handle,})
  552.  
  553. Partasd = Shootpart
  554.  
  555. game.ContentProvider:Preload("rbxassetid://642849721")
  556. game.ContentProvider:Preload("rbxassetid://931130559")
  557.  
  558. local hello = Instance.new("Sound")
  559. hello.SoundId = "rbxassetid://642849721"
  560. hello.PlaybackSpeed = 1
  561. hello.Volume = 5.5
  562. hello.Parent = Head
  563. hello.Looped = true
  564. hello:Play()
  565.  
  566. local BladeHitSounds = {
  567. "199149137",
  568. "199149186",
  569. "199149221",
  570. "199149235",
  571. "199149269",
  572. "199149297"
  573. }
  574.  
  575. local FistHitSounds = {
  576. "199149137",
  577. "199149186",
  578. "199149221",
  579. "199149235",
  580. "199149269",
  581. "199149297"
  582. }
  583.  
  584. function Damage(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  585. if hit.Parent == nil then
  586. return
  587. end
  588. local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  589. for _, v in pairs(hit.Parent:children()) do
  590. if v:IsA("Humanoid") then
  591. h = v
  592. end
  593. end
  594. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  595. warn'No R15 allowed'
  596. hit.Parent:FindFirstChild("Head"):BreakJoints()
  597. end
  598. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  599. if hit.Parent:findFirstChild("DebounceHit") ~= nil then
  600. if hit.Parent.DebounceHit.Value == true then
  601. return
  602. end
  603. end
  604. local c = Create("ObjectValue"){
  605. Name = "creator",
  606. Value = game:service("Players").LocalPlayer,
  607. Parent = h,
  608. }
  609. game:GetService("Debris"):AddItem(c, .5)
  610. if HitSound ~= nil and HitPitch ~= nil then
  611. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  612. end
  613. local Damage = math.random(minim, maxim)
  614. local blocked = false
  615. local block = hit.Parent:findFirstChild("Block")
  616. if block ~= nil then
  617. if block.className == "IntValue" then
  618. if block.Value > 0 then
  619. blocked = true
  620. block.Value = block.Value - 1
  621. print(block.Value)
  622. end
  623. end
  624. end
  625. if blocked == false then
  626. h.Health = h.Health - Damage
  627. 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)
  628. else
  629. h.Health = h.Health - (Damage / 2)
  630. 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)
  631. end
  632. if Type == "Knockdown" then
  633. local hum = hit.Parent.Humanoid
  634. hum.PlatformStand = true
  635. coroutine.resume(coroutine.create(function(HHumanoid)
  636. swait(1)
  637. HHumanoid.PlatformStand = false
  638. end), hum)
  639. local angle = (hit.Position - (Property.Position + Vector3.new(0, 0, 0))).unit
  640. local bodvol = Create("BodyVelocity"){
  641. velocity = angle * knockback,
  642. P = 5000,
  643. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  644. Parent = hit,
  645. }
  646. local rl = Create("BodyAngularVelocity"){
  647. P = 3000,
  648. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  649. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  650. Parent = hit,
  651. }
  652. game:GetService("Debris"):AddItem(bodvol, .5)
  653. game:GetService("Debris"):AddItem(rl, .5)
  654. elseif Type == "Normal" then
  655. local vp = Create("BodyVelocity"){
  656. P = 500,
  657. maxForce = Vector3.new(math.huge, 0, math.huge),
  658. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05,
  659. }
  660. if knockback > 0 then
  661. vp.Parent = hit.Parent.Torso
  662. end
  663. game:GetService("Debris"):AddItem(vp, .5)
  664. elseif Type == "Up" then
  665. local bodyVelocity = Create("BodyVelocity"){
  666. velocity = Vector3.new(0, 20, 0),
  667. P = 5000,
  668. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  669. Parent = hit,
  670. }
  671. game:GetService("Debris"):AddItem(bodyVelocity, .5)
  672. elseif Type == "DarkUp" then
  673. coroutine.resume(coroutine.create(function()
  674. for i = 0, 1, 0.1 do
  675. swait()
  676. Effects.Block.Create(BrickColor.new("Black"), hit.Parent.Torso.CFrame, 5, 5, 5, 1, 1, 1, .08, 1)
  677. end
  678. end))
  679. local bodyVelocity = Create("BodyVelocity"){
  680. velocity = Vector3.new(0, 20, 0),
  681. P = 5000,
  682. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  683. Parent = hit,
  684. }
  685. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  686. elseif Type == "Snare" then
  687. local bp = Create("BodyPosition"){
  688. P = 2000,
  689. D = 100,
  690. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  691. position = hit.Parent.Torso.Position,
  692. Parent = hit.Parent.Torso,
  693. }
  694. game:GetService("Debris"):AddItem(bp, 1)
  695. elseif Type == "Freeze" then
  696. local BodPos = Create("BodyPosition"){
  697. P = 50000,
  698. D = 1000,
  699. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  700. position = hit.Parent.Torso.Position,
  701. Parent = hit.Parent.Torso,
  702. }
  703. local BodGy = Create("BodyGyro") {
  704. maxTorque = Vector3.new(4e+005, 4e+005, 4e+005) * math.huge ,
  705. P = 20e+003,
  706. Parent = hit.Parent.Torso,
  707. cframe = hit.Parent.Torso.CFrame,
  708. }
  709. hit.Parent.Torso.Anchored = true
  710. coroutine.resume(coroutine.create(function(Part)
  711. swait(1.5)
  712. Part.Anchored = false
  713. end), hit.Parent.Torso)
  714. game:GetService("Debris"):AddItem(BodPos, 3)
  715. game:GetService("Debris"):AddItem(BodGy, 3)
  716. end
  717. local debounce = Create("BoolValue"){
  718. Name = "DebounceHit",
  719. Parent = hit.Parent,
  720. Value = true,
  721. }
  722. game:GetService("Debris"):AddItem(debounce, Delay)
  723. c = Create("ObjectValue"){
  724. Name = "creator",
  725. Value = Player,
  726. Parent = h,
  727. }
  728. game:GetService("Debris"):AddItem(c, .5)
  729. end
  730. end
  731.  
  732. function ShowDamage(Pos, Text, Time, Color)
  733. local Rate = (1 / 30)
  734. local Pos = (Pos or Vector3.new(0, 0, 0))
  735. local Text = (Text or "")
  736. local Time = (Time or 2)
  737. local Color = (Color or Color3.new(1, 0, 1))
  738. local EffectPart = CFuncs.Part.Create(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  739. EffectPart.Anchored = true
  740. local BillboardGui = Create("BillboardGui"){
  741. Size = UDim2.new(3, 0, 3, 0),
  742. Adornee = EffectPart,
  743. Parent = EffectPart,
  744. }
  745. local TextLabel = Create("TextLabel"){
  746. BackgroundTransparency = 1,
  747. Size = UDim2.new(1, 0, 1, 0),
  748. Text = Text,
  749. Font = "SciFi",
  750. TextColor3 = Color,
  751. TextScaled = true,
  752. Parent = BillboardGui,
  753. }
  754. game.Debris:AddItem(EffectPart, (Time))
  755. EffectPart.Parent = game:GetService("Workspace")
  756. delay(0, function()
  757. local Frames = (Time / Rate)
  758. for Frame = 1, Frames do
  759. wait(Rate)
  760. local Percent = (Frame / Frames)
  761. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  762. TextLabel.TextTransparency = Percent
  763. end
  764. if EffectPart and EffectPart.Parent then
  765. EffectPart:Destroy()
  766. end
  767. end)
  768. end
  769.  
  770. function MagnitudeDamage(Part, Magnitude, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  771. for _, c in pairs(workspace:children()) do
  772. local hum = c:findFirstChild("Humanoid")
  773. if hum ~= nil then
  774. local head = c:findFirstChild("Torso")
  775. if head ~= nil then
  776. local targ = head.Position - Part.Position
  777. local mag = targ.magnitude
  778. if mag <= Magnitude and c.Name ~= Player.Name then
  779. Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  780. end
  781. end
  782. end
  783. end
  784. end
  785.  
  786. EffectModel = Create("Model"){
  787. Parent = Character,
  788. Name = "Effects",
  789. }
  790.  
  791. Effects = {
  792.  
  793. Block = {
  794. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type, Part)
  795. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  796. prt.Anchored = true
  797. prt.CFrame = cframe
  798. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  799. game:GetService("Debris"):AddItem(prt, 10)
  800. if Type == 1 or Type == nil then
  801. table.insert(Effects, {
  802. prt,
  803. "Block1",
  804. delay,
  805. x3,
  806. y3,
  807. z3,
  808. msh
  809. })
  810. elseif Type == 2 then
  811. table.insert(Effects, {
  812. prt,
  813. "Block2",
  814. delay,
  815. x3,
  816. y3,
  817. z3,
  818. msh
  819. })
  820. elseif Type == 3 then
  821. table.insert(Effects, {
  822. prt,
  823. "Block3",
  824. delay,
  825. x3,
  826. y3,
  827. z3,
  828. msh,
  829. Part
  830. })
  831. elseif Type == 4 then
  832. table.insert(Effects, {
  833. prt,
  834. "Block2Fire",
  835. delay,
  836. x3,
  837. y3,
  838. z3,
  839. msh
  840. })
  841. end
  842. end
  843.  
  844. },
  845.  
  846. Cylinder = {
  847. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  848. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  849. prt.Anchored = true
  850. prt.CFrame = cframe
  851. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  852. game:GetService("Debris"):AddItem(prt, 10)
  853. table.insert(Effects, {
  854. prt,
  855. "Cylinder",
  856. delay,
  857. x3,
  858. y3,
  859. z3,
  860. msh
  861. })
  862. end
  863.  
  864. },
  865.  
  866. Sphere = {
  867. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, parent)
  868. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  869. prt.Anchored = true
  870. prt.CFrame = cframe
  871. if parent == nil then
  872. prt.Parent = workspace
  873. else
  874. prt.Parent = parent
  875. end
  876. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  877. game:GetService("Debris"):AddItem(prt, 10)
  878. table.insert(Effects, {
  879. prt,
  880. "Cylinder",
  881. delay,
  882. x3,
  883. y3,
  884. z3,
  885. msh
  886. })
  887. end
  888. },
  889.  
  890. Blood = {
  891. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  892. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  893. prt.Anchored = true
  894. prt.CFrame = cframe
  895. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  896. game:GetService("Debris"):AddItem(prt, 10)
  897. table.insert(Effects, {
  898. prt,
  899. "Blood",
  900. delay,
  901. x3,
  902. y3,
  903. z3,
  904. msh
  905. })
  906. end
  907. },
  908.  
  909. Head = {
  910. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  911. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  912. prt.Anchored = true
  913. prt.CFrame = cframe
  914. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  915. game:GetService("Debris"):AddItem(prt, 10)
  916. table.insert(Effects, {
  917. prt,
  918. "Cylinder",
  919. delay,
  920. x3,
  921. y3,
  922. z3,
  923. msh
  924. })
  925. end
  926. },
  927.  
  928. Fire = {
  929. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  930. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  931. prt.Anchored = true
  932. prt.CFrame = cframe
  933. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  934. game:GetService("Debris"):AddItem(prt, 10)
  935. table.insert(Effects, {
  936. prt,
  937. "Fire",
  938. delay,
  939. 1,
  940. 1,
  941. 1,
  942. msh
  943. })
  944. end;
  945. };
  946.  
  947. Ring = {
  948. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, par)
  949. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  950. prt.Anchored = true
  951. if par ~= nil then
  952. prt.Parent = par
  953. end
  954. prt.CFrame = cframe * CFrame.new(x3, y3, z3)
  955. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  956. game:GetService("Debris"):AddItem(prt, 10)
  957. table.insert(Effects, {
  958. prt,
  959. "Cylinder",
  960. delay,
  961. x3,
  962. y3,
  963. z3,
  964. msh
  965. })
  966. end
  967. },
  968.  
  969. Blast = {
  970. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Part)
  971. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  972. prt.Anchored = true
  973. prt.CFrame = cframe
  974. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1323306", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  975. game:GetService("Debris"):AddItem(prt, 10)
  976. table.insert(Effects, {
  977. prt,
  978. "Block4",
  979. delay,
  980. x3,
  981. y3,
  982. z3,
  983. msh,
  984. Part
  985. })
  986. end
  987. },
  988.  
  989. Wave = {
  990. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  991. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  992. prt.Anchored = true
  993. prt.CFrame = cframe
  994. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  995. game:GetService("Debris"):AddItem(prt, 10)
  996. table.insert(Effects, {
  997. prt,
  998. "Cylinder",
  999. delay,
  1000. x3,
  1001. y3,
  1002. z3,
  1003. msh
  1004. })
  1005. end
  1006. },
  1007.  
  1008. Elec = {
  1009. Create = function(cff, x, y, z)
  1010. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Medium blue"), "Part", Vector3.new(1, 1, 1))
  1011. prt.Anchored = true
  1012. prt.CFrame = cff * CFrame.new(math.random(-x * 100, x * 100) / 100, math.random(-y * 100, y * 100) / 100, math.random(-z * 100, z * 100) / 100)
  1013. prt.CFrame = CFrame.new(prt.Position)
  1014. game:GetService("Debris"):AddItem(prt, 10)
  1015. local xval = math.random() / 9
  1016. local yval = math.random() / 9
  1017. local zval = math.random() / 9
  1018. msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  1019. local eul1 = math.random(-50, 50)
  1020. local eul2 = math.random(-50, 50)
  1021. local eul3 = math.random(-50, 50)
  1022. local euld = CFrame.fromEulerAnglesXYZ(eul1, eul2, eul3)
  1023. local euld2 = CFrame.fromEulerAnglesXYZ(-eul1, -eul2, -eul3)
  1024. Effects[#Effects + 1] = {
  1025. prt,
  1026. "Elec",
  1027. .05,
  1028. x,
  1029. y,
  1030. z,
  1031. xval,
  1032. yval,
  1033. zval,
  1034. msh,
  1035. euld,
  1036. euld2
  1037. }
  1038. end
  1039. },
  1040.  
  1041. Break = {
  1042. Create = function(brickcolor, cframe, x1, y1, z1)
  1043. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1044. prt.Anchored = true
  1045. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1046. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1047. local num = math.random(10, 50) / 1000
  1048. game:GetService("Debris"):AddItem(prt, 10)
  1049. table.insert(Effects, {
  1050. prt,
  1051. "Shatter",
  1052. num,
  1053. prt.CFrame,
  1054. math.random() - math.random(),
  1055. 0,
  1056. math.random(50, 100) / 100
  1057. })
  1058. end;
  1059. };
  1060.  
  1061. Ice = {
  1062. Create = function(brickcolor, cframe, x1, y1, z1, delay)
  1063. local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  1064. prt.Anchored = true
  1065. prt.CFrame = cframe
  1066. msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://1778999", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1067. game:GetService("Debris"):AddItem(prt, 10)
  1068. for i = 1, 5 do
  1069. Effects.Break.Create(BrickColor.new("White"), Torso.CFrame, 10, 1, 2.6)
  1070. end
  1071. for i = 1, 15 do
  1072. local freezepart = CFuncs.Part.Create(EffectModel, "Neon", 1, 1, BrickColor.new("Bright blue"), "Ice Part", Vector3.new(math.random(1, 2) + math.random(), math.random(1, 2) + math.random(), math.random(1, 2) + math.random()))
  1073. freezepart.Anchored = true
  1074. freezepart.CanCollide = true
  1075. freezepart.CFrame = cframe * CFrame.new(math.random(-300, 300) / 100, 4, math.random(-300, 300) / 100) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1076. game:GetService("Debris"):AddItem(freezepart, 10)
  1077. end
  1078. table.insert(Effects, {
  1079. prt,
  1080. "Ice",
  1081. delay,
  1082. msh,
  1083. 1,
  1084. .2
  1085. })
  1086. end
  1087. },
  1088.  
  1089. Lightning = {
  1090. Create = function(p0, p1, tym, ofs, col, th, tra, last)
  1091. local magz = (p0 - p1).magnitude
  1092. local curpos = p0
  1093. local trz = {
  1094. -ofs,
  1095. ofs
  1096. }
  1097. for i = 1, tym do
  1098. local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  1099. local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  1100. local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  1101. li.Material = "Neon"
  1102. if tym == i then
  1103. local magz2 = (curpos - p1).magnitude
  1104. li.Size = Vector3.new(th, th, magz2)
  1105. li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  1106. table.insert(Effects, {
  1107. li,
  1108. "Disappear",
  1109. last
  1110. })
  1111. else
  1112. do
  1113. do
  1114. li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  1115. curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  1116. game.Debris:AddItem(li, 10)
  1117. table.insert(Effects, {
  1118. li,
  1119. "Disappear",
  1120. last
  1121. })
  1122. end
  1123. end
  1124. end
  1125. end
  1126. end
  1127. };
  1128.  
  1129. EffectTemplate = {
  1130.  
  1131. };
  1132.  
  1133. }
  1134.  
  1135. function Shoot7(Part)
  1136. sp = Part.Position
  1137. dirr = Part.CFrame * CFrame.fromEulerAnglesXYZ(-1.57, 0, 0)
  1138. local hit, pos = rayCast(sp, dirr.lookVector, 1000, Character)
  1139. local las = Instance.new("Part", Character)
  1140. las.Anchored = true
  1141. las.Locked = true
  1142. las.CanCollide = false
  1143. las.TopSurface = 0
  1144. las.BottomSurface = 0
  1145. las.BrickColor = BrickColor.new("White")
  1146. las.Size = Vector3.new(10, 1, 10)
  1147. las.CFrame = CFrame.new((Part.Position + pos) / 2, pos) * CFrame.Angles(math.rad(90), 0, 0)
  1148. local msh = Instance.new("SpecialMesh", las)
  1149. mag = (Part.Position - pos).magnitude
  1150. msh.Scale = Vector3.new(0.001, mag, 0.001)
  1151. coroutine.resume(coroutine.create(function(Part, Mesh)
  1152. for i = 0, 0.8, 0.1 do
  1153. swait()
  1154. Part.Transparency = Part.Transparency + 0.1
  1155. Mesh.Scale = Mesh.Scale + Vector3.new(1, 0.02, 1)
  1156. end
  1157. Part.Parent = nil
  1158. end), las, msh)
  1159. if pos ~= nil then
  1160. local las2 = Instance.new("Part", Character)
  1161. las2.Anchored = true
  1162. las2.Locked = true
  1163. las2.CanCollide = false
  1164. las2.TopSurface = 0
  1165. las2.BottomSurface = 0
  1166. las2.Transparency = 1
  1167. las2.BrickColor = BrickColor.new("White")
  1168. las2.Size = Vector3.new(1, 1, 1)
  1169. las2.CFrame = CFrame.new(pos) * CFrame.Angles(math.rad(90), 0, 0)
  1170. local msh = Instance.new("SpecialMesh", las2)
  1171. msh.MeshType = "Sphere"
  1172. mag = (Part.Position - pos).magnitude
  1173. msh.Scale = Vector3.new(0.1, 0.1, 0.1)
  1174. Effects.Ring.Create(BrickColor.new("White"), las2.CFrame * CFrame.Angles(math.random(-4,4),math.random(-4,4),math.random(-4,4)), 25, 25, 2, 15, 15, 7, 0.07)
  1175. Effects.Sphere.Create(BrickColor.new("White"), las2.CFrame, 12, 12, 12, 80, 80, 80, 0.07)
  1176. MagnitudeDamage(las2, 40, 20, 20, 1, "Snare", "0", 1)
  1177. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=228343252", las2, 1.2, 0.7)
  1178.  
  1179. coroutine.resume(coroutine.create(function(Part, Mesh)
  1180. for i = 0, 0.8, 0.1 do
  1181. swait()
  1182. Part.Transparency = Part.Transparency + 1
  1183. Mesh.Scale = Mesh.Scale + Vector3.new(0, 0, 0)
  1184. end
  1185. Part.Parent = nil
  1186. end), las2, msh)
  1187. end
  1188. if hit ~= nil and pos ~= nil then
  1189. if hit.Parent.className == "Accessory" then
  1190. hit:BreakJoints()
  1191. hit.Velocity = Vector3.new(math.random(-5, 5), 20, math.random(-5, 5))
  1192. end
  1193.  
  1194. end
  1195. end
  1196.  
  1197.  
  1198. function attackone()
  1199. attack = true
  1200. for i = 0, 1, 0.1 do
  1201. swait()
  1202. PlayAnimationFromTable({
  1203. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1204. CFrame.new(-6.76445716e-13, 1.49998641, 0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1205. CFrame.new(1.50379586, 0.437886596, -0.654326677, 0.999822855, -0.0187563021, -0.00347148441, -0.00348084164, -0.000465080549, -0.999995351, 0.0187545996, 0.99982357, -0.000530224817) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1206. CFrame.new(-1.51647484, 0.0492154807, 0.182783186, 0.998442948, 0.0524127446, -0.0190898348, -0.0487618595, 0.98629868, 0.15760535, 0.0270887911, -0.156429097, 0.987318754) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1207. CFrame.new(0.557841063, -2.01711893, -0.0416967012, 0.99935025, -0.03617635, -0.000444640638, 0.0361750089, 0.999344468, -0.00256539602, 0.000537161017, 0.00254765828, 0.999996126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1208. CFrame.new(-0.55255121, -1.99732482, 2.08271498e-08, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1209. }, .3, false)
  1210. moter.C0 = clerp(moter.C0, CFrame.new(-0.0731695592, -0.672584653, -0.223004475, 0.0412685275, -0.0151544847, 0.999039233, 0.627405107, -0.777776599, -0.0377153233, 0.777599573, 0.62835741, -0.0225896034) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1211. end
  1212. shootmain(Mouse, Shootpart,1, 1)
  1213. for i = 0, 1, 0.1 do
  1214. swait()
  1215. RootPart.Velocity = RootPart.CFrame.lookVector * -10
  1216. PlayAnimationFromTable({
  1217. CFrame.new(0, -0, 0, 0.994521797, 0.00547062745, -0.104386218, 3.04088061e-08, 0.998630583, 0.0523360781, 0.104529567, -0.0520493761, 0.993159771) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1218. CFrame.new(-0.0156579614, 1.49789202, -0.0706776828, 0.994521797, -0.00547064235, 0.104386516, 0.00547062745, 0.99998796, 0.000286314636, -0.104386218, 0.000286318362, 0.994539678) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1219. CFrame.new(1.43615687, 0.554609299, -0.6940853, 0.996182859, 0.0835634172, -0.0252404269, -0.00274252123, -0.259045154, -0.96586144, -0.0872491002, 0.962243617, -0.257827133) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1220. CFrame.new(-1.49062657, -0.0179859884, 0.350454509, 0.995804667, 0.0313175321, 0.0859754384, -0.0446428284, 0.986471772, 0.157739788, -0.0798722282, -0.160916194, 0.983731329) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1221. CFrame.new(0.550415456, -2.00912833, -0.205209821, 0.993926883, -0.030214902, 0.10581328, 0.0415640511, 0.993417323, -0.106751151, -0.101891175, 0.110500939, 0.988639593) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1222. CFrame.new(-0.54952234, -1.99758744, -0.0468520671, 0.994521797, 9.35956507e-07, 0.104529269, 0.0054697087, 0.998627245, -0.0520490929, -0.104386307, 0.0523356982, 0.993156433) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1223. }, .3, false)
  1224. moter.C0 = clerp(moter.C0, CFrame.new(-0.0731737167, -0.672586501, -0.223005846, 0.0412693992, -0.0151543571, 0.999034524, 0.627405703, -0.777777851, -0.0377158932, 0.777599216, 0.628356814, -0.022590477) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1225. end
  1226. attack = false
  1227. end
  1228.  
  1229. function skill1()
  1230. attack = true
  1231. Humanoid.WalkSpeed = 0
  1232. for i = 0, 1, 0.1 do
  1233. swait()
  1234. PlayAnimationFromTable({
  1235. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1236. CFrame.new(-6.76445716e-13, 1.49998641, 0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1237. CFrame.new(1.92435527, 0.919791996, 0.0265611447, -0.0116076013, -0.891222477, 0.453427076, 0.0151377954, -0.453558594, -0.891102493, 0.999818981, -0.00347974291, 0.0187559333) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1238. CFrame.new(-1.57055521, 0.100203805, 0.122959681, 0.994331479, 0.104597613, -0.0190892573, -0.100316271, 0.982395411, 0.15760392, 0.035238184, -0.154795647, 0.987318873) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1239. CFrame.new(0.557826519, -2.01724768, 0.00830234401, 0.99935025, -0.03617635, -0.000444640638, 0.0361750089, 0.999344468, -0.00256539602, 0.000537161017, 0.00254765828, 0.999996126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1240. CFrame.new(-0.55255121, -1.99732482, 2.08271498e-08, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1241. }, .3, false)
  1242. moter.C0 = clerp(moter.C0, CFrame.new(0.0230328515, -0.787980795, -0.0187070873, -0.0398879573, -0.0184677243, -0.999042511, -0.257566422, 0.966233969, -0.00757749146, 0.965449393, 0.257022798, -0.0432975888) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1243. end
  1244. badabing = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "Reference", Vector3.new())
  1245. badabing.Anchored=true
  1246. badabing.CFrame = RootPart.CFrame * CFrame.new(0, 150, 0)
  1247. randomizer = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "White", "groundref", Vector3.new())
  1248. randomizer.Anchored=true
  1249. randomizer.CFrame = RootPart.CFrame * CFrame.new(0, -1, 0)
  1250.  
  1251. CFuncs.Sound.Create("rbxassetid://231917975", Torso, 3, 1)
  1252. for i = 1, 100 do
  1253. swait(.0001)
  1254. randomizer.CFrame = RootPart.CFrame * CFrame.new(math.random(-0, 0), -1.3, math.random(-0, 0))
  1255. Effects.Sphere.Create(BrickColor.new('White'), randomizer.CFrame, 50, 50, 50, 1, 1, 1, .1)
  1256. end
  1257. CFuncs.Sound.Create("rbxassetid://231917833", Torso, 4, 1)
  1258. for i = 0, 1, 0.1 do
  1259. swait()
  1260. hail(badabing, badabing, 10, 1.5)
  1261. Effects.Break.Create(BrickColor.new("Light blue"), Shootpart.CFrame * CFrame.new(0, 0, 0))
  1262. hail(badabing, badabing, 10, 1.5)
  1263. hail(badabing, badabing, 10, 1.5)
  1264. hail(badabing, badabing, 10, 1.5)
  1265. hail(badabing, badabing, 10, 1.5)
  1266. PlayAnimationFromTable({
  1267. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1268. CFrame.new(-0.0572109967, 1.54154742, 1.16861089e-12, 0.987688065, -0.156435952, -1.17458057e-11, 0.156436101, 0.987689018, -1.23634436e-12, 1.2693846e-11, -7.67386155e-13, 1.00000095) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1269. CFrame.new(1.86167085, 0.750771523, 0.028392395, -0.0116075892, -0.809319139, 0.587254465, 0.0151378037, -0.587369561, -0.809178472, 0.999818981, -0.000502867741, 0.0190692581) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1270. CFrame.new(-1.57055497, 0.100203834, 0.122953884, 0.994331479, 0.104597613, -0.0190892573, -0.100316271, 0.982395411, 0.15760392, 0.035238184, -0.154795647, 0.987318873) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1271. CFrame.new(0.55781889, -2.01724815, 0.00830043294, 0.99935025, -0.03617635, -0.000444640638, 0.0361750089, 0.999344468, -0.00256539602, 0.000537161017, 0.00254765828, 0.999996126) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1272. CFrame.new(-0.55255121, -1.99732471, 2.0827148e-08, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1273. }, .3, false)
  1274. moter.C0 = clerp(moter.C0, CFrame.new(0.0240847785, -1.15937495, 0.0576619059, -0.0439543091, -0.000644756015, -0.999034703, 0.310074389, 0.950606227, -0.0142557155, 0.949696422, -0.310399175, -0.0415832885) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1275. end
  1276. badabing:Remove()
  1277. randomizer:Remove()
  1278. Humanoid.WalkSpeed = 16
  1279. attack = false
  1280. end
  1281.  
  1282. Laser = function(brickcolor, reflect, cframe, x1, y1, z1, x3, y3, z3, delay)
  1283.  
  1284. local prt = CFuncs.Part.Create(EffectModel, "Plastic", reflect, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  1285. prt.Anchored = true
  1286. prt.CFrame = cframe
  1287. prt.Material = "Plastic"
  1288. prt.BrickColor = BrickColor.new("Cool yellow")
  1289. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  1290. game:GetService("Debris"):AddItem(prt, 10)
  1291. coroutine.resume(coroutine.create(function(Part, Mesh)
  1292.  
  1293. for i = 0, 1, delay do
  1294. swait()
  1295. Part.Transparency = i
  1296. Mesh.Scale = Mesh.Scale + Vector3.new(x3, y3, z3)
  1297. end
  1298. Part.Parent = nil
  1299. end
  1300. ), prt, msh)
  1301. end
  1302.  
  1303. hail = function(mouse, partt, SpreadAmount, multiply)
  1304.  
  1305. local SpreadVectors = Vector3.new(math.random(-SpreadAmount, SpreadAmount), math.random(-SpreadAmount, SpreadAmount), math.random(-SpreadAmount, SpreadAmount))
  1306. local MainPos = badabing.Position
  1307. local MainPos2 = randomizer.Position + SpreadVectors
  1308. local MouseLook = CFrame.new((MainPos + MainPos2) / 2, MainPos2)
  1309. local speed = 9001
  1310. local num = 70
  1311. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=341336307", partt, 1, 1)
  1312. coroutine.resume(coroutine.create(function()
  1313.  
  1314. repeat
  1315. swait()
  1316. local hit, pos = rayCast(MainPos, MouseLook.lookVector, speed, RootPart.Parent)
  1317. local mag = (MainPos - pos).magnitude
  1318. Laser(BrickColor.new("Cool yellow"), 0.35, CFrame.new((MainPos + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * (speed / (speed / 2)), 1, -0.5, 0, -0.5, 0.15)
  1319. MainPos = MainPos + MouseLook.lookVector * speed
  1320. num = num - 1
  1321. MouseLook = MouseLook * CFrame.Angles(math.rad(-1), 0, 0)
  1322. if hit ~= nil then
  1323. num = 0
  1324. local refpart = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "Cool yellow", "Effect", Vector3.new())
  1325. refpart.Anchored = true
  1326. refpart.CFrame = CFrame.new(pos)
  1327. game:GetService("Debris"):AddItem(refpart, 2)
  1328. end
  1329. do
  1330. if num <= 0 then
  1331. local refpart = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 1, "Really black", "Effect", Vector3.new())
  1332. refpart.Anchored = true
  1333. refpart.CFrame = CFrame.new(pos)
  1334. Effects.Block.Create(BrickColor.new('Cool yellow'), refpart.CFrame, 10, 10, 10, 5, 5, 5, .1)
  1335. if hit ~= nil then
  1336. MagnitudeDamage(refpart, 5, 5 * multiply, 15 * multiply, 0, "Normal", "231917784", 1)
  1337. end
  1338. game:GetService("Debris"):AddItem(refpart, 0)
  1339. end
  1340. end
  1341. until num <= 0
  1342. end
  1343. ))
  1344. end
  1345.  
  1346. function skill2()
  1347. attack = true
  1348. Humanoid.Health = Humanoid.Health + 100
  1349. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=165487479", Head, 1, 1)
  1350. for i = 0, 1.05, 0.1 do
  1351. swait()
  1352. PlayAnimationFromTable({
  1353. CFrame.new(0.00284654042, -0.0491668843, 0.00863608345, 0.838672996, -0.0569300465, -0.541652262, 0.140960127, 0.983324528, 0.114905387, 0.526078105, -0.172719359, 0.832712352) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1354. CFrame.new(0.0145828724, 1.48915434, -0.128683239, 0.838672996, -0.168303922, 0.517978549, -0.0569300465, 0.918754935, 0.390702903, -0.541652262, -0.357160389, 0.760953188) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1355. CFrame.new(1.55723238, 0.65414232, 0.029801771, -0.213925928, -0.975853086, -0.0441304147, 0.148771867, 0.0121005028, -0.988797545, 0.965461969, -0.218095422, 0.142589137) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1356. CFrame.new(-0.057764601, 0.722776413, -0.949312329, 0.16808024, -0.98407197, -0.058079645, 0.0720412284, 0.0710230991, -0.994879901, 0.983141303, 0.163027585, 0.0828276128) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1357. CFrame.new(0.414857537, -1.9400022, -0.61491102, 0.997200131, 0.0709253401, -0.0237311423, -0.0736553296, 0.986384571, -0.147044465, 0.0129787624, 0.148380652, 0.988845468) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1358. CFrame.new(-0.808947563, -1.86046076, 0.288144022, -0.0925388932, 0.276828229, 0.956453383, -0.236146197, 0.927068114, -0.291170657, -0.967301607, -0.252807379, -0.0204179883) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1359. }, .3, false)
  1360. moter.C0 = clerp(moter.C0, CFrame.new(-0.0806410164, -0.697505772, -0.186267465, -0.119340986, -0.0858065486, 0.989145815, 0.611814439, -0.790986776, 0.00519710779, 0.781952024, 0.605788291, 0.14689292) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1361. end
  1362. attack = false
  1363. end
  1364.  
  1365. Shoota = function(orgpos)
  1366.  
  1367. local MouseLook = CFrame.new((orgpos + Mouse.Hit.p) / 2, Mouse.Hit.p)
  1368. Effects.Block.Create(BrickColor.new("Cool yellow"), CFrame.new(orgpos), 30, 30, 30, 6, 6, 6, 0.09)
  1369. Effects.Block.Create(BrickColor.new("Cool yellow"), CFrame.new(orgpos), 32, 32, 32, 7, 7, 7, 0.09)
  1370. table.insert(Effects, {MouseLook.lookVector, "Shoot2", 50, orgpos, 5, 7, 0, 1, 1})
  1371. end
  1372.  
  1373. shootmain = function(Mouse, partt, SpreadAmount, multiply)
  1374.  
  1375. local SpreadVectors = Vector3.new(math.random(-SpreadAmount, SpreadAmount), math.random(-SpreadAmount, SpreadAmount), math.random(-SpreadAmount, SpreadAmount))
  1376. local MainPos = partt.Position
  1377. local MainPos2 = Mouse.Hit.p + SpreadVectors
  1378. local MouseLook = CFrame.new((MainPos + MainPos2) / 2, MainPos2)
  1379. local speed = 666
  1380. local num = 20
  1381. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=846233576", Shootpart, 1, 1)
  1382. coroutine.resume(coroutine.create(function()
  1383.  
  1384. repeat
  1385. swait()
  1386. local hit, pos = rayCast(MainPos, MouseLook.lookVector, speed, RootPart.Parent)
  1387. local mag = (MainPos - pos).magnitude
  1388. Laser(BrickColor.new("Cool yellow"), 0.35, CFrame.new((MainPos + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * (speed / (speed / 2)), 1, -0.5, 0, -0.5, 0.15)
  1389. MainPos = MainPos + MouseLook.lookVector * speed
  1390. num = num - 1
  1391. MouseLook = MouseLook * CFrame.Angles(math.rad(-1), 0, 0)
  1392. if hit ~= nil then
  1393. num = 0
  1394. local refpart = CFuncs.Part.Create(effect, "SmoothPlastic", 0, 1, "Really black", "Effect", Vector3.new())
  1395. refpart.Anchored = true
  1396. refpart.CFrame = CFrame.new(pos)
  1397. game:GetService("Debris"):AddItem(refpart, 2)
  1398. end
  1399. do
  1400. if num <= 0 then
  1401. local refpart = CFuncs.Part.Create(effect, "SmoothPlastic", 0, 1, "Really black", "Effect", Vector3.new())
  1402. refpart.Anchored = true
  1403. refpart.CFrame = CFrame.new(pos)
  1404. Effects.Block.Create(BrickColor.new('Cool yellow'), refpart.CFrame, 10, 10, 10, 5, 5, 5, .1)
  1405. if hit ~= nil then
  1406. MagnitudeDamage(refpart, 5, 5 * multiply, 15 * multiply, 0, "Normal", "231917784", 1)
  1407. end
  1408. game:GetService("Debris"):AddItem(refpart, 0)
  1409. end
  1410. end
  1411. until num <= 0
  1412. end
  1413. ))
  1414. end
  1415.  
  1416. function skill3()
  1417. attack = true
  1418. local con = RightLeg.Touched:connect(function(hit)
  1419. Damage(RightLeg, hit, 5, 9, math.random(1, 5), "Normal", RootPart, 3, "rbxassetid://165586617", 1)
  1420. end)
  1421. Humanoid.WalkSpeed = 0
  1422. for i = 0, 5, 0.1 do
  1423. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=330640599", Torso, 1, 1)
  1424. swait()
  1425. RootPart.Velocity = RootPart.CFrame.lookVector * 53
  1426. PlayAnimationFromTable({
  1427. CFrame.new(1.71332783e-12, -2.26551628, 0.615328074, 1, 1.85033898e-11, -1.27442328e-12, -4.60431693e-12, 0.156436995, -0.987688959, -1.71667125e-11, 0.987688959, 0.156436995) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1428. CFrame.new(0, 1.50546706, -0.390476882, 1, 0, -0, 0, 0.777146339, 0.629320085, -0, -0.629320085, 0.777146339) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1429. CFrame.new(1.77975953, 0.93702805, 0.253049374, -0.326832205, -0.705536187, 0.628808498, -0.241977498, -0.580698967, -0.777326286, 0.91358, -0.406212986, 0.019066669) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1430. CFrame.new(-1.7600888, 1.28007531, 0.206534833, -0.0799038038, 0.386386573, -0.918869376, 0.19666867, -0.897585988, -0.394539028, -0.977208793, -0.212237969, -0.00426960364) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1431. CFrame.new(0.557647705, -2.01188278, -0.0414109826, 0.999345243, -0.0360278934, 0.00333665079, 0.0361780189, 0.993599296, -0.107014418, 0.000540209468, 0.107065089, 0.994251966) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1432. CFrame.new(-0.55255127, -1.53768849, -0.106071234, 1, 0, -0, 0, 0.777147412, 0.629318774, -0, -0.629318774, 0.777147412) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1433. }, .3, false)
  1434. moter.C0 = clerp(moter.C0, CFrame.new(-0.317896128, -0.787691295, -0.0618839338, 0.509285808, -0.4087767, 0.757320583, -0.240071535, -0.912541389, -0.331116319, 0.826435924, -0.0131779611, -0.562879264) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1435. end
  1436. Humanoid.WalkSpeed = 16
  1437. attack = false
  1438. con:disconnect()
  1439. end
  1440.  
  1441. function cringe()
  1442. attack = true
  1443. for i = 0, .99, 0.1 do
  1444. swait()
  1445. PlayAnimationFromTable({
  1446. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1447. CFrame.new(-3.08454037e-06, 1.42273104, -0.237763405, 0.933578968, -7.29779856e-07, -0.358372718, 0.110745594, 0.95105648, 0.288496614, 0.340831995, -0.309022427, 0.887886167) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1448. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1449. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1450. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1451. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1452. }, .3, false)
  1453. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1454. end
  1455. for i = 0, .99, 0.1 do
  1456. swait()
  1457. PlayAnimationFromTable({
  1458. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1459. CFrame.new(-1.75088644e-06, 1.42272985, -0.237760231, 0.987695217, 5.65201958e-07, 0.156433403, -0.0483417809, 0.951056182, 0.305218697, -0.148776859, -0.309021235, 0.939353645) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1460. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1461. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1462. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1463. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1464. }, .3, false)
  1465. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1466. end
  1467. for i = 0, .99, 0.1 do
  1468. swait()
  1469. PlayAnimationFromTable({
  1470. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1471. CFrame.new(-3.08454037e-06, 1.42273104, -0.237763405, 0.933578968, -7.29779856e-07, -0.358372718, 0.110745594, 0.95105648, 0.288496614, 0.340831995, -0.309022427, 0.887886167) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1472. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1473. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1474. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1475. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1476. }, .3, false)
  1477. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1478. end
  1479. for i = 0, .99, 0.1 do
  1480. swait()
  1481. PlayAnimationFromTable({
  1482. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1483. CFrame.new(-1.75088644e-06, 1.42272985, -0.237760231, 0.987695217, 5.65201958e-07, 0.156433403, -0.0483417809, 0.951056182, 0.305218697, -0.148776859, -0.309021235, 0.939353645) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1484. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1485. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1486. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1487. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1488. }, .3, false)
  1489. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1490. end
  1491. for i = 0, .99, 0.1 do
  1492. swait()
  1493. PlayAnimationFromTable({
  1494. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1495. CFrame.new(-3.08454037e-06, 1.42273104, -0.237763405, 0.933578968, -7.29779856e-07, -0.358372718, 0.110745594, 0.95105648, 0.288496614, 0.340831995, -0.309022427, 0.887886167) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1496. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1497. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1498. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1499. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1500. }, .3, false)
  1501. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1502. end
  1503. for i = 0, .99, 0.1 do
  1504. swait()
  1505. PlayAnimationFromTable({
  1506. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1507. CFrame.new(-1.75088644e-06, 1.42272985, -0.237760231, 0.987695217, 5.65201958e-07, 0.156433403, -0.0483417809, 0.951056182, 0.305218697, -0.148776859, -0.309021235, 0.939353645) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1508. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1509. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1510. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1511. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1512. }, .3, false)
  1513. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1514. end
  1515. for i = 0, .99, 0.1 do
  1516. swait()
  1517. PlayAnimationFromTable({
  1518. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1519. CFrame.new(-3.08454037e-06, 1.42273104, -0.237763405, 0.933578968, -7.29779856e-07, -0.358372718, 0.110745594, 0.95105648, 0.288496614, 0.340831995, -0.309022427, 0.887886167) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1520. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1521. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1522. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1523. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1524. }, .3, false)
  1525. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1526. end
  1527. for i = 0, .99, 0.1 do
  1528. swait()
  1529. PlayAnimationFromTable({
  1530. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1531. CFrame.new(-1.75088644e-06, 1.42272985, -0.237760231, 0.987695217, 5.65201958e-07, 0.156433403, -0.0483417809, 0.951056182, 0.305218697, -0.148776859, -0.309021235, 0.939353645) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1532. CFrame.new(0.449923962, 0.786167085, -0.90794456, -0.536167026, 0.797128797, -0.277688891, -0.788489461, -0.590402842, -0.172369942, -0.301349431, 0.126535565, 0.945081651) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1533. CFrame.new(-0.188093781, 0.204599813, -0.129760623, 0.255312055, -0.966483116, -0.0270544682, 0.966844141, 0.255369753, 0.00137344899, 0.00558146322, -0.0265081059, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1534. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1535. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1536. }, .3, false)
  1537. moter.C0 = clerp(moter.C0, CFrame.new(-0.389656603, -0.780816793, -0.166751757, 0.484147668, 0.874765575, 0.0196704566, 0.847416103, -0.46317485, -0.259529293, -0.217916355, 0.1423195, -0.965534925) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1538. end
  1539. attack = false
  1540. end
  1541.  
  1542. function skill4()
  1543. attack = true
  1544. Humanoid.WalkSpeed = 0
  1545. local con = Shootpart.Touched:connect(function(hit)
  1546. Damage(Shootpart, hit, 1000, 1000, math.random(1, 5), "Normal", RootPart, 3, "rbxassetid://146163534", 1)
  1547. end)
  1548. for i = 0, 1, 0.1 do
  1549. swait()
  1550. PlayAnimationFromTable({
  1551. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1552. CFrame.new(-6.76445716e-13, 1.49998641, 0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1553. CFrame.new(1.63378763, 0.784575403, 0.626388669, -0.638396323, -0.621981561, 0.453420788, -0.310008496, -0.331417471, -0.891100585, 0.704519272, -0.709439039, 0.0187563747) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1554. CFrame.new(-1.45747352, -0.000428291678, -0.0169889182, 0.999841452, -0.00383195048, 0.0174011104, 0.00369932642, 0.999964893, 0.00764765125, -0.0174298119, -0.00758206472, 0.999820352) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1555. CFrame.new(0.557813585, -2.01724243, 0.00830213353, 0.997999072, -0.0361758024, 0.0518574007, 0.0362592675, 0.999343157, -0.000668675581, -0.0517991446, 0.00254764897, 0.998655319) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1556. CFrame.new(-0.502551973, -1.99732482, 2.09503046e-08, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1557. }, .3, false)
  1558. moter.C0 = clerp(moter.C0, CFrame.new(-0.307827055, -0.945138454, -0.233602539, 0.111289024, 0.272969961, 0.955566287, 0.843120337, -0.53494525, 0.0546218455, 0.526086509, 0.799577296, -0.289679378) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1559. end
  1560. for i = 0, 1, 0.1 do
  1561. swait()
  1562. PlayAnimationFromTable({
  1563. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1564. CFrame.new(-6.76446041e-13, 1.49998713, 0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1565. CFrame.new(0.784057915, 0.530719638, -1.11145675, 0.760513663, 0.639931142, 0.11003381, 0.025037935, 0.140432268, -0.989774764, -0.64884001, 0.755491972, 0.0907780901) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1566. CFrame.new(-1.45747733, -0.000428082305, -0.0169907622, 0.999841452, -0.00383195048, 0.0174011104, 0.00369932642, 0.999964893, 0.00764765125, -0.0174298119, -0.00758206472, 0.999820352) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1567. CFrame.new(0.5578174, -2.01724195, 0.00830193795, 0.997999072, -0.0361758024, 0.0518574007, 0.0362592675, 0.999343157, -0.000668675581, -0.0517991446, 0.00254764897, 0.998655319) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1568. CFrame.new(-0.502548158, -1.99732447, 2.09503099e-08, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1569. }, .3, false)
  1570. moter.C0 = clerp(moter.C0, CFrame.new(-0.289447755, -1.04616499, -0.37953198, 0.171506032, -0.162732333, 0.971654594, 0.507644057, -0.830653429, -0.228722811, 0.844327986, 0.532482445, -0.059851855) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1571. end
  1572. Humanoid.WalkSpeed = 16
  1573. con:Disconnect()
  1574. attack = false
  1575. end
  1576.  
  1577. function cringe2()
  1578. attack = true
  1579. Humanoid.WalkSpeed = 0
  1580. for i = 0, 3, 0.1 do
  1581. swait()
  1582. PlayAnimationFromTable({
  1583. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1584. CFrame.new(-0.0140685402, 1.52261281, 0.0118884463, 0.998629749, -0.0161746982, -0.0497796386, 0.0161741246, 0.999870241, -0.000414520735, 0.0497798659, -0.000391189416, 0.998761475) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1585. CFrame.new(1.87475526, 0.930106044, -0.0220574737, -0.350332558, -0.935963094, 0.0352388807, 0.936572134, -0.349651694, 0.0241183322, -0.0102524795, 0.0414531939, 0.999087989) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1586. CFrame.new(-1.55593383, 0.0922081023, -0.166624919, 0.994520426, 0.100986823, -0.0270543899, -0.100987062, 0.994891644, 0.00137344981, 0.0270547755, 0.00136621902, 0.999635577) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1587. CFrame.new(0.554502606, -1.95276523, 0.0122203752, 0.999346077, -0.0361736231, 0.000402636273, 0.0361087658, 0.998108387, 0.0497808196, -0.00220262865, -0.0497337207, 0.99876076) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1588. CFrame.new(-0.499935061, -1.99739313, 0.0500004031, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1589. }, .3, false)
  1590. moter.C0 = clerp(moter.C0, CFrame.new(0.115644276, -1.00993621, 0.116102532, -0.942083418, -0.335367292, -0.00362925045, -0.333913654, 0.938904047, -0.0834463611, 0.03139247, -0.0774012506, -0.996505558) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1591. end
  1592. Humanoid.Health = 0.001
  1593. Effects.Block.Create(BrickColor.new("Cool yellow"), Shootpart.CFrame * CFrame.new(0, 0, 0), 4, 4, 4, 2, 2, 2, .07)
  1594. Effects.Break.Create(BrickColor.new("Cool yellow"), Shootpart.CFrame, 5, .7, .7)
  1595. Effects.Break.Create(BrickColor.new("Cool yellow"), Shootpart.CFrame, 5, .7, .7)
  1596. Effects.Break.Create(BrickColor.new("Cool yellow"), Shootpart.CFrame, 5, .7, .7)
  1597. Effects.Break.Create(BrickColor.new("Cool yellow"), Shootpart.CFrame, 5, .7, .7)
  1598. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=846233576", Shootpart, 1, 1)
  1599. for i = 0, 1, 0.1 do
  1600. swait()
  1601. PlayAnimationFromTable({
  1602. CFrame.new(0, -0, 0, 0.99862957, -0.0523361303, 1.81777857e-12, 0.0523361266, 0.998633385, 4.26325641e-14, 1.81721305e-12, -5.68434189e-14, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1603. CFrame.new(-0.0428714976, 1.54762077, 0.00642733369, 0.973466635, -0.223384321, -0.0497329459, 0.223770037, 0.974642634, 0.00219128886, 0.0479824543, -0.0132617969, 0.998763025) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1604. CFrame.new(1.94307065, 0.6823892, -0.0195657909, -0.148052812, -0.988307476, 0.0364530459, 0.988842845, -0.147312805, 0.0222407151, -0.0166106671, 0.0393391177, 0.999090731) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1605. CFrame.new(-1.54897189, 0.173511803, -0.166624963, 0.978514552, 0.204409495, -0.0269454382, -0.204409882, 0.978884399, 0.00278747012, 0.0269462466, 0.00278033293, 0.999635935) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1606. CFrame.new(0.549670219, -1.92560482, 0.00926275551, 0.999340713, -0.0362381749, 0.00300741219, 0.036044348, 0.998117626, 0.0496915914, -0.00480249058, -0.0495504066, 0.998762131) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1607. CFrame.new(-0.603785574, -1.96849489, 0.0500004999, 0.998629808, 0.052336134, 1.08793152e-09, -0.0523362458, 0.998635411, -5.58679858e-09, 2.46404186e-09, -1.1108952e-08, 1.00000572) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1608. }, .3, false)
  1609. moter.C0 = clerp(moter.C0, CFrame.new(0.232984588, -0.884218752, 0.106375366, -0.972069085, -0.234514013, 0.00946775824, -0.234478518, 0.968574286, -0.0829868019, 0.0102912504, -0.0828888416, -0.99650526) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1610. end
  1611. Humanoid.WalkSpeed = 16
  1612. attack = false
  1613. end
  1614.  
  1615. Mouse.Button1Down:connect(function()
  1616. if attack == false then
  1617. attackone()
  1618. end
  1619. end)
  1620.  
  1621. Mouse.KeyDown:connect(function(k)
  1622. k = k:lower()
  1623. if attack == false and k == 'z' then
  1624. skill1()
  1625. elseif attack == false and k == 'x' then
  1626. skill2()
  1627. elseif attack == false and k == 'c' and Anim == 'Walk' then
  1628. skill3()
  1629. elseif attack == false and k == 'v' then
  1630. skill4()
  1631. elseif attack == false and k == 'q' then
  1632. cringe()
  1633. elseif attack == false and k == 'e' then
  1634. cringe2()
  1635. end
  1636. end)
  1637.  
  1638. while true do
  1639. swait()
  1640. for i, v in pairs(Character:GetChildren()) do
  1641. if v:IsA("Part") then
  1642. v.Material = "SmoothPlastic"
  1643. elseif v:IsA("Accessory") then
  1644. v:WaitForChild("Handle").Material = "SmoothPlastic"
  1645. end
  1646. end
  1647. for i, v in pairs(Character:GetChildren()) do
  1648. if v:IsA'Model' then
  1649. for _, c in pairs(v:GetChildren()) do
  1650. if c:IsA'BasePart' then
  1651. c.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  1652. end
  1653. end
  1654. end
  1655. end
  1656. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1657. velocity = RootPart.Velocity.y
  1658. sine = sine + change
  1659. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  1660. if RootPart.Velocity.y > 1 and hit == nil then
  1661. Anim = "Jump"
  1662. if attack == false then
  1663. PlayAnimationFromTable({
  1664. CFrame.new(-0, -0, -0, 1, 0, 0, 0, 0.999996185, 0, 0, 0, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1665. CFrame.new(0, 1.49129772, -0.0492396951, 1, 0, 0, 0, 0.766038835, -0.64278394, 0, 0.642785192, 0.766040325) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1666. CFrame.new(1.46843624, 0.180933714, 0.0372858047, 0.951248944, -0.254887462, -0.173648328, 0.258818775, 0.965923786, -1.14036114e-09, 0.16773127, -0.044943653, 0.984805882) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1667. CFrame.new(-1.63477135, 0.28501603, 0.158970028, 0.961526453, 0.242340595, 0.129411325, -0.266435593, 0.93742609, 0.224140555, -0.0669952482, -0.249995694, 0.96592623) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1668. CFrame.new(0.54962939, -1.9957037, 0.00430911779, 0.99257493, -0.0290100258, -0.118124813, 0.0858313814, 0.855161488, 0.511204004, 0.0861857831, -0.517548025, 0.851303339) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1669. CFrame.new(-0.599646151, -1.99157369, -9.50545073e-05, 0.996449828, 0.0841852501, 0.000950440764, -0.0841850936, 0.996192873, 0.0225575492, 0.000952169299, -0.0225575212, 0.99974525) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1670. }, .3, false)
  1671.  
  1672. end
  1673. elseif RootPart.Velocity.y < -1 and hit == nil then
  1674. Anim = "Fall"
  1675. if attack == false then
  1676. PlayAnimationFromTable({
  1677. CFrame.new(-0, -0.0520263538, -0.0354017057, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1678. CFrame.new(0, 1.51533091, -0.10684365, 1, 0, 0, 0, 0.965925872, 0.258819342, 0, -0.258819342, 0.965925872) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1679. CFrame.new(1.67554009, 0.885679007, 0.385592818, 0.374123871, -0.696466088, -0.61234498, 0.914592147, 0.386364758, 0.119345918, 0.153468132, -0.604696095, 0.781530797) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1680. CFrame.new(-1.67474985, 0.999329269, 0.296636045, 0.250219911, 0.753912985, 0.607457995, -0.927206695, 0.367205799, -0.0738086402, -0.278707415, -0.544770718, 0.79091537) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1681. CFrame.new(0.504494727, -1.81757987, -0.0935191363, 0.984807849, -0.0449431092, -0.167730823, 0.059390761, 0.99484998, 0.0821366012, 0.163175508, -0.0908504426, 0.982405365) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1682. CFrame.new(-0.623603821, -1.49203336, -0.421764404, 0.992403865, 0.122534379, 0.0109562073, -0.118891656, 0.978150725, -0.17054674, -0.0316146575, 0.167948633, 0.985288799) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1683. }, .3, false)
  1684. end
  1685. elseif Torsovelocity < 1 and hit ~= nil then
  1686. Anim = "Idle"
  1687. if attack == false then
  1688. change = 1
  1689. for i = 0, .3, 0.1 do
  1690. swait()
  1691. PlayAnimationFromTable({
  1692. CFrame.new(0, 0, -0, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1693. CFrame.new(-6.76443873e-13, 1.49998617, 1.90735227e-06, 1, -4.50968771e-13, 9.09512049e-13, -4.50968771e-13, 1.00000191, 0, 9.09512049e-13, 0, 1.00000191) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1694. CFrame.new(1.48908567, -0.0124374451, 0.0453222468, 0.999818146, 0.00347117707, -0.0187555403, -0.00348036597, 0.999994814, -0.000455890113, 0.0187539104, 0.000521083595, 0.999825656) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1695. CFrame.new(-1.51361406, 0.0255744811, 0.0346868746, 0.998444676, 0.0487802438, -0.0270542186, -0.0487612896, 0.998809218, 0.00137296692, 0.0270890035, -5.16980544e-05, 0.999633908) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1696. CFrame.new(0.558128655, -2.00257516, -0.0328065082, 0.996082902, -0.0884258077, 0.000402636797, 0.0882963017, 0.994850576, 0.049780827, -0.00480247475, -0.04955028, 0.998760939) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1697. CFrame.new(-0.549934328, -1.99739313, 2.08343547e-08, 1.00000024, -1.00578681e-07, 1.377922e-09, -1.04312832e-07, 1.00000393, -5.52222446e-09, 2.46312903e-09, -1.11089804e-08, 1.00000381) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1698. }, .3, false)
  1699. moter.C0 = clerp(moter.C0, CFrame.new(-0.00357525377, -0.669875801, -0.33632654, 0.0129701542, 0.04199332, 0.99903512, 0.668174207, -0.743665218, 0.0225844048, 0.7438941, 0.667235076, -0.0377042405) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1700. end
  1701. end
  1702. elseif Torsovelocity > 2 and hit ~= nil then
  1703. Anim = "Walk"
  1704. if attack == false then
  1705. PlayAnimationFromTable({
  1706. CFrame.new(-0, -0, 0, 1, 0, 0, 0, 0.996187985, 0.0871556774, 0, -0.0871556699, 0.996194661) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1707. CFrame.new(0, 1.49999499, 1.11760201e-08, 1, 0, 0, 0, 0.999998331, -7.45067918e-09, 0, 7.45069251e-09, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1708. CFrame.new(1.51048923, 0.0486144125, 0.213053972, 0.150388524, 0.08681795, 0.984807611, -0.423753828, 0.905649245, -0.015128728, -0.893205106, -0.415041506, 0.172988981) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1709. CFrame.new(-1.46577644, 0.0133882836, 0.266453117, 0.978753924, 0.0149079002, 0.204495385, -0.0694269463, 0.96253264, 0.26212123, -0.192926094, -0.270750105, 0.943119466) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1710. CFrame.new(0.5, -2.00000334, 2.67028881e-005, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024) * CFrame.new(0, 0+ .3 * math.cos((sine) / 2), 0 + 1 * math.cos((sine) / 4)) * CFrame.Angles(math.rad(0 - 50 * math.cos((sine) / 4)), math.rad(0), math.rad(0)),
  1711. CFrame.new(-0.5, -2.00000334, 2.67028881e-005, 1, 0, 0, 0, 1.00000024, 0, 0, 0, 1.00000024) * CFrame.new(0, 0+ .3 * math.cos((sine) / 2), 0 - 1 * math.cos((sine) / 4)) * CFrame.Angles(math.rad(0 + 50 * math.cos((sine) / 4)), math.rad(0), math.rad(0)),
  1712. }, .3, false)
  1713. moter.C0 = clerp(moter.C0, CFrame.new(-0.00357525377, -0.669875801, -0.33632654, 0.0129701542, 0.04199332, 0.99903512, 0.668174207, -0.743665218, 0.0225844048, 0.7438941, 0.667235076, -0.0377042405) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1714. end
  1715. end
  1716. if #Effects > 0 then
  1717. for e = 1, #Effects do
  1718. if Effects[e] ~= nil then
  1719. local Thing = Effects[e]
  1720. if Thing ~= nil then
  1721. Part = Thing[1]
  1722. Mode = Thing[2]
  1723. Delay = Thing[3]
  1724. IncX = Thing[4]
  1725. IncY = Thing[5]
  1726. IncZ = Thing[6]
  1727. if Thing[2] == "Shoot" then
  1728. Look = Thing[1]
  1729. hit, pos = rayCast(Thing[4], Look, 5, Character)
  1730. mag = (Thing[4] - pos).magnitude
  1731. Thing[9].CFrame = CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(-1.57, 0, 0)
  1732. Thing[4] = Thing[4] + (Look * 5)
  1733. Thing[3] = Thing[3] - 1
  1734. if hit ~= nil then
  1735. print(hit.Parent)
  1736. Thing[3] = 0
  1737. --Damagefunc(hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, .2, 2, math.random(1, 5), nil, nil, true, "Movement", .02, 500)
  1738. --MagniDamage(Thing[9], 5, Thing[5], Thing[6], Thing[7], "Normal", RootPart, .2, 2, math.random(1, 5), nil, nil, true, "Movement", .02, 500)
  1739. end
  1740. if Thing[3] <= 0 then
  1741. if hit == nil then
  1742. Effects.Sphere.Create(BrickColor.new("Crimson"), Thing[9].CFrame, 1, 1, 1, 2, 2, 2, .1)
  1743. CFuncs.Sound.Create("285370517", Thing[9], 1, 1)
  1744. else
  1745. Effects.Wave.Create(BrickColor.new("Crimson"), Thing[9].CFrame * CFrame.fromEulerAnglesXYZ(3.2, 0, 0), .2, .2, .2, .6, .8, .6, .1)
  1746. CFuncs.Sound.Create("285370517", Thing[9], .6, 1)
  1747. CFuncs.Sound.Create("285370545", Thing[9], 1, 1)
  1748. end
  1749. for i = 1, math.random(2, 4) do
  1750. Effects.Break.Create(BrickColor.new("Crimson"), Thing[9].CFrame, math.random(20, 40) / 100, math.random(100, 600) / 100, math.random(20, 40) / 100)
  1751. end
  1752. Thing[9].Transparency = 1
  1753. game:GetService("Debris"):AddItem(Thing[9], 1)
  1754. table.remove(Effects, e)
  1755. end
  1756. end
  1757. if Thing[2] ~= "Shoot" then
  1758. if Thing[1].Transparency <= 1 then
  1759. if Thing[2] == "Block1" then
  1760. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1761. Mesh = Thing[7]
  1762. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1763. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1764. elseif Thing[2] == "Block2" then
  1765. Thing[1].CFrame = Thing[1].CFrame
  1766. Mesh = Thing[7]
  1767. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1768. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1769. elseif Thing[2] == "Block3" then
  1770. Thing[1].CFrame = Thing[8].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1771. Mesh = Thing[7]
  1772. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1773. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1774. elseif Thing[2] == "Block4" then
  1775. Thing[1].CFrame = Thing[8].CFrame * CFrame.new(0, -Thing[7].Scale.Y, 0) * CFrame.fromEulerAnglesXYZ(3.14, 0, 0)
  1776. Mesh = Thing[7]
  1777. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1778. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1779. elseif Thing[2] == "Block2Fire" then
  1780. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1781. Mesh = Thing[7]
  1782. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1783. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1784. if Thing[1].Transparency >= .3 then
  1785. Thing[1].BrickColor = BrickColor.new("Bright red")
  1786. else
  1787. Thing[1].BrickColor = BrickColor.new("Bright yellow")
  1788. end
  1789. elseif Thing[2] == "Ice" then
  1790. if Thing[6] <= Thing[5] then
  1791. Thing[6] = Thing[6] + .3
  1792. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 1, 0)
  1793. else
  1794. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1795. end
  1796. elseif Thing[2] == "Shatter" then
  1797. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1798. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  1799. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  1800. Thing[6] = Thing[6] + Thing[5]
  1801. elseif Thing[2] == "Fire" then
  1802. Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  1803. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1804. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1805. elseif Thing[2] == "Cylinder" then
  1806. Mesh = Thing[7]
  1807. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1808. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1809. elseif Thing[2] == "Cylinder2" then
  1810. Mesh = Thing[7]
  1811. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1812. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, Thing[8], 0)
  1813. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1814. elseif Thing[2] == "Blood" then
  1815. Mesh = Thing[7]
  1816. Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, .5, 0)
  1817. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1818. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1819. elseif Thing[2] == "Elec" then
  1820. Mesh = Thing[7]
  1821. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  1822. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1823. elseif Thing[2] == "Disappear" then
  1824. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1825. end
  1826. else
  1827. Part.Parent = nil
  1828. table.remove(Effects, e)
  1829. end
  1830. end
  1831. end
  1832. end
  1833. end
  1834. end
  1835. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement