Advertisement
Orangeplayer1431

Untitled

Feb 19th, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.64 KB | None | 0 0
  1. --//====================================================\\--
  2. --|| CREATED BY SHACKLUSTER
  3. --\\====================================================//--
  4.  
  5.  
  6.  
  7. wait(0.2)
  8.  
  9.  
  10.  
  11. Player = game:GetService("Players").LocalPlayer
  12. PlayerGui = Player.PlayerGui
  13. Cam = workspace.CurrentCamera
  14. Backpack = Player.Backpack
  15. Character = Player.Character
  16. Humanoid = Character.Humanoid
  17. Mouse = Player:GetMouse()
  18. RootPart = Character["HumanoidRootPart"]
  19. Torso = Character["Torso"]
  20. Head = Character["Head"]
  21. RightArm = Character["Right Arm"]
  22. LeftArm = Character["Left Arm"]
  23. RightLeg = Character["Right Leg"]
  24. LeftLeg = Character["Left Leg"]
  25. RootJoint = RootPart["RootJoint"]
  26. Neck = Torso["Neck"]
  27. RightShoulder = Torso["Right Shoulder"]
  28. LeftShoulder = Torso["Left Shoulder"]
  29. RightHip = Torso["Right Hip"]
  30. LeftHip = Torso["Left Hip"]
  31. local sick = Instance.new("Sound",Character)
  32. sick.SoundId = "rbxassetid://1051295985"
  33. sick.Looped = true
  34. sick.Pitch = 1
  35. sick.Volume = 2
  36. sick:Play()
  37. script.Parent = PlayerGui
  38. script.Name = "Octo - Rebound Form"
  39.  
  40. IT = Instance.new
  41. CF = CFrame.new
  42. VT = Vector3.new
  43. RAD = math.rad
  44. C3 = Color3.new
  45. UD2 = UDim2.new
  46. BRICKC = BrickColor.new
  47. ANGLES = CFrame.Angles
  48. EULER = CFrame.fromEulerAnglesXYZ
  49. COS = math.cos
  50. ACOS = math.acos
  51. SIN = math.sin
  52. ASIN = math.asin
  53. ABS = math.abs
  54. MRANDOM = math.random
  55. FLOOR = math.floor
  56.  
  57. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  58. local NEWMESH = IT(MESH)
  59. if MESH == "SpecialMesh" then
  60. NEWMESH.MeshType = MESHTYPE
  61. if MESHID ~= "nil" and MESHID ~= "" then
  62. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  63. end
  64. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  65. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  66. end
  67. end
  68. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  69. NEWMESH.Scale = SCALE
  70. NEWMESH.Parent = PARENT
  71. return NEWMESH
  72. end
  73.  
  74. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
  75. local NEWPART = IT("Part")
  76. NEWPART.formFactor = FORMFACTOR
  77. NEWPART.Reflectance = REFLECTANCE
  78. NEWPART.Transparency = TRANSPARENCY
  79. NEWPART.CanCollide = false
  80. NEWPART.Locked = true
  81. NEWPART.Anchored = true
  82. if ANCHOR == false then
  83. NEWPART.Anchored = false
  84. end
  85. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  86. NEWPART.Name = NAME
  87. NEWPART.Size = SIZE
  88. NEWPART.Position = Torso.Position
  89. NEWPART.Material = MATERIAL
  90. NEWPART:BreakJoints()
  91. NEWPART.Parent = PARENT
  92. return NEWPART
  93. end
  94.  
  95. --//=================================\\
  96. --|| CUSTOMIZATION
  97. --\\=================================//
  98.  
  99. Player_Size = 1 --Size of the player.
  100. Animation_Speed = 3
  101. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  102.  
  103. local Speed = 16
  104. local Effects2 = {}
  105.  
  106. --//=================================\\
  107. --|| END OF CUSTOMIZATION
  108. --\\=================================//
  109.  
  110. local function weldBetween(a, b)
  111. local weldd = Instance.new("ManualWeld")
  112. weldd.Part0 = a
  113. weldd.Part1 = b
  114. weldd.C0 = CFrame.new()
  115. weldd.C1 = b.CFrame:inverse() * a.CFrame
  116. weldd.Parent = a
  117. return weldd
  118. end
  119.  
  120. function createaccessory(attachmentpart,mesh,texture,scale,offset,color)
  121. local acs = Instance.new("Part")
  122. acs.CanCollide = false
  123. acs.Anchored = false
  124. acs.Size = Vector3.new(0,0,0)
  125. acs.CFrame = attachmentpart.CFrame
  126. acs.Parent = Character
  127. acs.BrickColor = color
  128. local meshs = Instance.new("SpecialMesh")
  129. meshs.MeshId = mesh
  130. meshs.TextureId = texture
  131. meshs.Parent = acs
  132. meshs.Scale = scale
  133. meshs.Offset = offset
  134. weldBetween(attachmentpart,acs)
  135. end
  136.  
  137. function createbodypart(TYPE,COLOR,PART,OFFSET,SIZE)
  138. if TYPE == "Gem" then
  139. local acs = CreatePart(3, Character, "Neon", 0, 0, COLOR, "Part", VT(0,0,0))
  140. acs.Anchored = false
  141. acs.CanCollide = false
  142. acs.CFrame = PART.CFrame
  143. local acs2 = CreateMesh("SpecialMesh", acs, "FileMesh", "9756362", "", SIZE, OFFSET)
  144. weldBetween(PART,acs)
  145. elseif TYPE == "Skull" then
  146. local acs = CreatePart(3, Character, "Neon", 0, 0, COLOR, "Part", VT(0,0,0))
  147. acs.Anchored = false
  148. acs.CanCollide = false
  149. acs.CFrame = PART.CFrame
  150. local acs2 = CreateMesh("SpecialMesh", acs, "FileMesh", "4770583", "", SIZE, OFFSET)
  151. weldBetween(PART,acs)
  152. elseif TYPE == "Eye" then
  153. local acs = CreatePart(3, Character, "Neon", 0, 0, COLOR, "Part", VT(0,0,0))
  154. acs.Anchored = false
  155. acs.CanCollide = false
  156. acs.CFrame = PART.CFrame
  157. local acs2 = CreateMesh("SpecialMesh", acs, "Sphere", "", "", SIZE, OFFSET)
  158. weldBetween(PART,acs)
  159. end
  160. end
  161.  
  162. --//=================================\\
  163. --|| USEFUL VALUES
  164. --\\=================================//
  165.  
  166. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  167. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  168. local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  169. local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  170. local CHANGEDEFENSE = 0
  171. local CHANGEDAMAGE = 0
  172. local CHANGEMOVEMENT = 0
  173. local ANIM = "Idle"
  174. local ATTACK = false
  175. local EQUIPPED = false
  176. local HOLD = false
  177. local COMBO = 1
  178. local Rooted = false
  179. local SINE = 0
  180. local KEYHOLD = false
  181. local CHANGE = 2 / Animation_Speed
  182. local WALKINGANIM = false
  183. local WALK = 0
  184. local VALUE1 = false
  185. local VALUE2 = false
  186. local ROBLOXIDLEANIMATION = IT("Animation")
  187. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  188. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  189. --ROBLOXIDLEANIMATION.Parent = Humanoid
  190. local WEAPONGUI = IT("ScreenGui", PlayerGui)
  191. WEAPONGUI.Name = "Weapon GUI"
  192. local Weapon = IT("Model")
  193. Weapon.Name = "Adds"
  194. local Effects = IT("Folder", Weapon)
  195. Effects.Name = "Effects"
  196. local ANIMATOR = Humanoid.Animator
  197. local ANIMATE = Character.Animate
  198. local HITPLAYERSOUNDS = {--[["199149137", "199149186", "199149221", "199149235", "199149269", "199149297"--]]"263032172", "263032182", "263032200", "263032221", "263032252", "263033191"}
  199. local HITARMORSOUNDS = {"199149321", "199149338", "199149367", "199149409", "199149452"}
  200. local HITWEAPONSOUNDS = {"199148971", "199149025", "199149072", "199149109", "199149119"}
  201. local HITBLOCKSOUNDS = {"199148933", "199148947"}
  202. local UNANCHOR = true
  203.  
  204. local SKILLTEXTCOLOR = BRICKC"Really blue".Color
  205.  
  206. --//=================================\\
  207. --\\=================================//
  208.  
  209.  
  210. --//=================================\\
  211. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  212. --\\=================================//
  213.  
  214. ArtificialHB = Instance.new("BindableEvent", script)
  215. ArtificialHB.Name = "ArtificialHB"
  216.  
  217. script:WaitForChild("ArtificialHB")
  218.  
  219. frame = Frame_Speed
  220. tf = 0
  221. allowframeloss = false
  222. tossremainder = false
  223. lastframe = tick()
  224. script.ArtificialHB:Fire()
  225.  
  226. game:GetService("RunService").Heartbeat:connect(function(s, p)
  227. tf = tf + s
  228. if tf >= frame then
  229. if allowframeloss then
  230. script.ArtificialHB:Fire()
  231. lastframe = tick()
  232. else
  233. for i = 1, math.floor(tf / frame) do
  234. script.ArtificialHB:Fire()
  235. end
  236. lastframe = tick()
  237. end
  238. if tossremainder then
  239. tf = 0
  240. else
  241. tf = tf - frame * math.floor(tf / frame)
  242. end
  243. end
  244. end)
  245.  
  246. --//=================================\\
  247. --\\=================================//
  248.  
  249.  
  250.  
  251.  
  252.  
  253. --//=================================\\
  254. --|| SOME FUNCTIONS
  255. --\\=================================//
  256.  
  257. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  258. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  259. end
  260.  
  261. function PositiveAngle(NUMBER)
  262. if NUMBER >= 0 then
  263. NUMBER = 0
  264. end
  265. return NUMBER
  266. end
  267.  
  268. function NegativeAngle(NUMBER)
  269. if NUMBER <= 0 then
  270. NUMBER = 0
  271. end
  272. return NUMBER
  273. end
  274.  
  275. function Swait(NUMBER)
  276. if NUMBER == 0 or NUMBER == nil then
  277. ArtificialHB.Event:wait()
  278. else
  279. for i = 1, NUMBER do
  280. ArtificialHB.Event:wait()
  281. end
  282. end
  283. end
  284.  
  285. function QuaternionFromCFrame(cf)
  286. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  287. local trace = m00 + m11 + m22
  288. if trace > 0 then
  289. local s = math.sqrt(1 + trace)
  290. local recip = 0.5 / s
  291. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  292. else
  293. local i = 0
  294. if m11 > m00 then
  295. i = 1
  296. end
  297. if m22 > (i == 0 and m00 or m11) then
  298. i = 2
  299. end
  300. if i == 0 then
  301. local s = math.sqrt(m00 - m11 - m22 + 1)
  302. local recip = 0.5 / s
  303. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  304. elseif i == 1 then
  305. local s = math.sqrt(m11 - m22 - m00 + 1)
  306. local recip = 0.5 / s
  307. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  308. elseif i == 2 then
  309. local s = math.sqrt(m22 - m00 - m11 + 1)
  310. local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  311. end
  312. end
  313. end
  314.  
  315. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  316. local xs, ys, zs = x + x, y + y, z + z
  317. local wx, wy, wz = w * xs, w * ys, w * zs
  318. local xx = x * xs
  319. local xy = x * ys
  320. local xz = x * zs
  321. local yy = y * ys
  322. local yz = y * zs
  323. local zz = z * zs
  324. return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy))
  325. end
  326.  
  327. function QuaternionSlerp(a, b, t)
  328. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  329. local startInterp, finishInterp;
  330. if cosTheta >= 0.0001 then
  331. if (1 - cosTheta) > 0.0001 then
  332. local theta = ACOS(cosTheta)
  333. local invSinTheta = 1 / SIN(theta)
  334. startInterp = SIN((1 - t) * theta) * invSinTheta
  335. finishInterp = SIN(t * theta) * invSinTheta
  336. else
  337. startInterp = 1 - t
  338. finishInterp = t
  339. end
  340. else
  341. if (1 + cosTheta) > 0.0001 then
  342. local theta = ACOS(-cosTheta)
  343. local invSinTheta = 1 / SIN(theta)
  344. startInterp = SIN((t - 1) * theta) * invSinTheta
  345. finishInterp = SIN(t * theta) * invSinTheta
  346. else
  347. startInterp = t - 1
  348. finishInterp = t
  349. end
  350. end
  351. return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp
  352. end
  353.  
  354. function Clerp(a, b, t)
  355. local qa = {QuaternionFromCFrame(a)}
  356. local qb = {QuaternionFromCFrame(b)}
  357. local ax, ay, az = a.x, a.y, a.z
  358. local bx, by, bz = b.x, b.y, b.z
  359. local _t = 1 - t
  360. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  361. end
  362.  
  363. function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
  364. local frame = IT("Frame")
  365. frame.BackgroundTransparency = TRANSPARENCY
  366. frame.BorderSizePixel = BORDERSIZEPIXEL
  367. frame.Position = POSITION
  368. frame.Size = SIZE
  369. frame.BackgroundColor3 = COLOR
  370. frame.BorderColor3 = BORDERCOLOR
  371. frame.Name = NAME
  372. frame.Parent = PARENT
  373. return frame
  374. end
  375.  
  376. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  377. local label = IT("TextLabel")
  378. label.BackgroundTransparency = 1
  379. label.Size = UD2(1, 0, 1, 0)
  380. label.Position = UD2(0, 0, 0, 0)
  381. label.TextColor3 = TEXTCOLOR
  382. label.TextStrokeTransparency = STROKETRANSPARENCY
  383. label.TextTransparency = TRANSPARENCY
  384. label.FontSize = TEXTFONTSIZE
  385. label.Font = TEXTFONT
  386. label.BorderSizePixel = BORDERSIZEPIXEL
  387. label.TextScaled = false
  388. label.Text = TEXT
  389. label.Name = NAME
  390. label.Parent = PARENT
  391. return label
  392. end
  393.  
  394. function NoOutlines(PART)
  395. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  396. end
  397.  
  398.  
  399. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  400. local NEWWELD = IT(TYPE)
  401. NEWWELD.Part0 = PART0
  402. NEWWELD.Part1 = PART1
  403. NEWWELD.C0 = C0
  404. NEWWELD.C1 = C1
  405. NEWWELD.Parent = PARENT
  406. return NEWWELD
  407. end
  408.  
  409. local sound = IT("Sound",nil)
  410.  
  411. function CreateSound(ID, PARENT, VOLUME, PITCH)
  412. local NEWSOUND = nil
  413. coroutine.resume(coroutine.create(function()
  414. NEWSOUND = sound:Clone()
  415. NEWSOUND.Parent = PARENT
  416. NEWSOUND.Volume = VOLUME
  417. NEWSOUND.Pitch = PITCH
  418. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  419. Swait()
  420. NEWSOUND:play()
  421. game:GetService("Debris"):AddItem(NEWSOUND, 10)
  422. end))
  423. return NEWSOUND
  424. end
  425.  
  426. function CFrameFromTopBack(at, top, back)
  427. local right = top:Cross(back)
  428. return CF(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
  429. end
  430.  
  431. function CreateWave(SIZE,WAIT,CFRAME,DOESROT,ROT,COLOR,GROW)
  432. local wave = CreatePart(3, Effects, "Neon", 0, 0.5, BRICKC(COLOR), "Effect", VT(0,0,0))
  433. local mesh = IT("SpecialMesh",wave)
  434. mesh.MeshType = "FileMesh"
  435. mesh.MeshId = "http://www.roblox.com/asset/?id=20329976"
  436. mesh.Scale = SIZE
  437. mesh.Offset = VT(0,0,-SIZE.X/8)
  438. wave.CFrame = CFRAME
  439. coroutine.resume(coroutine.create(function(PART)
  440. for i = 1, WAIT do
  441. Swait()
  442. mesh.Scale = mesh.Scale + GROW
  443. mesh.Offset = VT(0,0,-(mesh.Scale.X/8))
  444. if DOESROT == true then
  445. wave.CFrame = wave.CFrame * CFrame.fromEulerAnglesXYZ(0,ROT,0)
  446. end
  447. wave.Transparency = wave.Transparency + (0.5/WAIT)
  448. if wave.Transparency > 0.99 then
  449. wave:remove()
  450. end
  451. end
  452. end))
  453. end
  454.  
  455. function CreateRing(SIZE,DOESROT,ROT,WAIT,CFRAME,COLOR,GROW)
  456. local wave = CreatePart(3, Effects, "Neon", 0, 0.5, BRICKC(COLOR), "Effect", VT(0,0,0))
  457. local mesh = IT("SpecialMesh",wave)
  458. mesh.MeshType = "FileMesh"
  459. mesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  460. mesh.Scale = SIZE
  461. mesh.Offset = VT(0,0,0)
  462. wave.CFrame = CFRAME
  463. coroutine.resume(coroutine.create(function(PART)
  464. for i = 1, WAIT do
  465. Swait()
  466. mesh.Scale = mesh.Scale + GROW
  467. if DOESROT == true then
  468. wave.CFrame = wave.CFrame * CFrame.fromEulerAnglesXYZ(0,ROT,0)
  469. end
  470. wave.Transparency = wave.Transparency + (0.5/WAIT)
  471. if wave.Transparency > 0.99 then
  472. wave:remove()
  473. end
  474. end
  475. end))
  476. end
  477.  
  478. function MagicSphere(SIZE,WAIT,CFRAME,COLOR,GROW)
  479. local wave = CreatePart(3, Effects, "Neon", 0, 0, BRICKC(COLOR), "Effect", VT(1,1,1), true)
  480. local mesh = IT("SpecialMesh",wave)
  481. mesh.MeshType = "Sphere"
  482. mesh.Scale = SIZE
  483. mesh.Offset = VT(0,0,0)
  484. wave.CFrame = CFRAME
  485. coroutine.resume(coroutine.create(function(PART)
  486. for i = 1, WAIT do
  487. Swait()
  488. mesh.Scale = mesh.Scale + GROW
  489. wave.Transparency = wave.Transparency + (1/WAIT)
  490. if wave.Transparency > 0.99 then
  491. wave:remove()
  492. end
  493. end
  494. end))
  495. end
  496.  
  497. function MagicBlock(SIZE,WAIT,CFRAME,COLOR,GROW)
  498. local wave = CreatePart(3, Effects, "Neon", 0, 0, BRICKC(COLOR), "Effect", VT(SIZE,SIZE,SIZE), true)
  499. local mesh = IT("BlockMesh",wave)
  500. wave.CFrame = CFRAME * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360)))
  501. coroutine.resume(coroutine.create(function(PART)
  502. for i = 1, WAIT do
  503. Swait()
  504. mesh.Scale = mesh.Scale + GROW
  505. wave.CFrame = CFRAME * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360)))
  506. wave.Transparency = wave.Transparency + (1/WAIT)
  507. if wave.Transparency > 0.99 then
  508. wave:remove()
  509. end
  510. end
  511. end))
  512. end
  513.  
  514. function MakeForm(PART,TYPE)
  515. if TYPE == "Cyl" then
  516. local MSH = IT("CylinderMesh",PART)
  517. elseif TYPE == "Ball" then
  518. local MSH = IT("SpecialMesh",PART)
  519. MSH.MeshType = "Sphere"
  520. elseif TYPE == "Wedge" then
  521. local MSH = IT("SpecialMesh",PART)
  522. MSH.MeshType = "Wedge"
  523. elseif TYPE == "Gem" then
  524. CreateMesh("SpecialMesh", PART, "FileMesh", "9756362", "", PART.Size, VT(0,0,0))
  525. end
  526. end
  527.  
  528. function CheckTableForString(Table, String)
  529. for i, v in pairs(Table) do
  530. if string.find(string.lower(String), string.lower(v)) then
  531. return true
  532. end
  533. end
  534. return false
  535. end
  536.  
  537. function CheckIntangible(Hit)
  538. local ProjectileNames = {"Water", "Arrow", "Projectile", "Effect", "Rail", "Lightning", "Bullet"}
  539. if Hit and Hit.Parent then
  540. if ((not Hit.CanCollide or CheckTableForString(ProjectileNames, Hit.Name)) and not Hit.Parent:FindFirstChild("Humanoid")) then
  541. return true
  542. end
  543. end
  544. return false
  545. end
  546.  
  547. Debris = game:GetService("Debris")
  548.  
  549. function CreateDebreeRing(FLOOR,POSITION,SIZE,BLOCKSIZE,SWAIT)
  550. if FLOOR ~= nil then
  551. coroutine.resume(coroutine.create(function()
  552. local PART = CreatePart(3, Effects, "Neon", 0, 1, "Pearl", "DebreeCenter", VT(0,0,0))
  553. PART.CFrame = CF(POSITION)
  554. for i = 1, 45 do
  555. local RingPiece = CreatePart(3, Effects, "Neon", 0, 0, "Pearl", "DebreePart", BLOCKSIZE)
  556. RingPiece.Material = FLOOR.Material
  557. RingPiece.Color = FLOOR.Color
  558. RingPiece.CFrame = PART.CFrame * ANGLES(RAD(0), RAD(i*8), RAD(0)) * CF(SIZE*4, 0, 0) * ANGLES(RAD(MRANDOM(-360,360)),RAD(MRANDOM(-360,360)),RAD(MRANDOM(-360,360)))
  559. Debris:AddItem(RingPiece,SWAIT/100)
  560. end
  561. PART:remove()
  562. end))
  563. end
  564. end
  565.  
  566. function CreatePentagram(size,doesrotate,rotatedirection,waitt,cframe,offset)
  567. local sinkhole = IT("Part",Effects)
  568. sinkhole.Size = VT(size,0,size)
  569. sinkhole.CFrame = cframe * CF(0,offset,0)
  570. sinkhole.Material = "Neon"
  571. sinkhole.Color = C3(255/255,0,0)
  572. sinkhole.Anchored = true
  573. sinkhole.CanCollide = false
  574. sinkhole.Transparency = 1
  575. local decal = IT("Decal",sinkhole)
  576. decal.Face = "Top"
  577. decal.Texture = "http://www.roblox.com/asset/?id=818983932"
  578. coroutine.resume(coroutine.create(function(PART)
  579. for i = 1, waitt do
  580. Swait()
  581. if doesrotate == true then
  582. sinkhole.CFrame = sinkhole.CFrame * CFrame.fromEulerAnglesXYZ(0, rotatedirection, 0)
  583. end
  584. if i > waitt-11 then
  585. decal.Transparency = decal.Transparency + 0.1
  586. end
  587. end
  588. sinkhole:remove()
  589. end))
  590. return sinkhole
  591. end
  592.  
  593. function CastZapRay(StartPos, Vec, Length, Ignore, DelayIfHit)
  594. local Direction = CFrame.new(StartPos, Vec).lookVector
  595. local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
  596. local RayHit, RayPos, RayNormal = game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(StartPos, Direction * Length), Ignore)
  597. if RayHit and CheckIntangible(RayHit) then
  598. if DelayIfHit then
  599. wait()
  600. end
  601. RayHit, RayPos, RayNormal = CastZapRay((RayPos + (Vec * 0.01)), Vec, (Length - ((StartPos - RayPos).magnitude)), Ignore, DelayIfHit)
  602. end
  603. return RayHit, RayPos, RayNormal
  604. end
  605.  
  606. function turnto(position)
  607. RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0)
  608. end
  609.  
  610. --//=================================\\
  611. --|| WEAPON CREATION
  612. --\\=================================//
  613.  
  614. function CreateNeonCircle(ATTACHPART,POSITION,SIZE,DOESSPIN,COLOR,MATERIAL,THICKNESS,WIDTH)
  615. local PART = CreatePart(3, Weapon, MATERIAL, 0, 1, COLOR, "CirclePart", VT(0,0,0),false)
  616. for i = 1, 45 do
  617. local RingPiece = CreatePart(3, Weapon, MATERIAL, 0, 0, COLOR, "CirclePart", VT(THICKNESS,WIDTH,SIZE*0.65),false)
  618. local RingWeld = CreateWeldOrSnapOrMotor("Weld", RingPiece, PART, RingPiece, CF(0, 0, 0) * ANGLES(RAD(0), RAD(i*8), RAD(0)), CF(0, 0, 0) * CF(SIZE*4, 0, 0))
  619. end
  620. local PartWeld = CreateWeldOrSnapOrMotor("Weld", ATTACHPART, PART, ATTACHPART, POSITION * ANGLES(RAD(0), RAD(0), RAD(0)),CF(0, 0, 0))
  621. coroutine.resume(coroutine.create(function()
  622. --[[if DOESSPIN == true then
  623. while true do
  624. wait()
  625. PartWeld.C0 = Clerp(PartWeld.C0, POSITION * ANGLES(RAD(0), RAD(SINE*2), RAD(0)), 1)
  626. end
  627. end]]--
  628. end))
  629. end
  630.  
  631. local naeeym2 = Instance.new("BillboardGui",Character)
  632. naeeym2.AlwaysOnTop = true
  633. naeeym2.Size = UDim2.new(5,35,2,35)
  634. naeeym2.StudsOffset = Vector3.new(0,3,0)
  635. naeeym2.Adornee = Character.Head
  636. naeeym2.Name = "Name"
  637. local tecks2 = Instance.new("TextLabel",naeeym2)
  638. tecks2.BackgroundTransparency = 1
  639. tecks2.TextScaled = true
  640. tecks2.BorderSizePixel = 0
  641. tecks2.Text = "Octo - Rebound Form"
  642. tecks2.Font = "Antique"
  643. tecks2.TextSize = 30
  644. tecks2.TextStrokeTransparency = 0.9
  645. tecks2.TextColor3 = Color3.new(125,0,0)
  646. tecks2.TextStrokeColor3 = Color3.new(255/255,0,0)
  647. tecks2.Size = UDim2.new(1,0,0.5,0)
  648. tecks2.Parent = naeeym2
  649.  
  650. Humanoid.DisplayDistanceType = "None"
  651. Humanoid.Name = "Sin"
  652.  
  653. local Shield = IT("Part",Weapon)
  654. Shield.Name = "Barrier"
  655. Shield.Shape = "Ball"
  656. Shield.Material = "Neon"
  657. Shield.Color = C3(125,0,0)
  658. Shield.Transparency = 0.8
  659. Shield.Size = VT(0.5,0.5,0.5)
  660. local mesh = IT("SpecialMesh",Shield)
  661. mesh.MeshType = "Sphere"
  662. mesh.Scale = VT(13,13,13)
  663. Shield.CFrame = RootPart.CFrame
  664. weldBetween(RootPart,Shield)
  665.  
  666. local COLOR = "Really blue"
  667. local COLOR2 = "Crimson"
  668.  
  669. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35*Player_Size,0.35*Player_Size,0.35*Player_Size),false)
  670. local mesh = Instance.new("SpecialMesh",gear)
  671. mesh.MeshType = "FileMesh"
  672. mesh.MeshId = "rbxassetid://156292343"
  673. mesh.Scale = VT(10,10,10)
  674. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0 * Player_Size, 0 * Player_Size, 4 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  675. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35*Player_Size,0.35*Player_Size,0.35*Player_Size),false)
  676. local mesh = Instance.new("SpecialMesh",gear)
  677. mesh.MeshType = "FileMesh"
  678. mesh.MeshId = "rbxassetid://156292343"
  679. mesh.Scale = VT(7,7,7)
  680. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0 * Player_Size, 0 * Player_Size, 6 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  681. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35*Player_Size,0.35*Player_Size,0.35*Player_Size),false)
  682. local mesh = Instance.new("SpecialMesh",gear)
  683. mesh.MeshType = "FileMesh"
  684. mesh.MeshId = "rbxassetid://156292343"
  685. mesh.Scale = VT(5,5,5)
  686. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0 * Player_Size, 0 * Player_Size, 8 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  687. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, "Really red", "Handle", VT(1*Player_Size,6*Player_Size,1*Player_Size),false)
  688. local mesh = Instance.new("SpecialMesh",BottomPart)
  689. mesh.MeshType = "Sphere"
  690. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(0 * Player_Size, 8 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  691.  
  692. --CreateNeonCircle(RootPart,CF(0,2,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.7,false,COLOR,"Neon",0.2,0.2)
  693. --CreateNeonCircle(RootPart,CF(0,1.5,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.8,false,COLOR,"Neon",0.2,0.2)
  694. --CreateNeonCircle(RootPart,CF(0,1,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.85,false,COLOR,"Neon",0.2,0.2)
  695. CreateNeonCircle(Head,CF(0,-0.55,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.07,false,COLOR,"Neon",0.05,0.05)
  696. CreateNeonCircle(RootPart,CF(0,4.4,0)*ANGLES(RAD(0),RAD(0),RAD(0)),1,true,COLOR,"Neon",0,0)
  697. CreateNeonCircle(RootPart,CF(0,3.7,0)*ANGLES(RAD(0),RAD(0),RAD(0)),1,true,COLOR,"Neon",0,0)
  698.  
  699. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35,0.35,0.35),false)
  700. local mesh = Instance.new("SpecialMesh",gear)
  701. mesh.MeshType = "FileMesh"
  702. mesh.MeshId = "rbxassetid://156292343"
  703. mesh.Scale = VT(10,10,10)
  704. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0, 0, -3.3) * ANGLES(RAD(0), RAD(70), RAD(0)), CF(0, 0, 0))
  705. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35,0.35,0.35),false)
  706. local mesh = Instance.new("SpecialMesh",gear)
  707. mesh.MeshType = "FileMesh"
  708. mesh.MeshId = "rbxassetid://156292343"
  709. mesh.Scale = VT(7,7,7)
  710. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0, 0, -4.3) * ANGLES(RAD(0), RAD(70), RAD(0)), CF(0, 0, 0))
  711.  
  712. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35,0.35,0.35),false)
  713. local mesh = Instance.new("SpecialMesh",gear)
  714. mesh.MeshType = "FileMesh"
  715. mesh.MeshId = "rbxassetid://156292343"
  716. mesh.Scale = VT(10,10,10)
  717. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0, 0, -3.3) * ANGLES(RAD(0), RAD(-70), RAD(0)), CF(0, 0, 0))
  718. local gear = CreatePart(3, Weapon, "Neon", 0, 0, "Crimson", "Gear", VT(0.35,0.35,0.35),false)
  719. local mesh = Instance.new("SpecialMesh",gear)
  720. mesh.MeshType = "FileMesh"
  721. mesh.MeshId = "rbxassetid://156292343"
  722. mesh.Scale = VT(7,7,7)
  723. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, gear, RootPart, CF(0, 0, -4.3) * ANGLES(RAD(0), RAD(-70), RAD(0)), CF(0, 0, 0))
  724.  
  725. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, COLOR2, "Handle", VT(1*Player_Size,4*Player_Size,1*Player_Size),false)
  726. MakeForm(BottomPart,"Cyl")
  727. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(0 * Player_Size, 6 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  728.  
  729. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, COLOR2, "Handle", VT(3,3,3),false)
  730. local mesh = Instance.new("SpecialMesh",BottomPart)
  731. mesh.MeshType = "Sphere"
  732. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(-5,0,-1.9) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  733. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, COLOR2, "Handle", VT(3,3,3),false)
  734. local mesh = Instance.new("SpecialMesh",BottomPart)
  735. mesh.MeshType = "Sphere"
  736. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(5,0,-1.9) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  737. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, COLOR2, "Handle", VT(4*Player_Size,2*Player_Size,4*Player_Size),false)
  738. local mesh = Instance.new("SpecialMesh",BottomPart)
  739. mesh.MeshType = "Sphere"
  740. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(0 * Player_Size, 4 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  741. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, COLOR2, "Handle", VT(2*Player_Size,4*Player_Size,2*Player_Size),false)
  742. local mesh = Instance.new("SpecialMesh",BottomPart)
  743. mesh.MeshType = "Sphere"
  744. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(0 * Player_Size, 8 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  745. local BottomPart = CreatePart(3, Weapon, "Neon", 0, 0, COLOR2, "Handle", VT(1*Player_Size,4*Player_Size,1*Player_Size),false)
  746. MakeForm(BottomPart,"Cyl")
  747. local weld = CreateWeldOrSnapOrMotor("Weld", RootPart, BottomPart, RootPart, CF(0 * Player_Size, 6 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  748.  
  749. function MakeHand()
  750. local Part1 = nil
  751. local HandWeld = nil
  752. local HAND = Weapon
  753. Part1 = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "HandPart", VT(2,2,2),false)
  754. MakeForm(Part1,"Ball")
  755. HandWeld = CreateWeldOrSnapOrMotor("Weld", RootPart, Part1, RootPart, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  756. CreateNeonCircle(Part1,CF(0,1,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.8,false,COLOR,"Neon",0.1,0.1)
  757. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "HandPart", VT(2.01,0.05,2.01),false)
  758. MakeForm(Part,"Cyl")
  759. CreateWeldOrSnapOrMotor("Weld", Part1, Part, Part1, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  760. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "HandPart", VT(2.01,0.05,2.01),false)
  761. MakeForm(Part,"Cyl")
  762. CreateWeldOrSnapOrMotor("Weld", Part1, Part, Part1, CF(0,0,0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  763. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "HandPart", VT(2.01,0.05,2.01),false)
  764. MakeForm(Part,"Cyl")
  765. CreateWeldOrSnapOrMotor("Weld", Part1, Part, Part1, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(90)), CF(0, 0, 0))
  766. --CreateNeonCircle(Part1,CF(0,0,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.35,false,COLOR2,"Neon",0.7,0.1)
  767. CreateNeonCircle(Part1,CF(0,0,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.4,false,COLOR2,"Neon",0.7,0.1)
  768. CreateNeonCircle(Part1,CF(0,0,0)*ANGLES(RAD(90),RAD(0),RAD(0)),0.43,false,COLOR,"Neon",0.7,0.08)
  769. local Parta = CreatePart(3, HAND, "Neon", 0, 1, COLOR2, "FingerJoint", VT(0,0,0),false)
  770. CreateWeldOrSnapOrMotor("Weld", Part1, Parta, Part1, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  771. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,3,0.7),false)
  772. MakeForm(Part,"Cyl")
  773. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  774. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(0.71,0.2,0.71),false)
  775. MakeForm(Part,"Cyl")
  776. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  777. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(1.2,1.2,1.2),false)
  778. MakeForm(Part,"Gem")
  779. Part.Mesh.Offset = VT(0,-0.65,0)
  780. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,3.55/1.5,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  781. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,1.5,0.7),false)
  782. MakeForm(Part,"Cyl")
  783. Part.Mesh.Offset = VT(0,-1,0.5)
  784. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,2/1.5,-2.5/1.5) * ANGLES(RAD(-45), RAD(0), RAD(0)), CF(0, 0, 0))
  785. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(1.2,3,1.2),false)
  786. MakeForm(Part,"Gem")
  787. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,-3/1.5,6/1.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  788. local Parta = CreatePart(3, HAND, "Neon", 0, 1, COLOR2, "FingerJoint", VT(0,0,0),false)
  789. CreateWeldOrSnapOrMotor("Weld", Part1, Parta, Part1, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(125)), CF(0, 0, 0))
  790. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,3,0.7),false)
  791. MakeForm(Part,"Cyl")
  792. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  793. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(0.71,0.2,0.71),false)
  794. MakeForm(Part,"Cyl")
  795. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  796. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(1.2,1.2,1.2),false)
  797. MakeForm(Part,"Gem")
  798. Part.Mesh.Offset = VT(0,-0.65,0)
  799. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,3.55/1.5,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  800. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,1.5,0.7),false)
  801. MakeForm(Part,"Cyl")
  802. Part.Mesh.Offset = VT(0,-1,0.5)
  803. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,2/1.5,-2.5/1.5) * ANGLES(RAD(-45), RAD(0), RAD(0)), CF(0, 0, 0))
  804. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(1.2,3,1.2),false)
  805. MakeForm(Part,"Gem")
  806. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,-3/1.5,6/1.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  807. local Parta = CreatePart(3, HAND, "Neon", 0, 1, COLOR2, "FingerJoint", VT(0,0,0),false)
  808. CreateWeldOrSnapOrMotor("Weld", Part1, Parta, Part1, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(-125)), CF(0, 0, 0))
  809. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,3,0.7),false)
  810. MakeForm(Part,"Cyl")
  811. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  812. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(0.71,0.2,0.71),false)
  813. MakeForm(Part,"Cyl")
  814. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  815. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(1.2,1.2,1.2),false)
  816. MakeForm(Part,"Gem")
  817. Part.Mesh.Offset = VT(0,-0.65,0)
  818. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,3.55/1.5,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  819. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,1.5,0.7),false)
  820. MakeForm(Part,"Cyl")
  821. Part.Mesh.Offset = VT(0,-1,0.5)
  822. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,2/1.5,-2.5/1.5) * ANGLES(RAD(-45), RAD(0), RAD(0)), CF(0, 0, 0))
  823. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(1.2,3,1.2),false)
  824. MakeForm(Part,"Gem")
  825. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,-3/1.5,6/1.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  826. local Parta = CreatePart(3, HAND, "Neon", 0, 1, COLOR2, "FingerJoint", VT(0,0,0),false)
  827. CreateWeldOrSnapOrMotor("Weld", Part1, Parta, Part1, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(-180)), CF(0, 0, 0))
  828. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,3,0.7),false)
  829. MakeForm(Part,"Cyl")
  830. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  831. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(0.71,0.2,0.71),false)
  832. MakeForm(Part,"Cyl")
  833. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, -2, 0))
  834. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(1.2,1.2,1.2),false)
  835. MakeForm(Part,"Gem")
  836. Part.Mesh.Offset = VT(0,-0.65,0)
  837. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,3.55/1.5,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  838. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR2, "FingerPart", VT(0.7,1.5,0.7),false)
  839. MakeForm(Part,"Cyl")
  840. Part.Mesh.Offset = VT(0,-1,0.5)
  841. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,2/1.5,-2.5/1.5) * ANGLES(RAD(-45), RAD(0), RAD(0)), CF(0, 0, 0))
  842. local Part = CreatePart(3, HAND, "Neon", 0, 0, COLOR, "FingerPart", VT(1.2,3,1.2),false)
  843. MakeForm(Part,"Gem")
  844. CreateWeldOrSnapOrMotor("Weld", Parta, Part, Parta, CF(0,-3/1.5,6/1.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  845. for _, c in pairs(HAND:GetChildren()) do
  846. if c.ClassName == "Part" then
  847. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  848. if c.Material ~= Enum.Material.Neon then
  849. c.Color = C3(125,0,0)
  850. end
  851. end
  852. end
  853. return Part1, HandWeld
  854. end
  855.  
  856. local Palm1, ArmWeld1 = MakeHand()
  857. local Palm2, ArmWeld2 = MakeHand()
  858. local Palm3, ArmWeld3 = MakeHand()
  859. local Palm4, ArmWeld4 = MakeHand()
  860.  
  861. for _, c in pairs(Weapon:GetChildren()) do
  862. if c.ClassName == "Part" then
  863. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  864. if c.Material ~= Enum.Material.Neon then
  865. c.Color = C3(0,0,0)
  866. end
  867. end
  868. end
  869.  
  870. Weapon.Parent = Character
  871.  
  872. local SKILL1FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.13, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 1 Frame")
  873. local SKILL2FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.60, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 2 Frame")
  874. local SKILL3FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.23, 0, 0.93, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 3 Frame")
  875. local SKILL4FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.50, 0, 0.93, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 4 Frame")
  876. local SKILL5FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.365, 0, 0.7, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 5 Frame")
  877.  
  878. local SKILL1TEXT = CreateLabel(SKILL1FRAME, "[Z] Octo Claws", SKILLTEXTCOLOR, 8, "Garamond", 0, 2, 1, "Text 1")
  879. local SKILL2TEXT = CreateLabel(SKILL2FRAME, "[B] Beam Wave", SKILLTEXTCOLOR, 8, "Garamond", 0, 2, 1, "Text 2")
  880. local SKILL3TEXT = CreateLabel(SKILL3FRAME, "[C] Rage of Gods", SKILLTEXTCOLOR, 8, "Garamond", 0, 2, 1, "Text 3")
  881. local SKILL4TEXT = CreateLabel(SKILL4FRAME, "[V] Red Antimatter Ray", SKILLTEXTCOLOR, 8, "Garamond", 0, 2, 1, "Text 4")
  882. local SKILL5TEXT = CreateLabel(SKILL5FRAME, "[X] Ultimatum Power", SKILLTEXTCOLOR, 7, "Garamond", 0, 2, 1, "Text 5")
  883.  
  884. --//=================================\\
  885. --|| DAMAGING
  886. --\\=================================//
  887.  
  888. function killnearest(position,range)
  889. for i,v in ipairs(workspace:GetChildren()) do
  890. local body = v:GetChildren()
  891. for part = 1, #body do
  892. if((body[part].ClassName == "Part" or body[part].ClassName == "MeshPart") and v ~= Character) then
  893. if(body[part].Position - position).Magnitude < range then
  894. if v.ClassName == "Model" then
  895. v:BreakJoints()
  896. end
  897. end
  898. end
  899. end
  900. end
  901. end
  902.  
  903. function fling(position,range,maxstrength)
  904. for i,v in ipairs(workspace:GetChildren()) do
  905. local body = v:GetChildren()
  906. for part = 1, #body do
  907. if((body[part].ClassName == "Part" or body[part].ClassName == "MeshPart") and v ~= Character) then
  908. if(body[part].Position - position).Magnitude < range and body[part]:FindFirstChild("Flung") == nil then
  909. local bv = Instance.new("BodyVelocity")
  910. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  911. bv.Name = "Flung"
  912. bv.velocity = CF(position,body[part].Position).lookVector*maxstrength
  913. bv.Parent = body[part]
  914. Debris:AddItem(bv,0.2)
  915. end
  916. end
  917. end
  918. end
  919. end
  920.  
  921. --//=================================\\
  922. --|| ATTACK FUNCTIONS AND STUFF
  923. --\\=================================//
  924.  
  925. function CastProperRay(StartPos, Vec, Length, Ignore, DelayIfHit)
  926. local Direction = CFrame.new(StartPos, Vec).lookVector
  927. local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
  928. local RayHit, RayPos, RayNormal = game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(StartPos, Direction * Length), Ignore)
  929. if RayHit and CheckIntangible(RayHit) then
  930. if DelayIfHit then
  931. wait()
  932. end
  933. RayHit, RayPos, RayNormal = CastZapRay((RayPos + (Vec * 0.01)), Vec, (Length - ((StartPos - RayPos).magnitude)), Ignore, DelayIfHit)
  934. end
  935. return RayHit, RayPos, RayNormal
  936. end
  937.  
  938. Humanoid.Died:connect(function()
  939. q = workspace:GetChildren()
  940. --CreatePentagram(1500,true,-0.1,150,CF(RootPart.Position),-3)
  941. Head.Parent = nil
  942. Head = nil
  943. for i = 1, #q do
  944. local child = q[i]
  945. if child.ClassName == "Model" and child:FindFirstChild("Humanoid") then
  946. child:BreakJoints()
  947. end
  948. end
  949. local taunt = CreateSound("135009414", workspace, 10, 1)
  950. local effect = IT("PitchShiftSoundEffect",taunt)
  951. effect.Octave = 0.700
  952. ATTACK = true
  953. end)
  954.  
  955. Humanoid.HealthChanged:connect(function()
  956. if Humanoid.Health == 0 then
  957. Humanoid.MaxHealth = "inf"
  958. Humanoid.Health = "inf"
  959. end
  960. end)
  961.  
  962. function PoseAllOut()
  963. coroutine.resume(coroutine.create(function()
  964. for i=0, 1, 0.1 / Animation_Speed do
  965. Swait()
  966. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(-15), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  967. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  968. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(-5), RAD(180), RAD(-145)) * RIGHTSHOULDERC0, 0.5 / Animation_Speed)
  969. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-5), RAD(180), RAD(145)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  970. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(-15)), 0.5 / Animation_Speed)
  971. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(15)), 0.5 / Animation_Speed)
  972. end
  973. end))
  974. end
  975.  
  976. function PoseArmCrossed()
  977. coroutine.resume(coroutine.create(function()
  978. for i=0, 1, 0.1 / Animation_Speed do
  979. Swait()
  980. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  981. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(25), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  982. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(0.75, 0.5, -1) * ANGLES(RAD(70), RAD(0), RAD(-70)) * ANGLES(RAD(20), RAD(25), RAD(-15)) * RIGHTSHOULDERC0, 0.4 / Animation_Speed)
  983. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1, 0.2, -0.5) * ANGLES(RAD(25), RAD(0), RAD(85)) * LEFTSHOULDERC0, 0.4 / Animation_Speed)
  984. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(-45)), 0.5 / Animation_Speed)
  985. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(45)), 0.5 / Animation_Speed)
  986. end
  987. end))
  988. end
  989.  
  990. function PoseGoForward()
  991. coroutine.resume(coroutine.create(function()
  992. for i=0, 1, 0.1 / Animation_Speed do
  993. Swait()
  994. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(45)), 0.5 / Animation_Speed)
  995. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-45)), 0.5 / Animation_Speed)
  996. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(45)) * RIGHTSHOULDERC0, 0.5 / Animation_Speed)
  997. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  998. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  999. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  1000. end
  1001. end))
  1002. end
  1003.  
  1004. function ClawForce()
  1005. ATTACK = true
  1006. Rooted = false
  1007. PoseArmCrossed()
  1008. for i=0, 2, 0.1 / Animation_Speed do
  1009. Swait()
  1010. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(10 + 0.75,8,0) * ANGLES(RAD(-15), RAD(25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1011. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(-10 - 0.75,8,0) * ANGLES(RAD(-15), RAD(-25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1012. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(13 + 0.75,-4,0) * ANGLES(RAD(-25), RAD(35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1013. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(-13 - 0.75,-4,0) * ANGLES(RAD(-25), RAD(-35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1014. end
  1015. Rooted = true
  1016. for i=0, 0.2, 0.1 / Animation_Speed do
  1017. Swait()
  1018. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(18,0,15) * ANGLES(RAD(90), RAD(25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1019. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(-18,0,15) * ANGLES(RAD(90), RAD(-25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1020. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(18,-15,15) * ANGLES(RAD(90), RAD(35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1021. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(-18,-15,15) * ANGLES(RAD(90), RAD(-35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1022. end
  1023. CreateWave(VT(15,0,15),45,CF(Palm1.Position)*CF(0,-2,0),true,-0.2,COLOR2,VT(0.2,0.25,0.2))
  1024. CreateWave(VT(15,0,15),45,CF(Palm1.Position)*CF(0,-2,0),true,0.2,COLOR2,VT(0.2,0.25,0.2))
  1025. CreateWave(VT(15,0,15),45,CF(Palm2.Position)*CF(0,-2,0),true,-0.2,COLOR2,VT(0.2,0.25,0.2))
  1026. CreateWave(VT(15,0,15),45,CF(Palm2.Position)*CF(0,-2,0),true,0.2,COLOR2,VT(0.2,0.25,0.2))
  1027. CreateWave(VT(15,0,15),45,CF(Palm3.Position)*CF(0,-2,0),true,-0.2,COLOR2,VT(0.2,0.25,0.2))
  1028. CreateWave(VT(15,0,15),45,CF(Palm3.Position)*CF(0,-2,0),true,0.2,COLOR2,VT(0.2,0.25,0.2))
  1029. CreateWave(VT(15,0,15),45,CF(Palm4.Position)*CF(0,-2,0),true,-0.2,COLOR2,VT(0.2,0.25,0.2))
  1030. CreateWave(VT(15,0,15),45,CF(Palm4.Position)*CF(0,-2,0),true,0.2,COLOR2,VT(0.2,0.25,0.2))
  1031. killnearest(Palm1.Position,15)
  1032. killnearest(Palm2.Position,15)
  1033. killnearest(Palm3.Position,15)
  1034. killnearest(Palm4.Position,15)
  1035. CreateSound("289842971", Effects, 3, 0.8)
  1036. CreateSound("289842971", Effects, 3, 1)
  1037. for i=0, 1, 0.1 / Animation_Speed do
  1038. Swait()
  1039. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(18,0,15) * ANGLES(RAD(90), RAD(25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1040. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(-18,0,15) * ANGLES(RAD(90), RAD(-25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1041. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(18,-15,15) * ANGLES(RAD(90), RAD(35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1042. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(-18,-15,15) * ANGLES(RAD(90), RAD(-35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  1043. end
  1044. ATTACK = false
  1045. Rooted = false
  1046. end
  1047.  
  1048. function RayCast(Position, Direction, MaxDistance, IgnoreList)
  1049. return game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(Position, Direction.unit * (MaxDistance or 999.999)), IgnoreList)
  1050. end
  1051.  
  1052. function SinnerWave()
  1053. ATTACK = true
  1054. Rooted = false
  1055. PoseAllOut()
  1056. local angle = -35
  1057. for i = 1, 3 do
  1058. turnto(Mouse.Hit.p)
  1059. coroutine.resume(coroutine.create(function()
  1060. local RayHit, RayPos = RayCast(Torso.Position, Vector3.new(0, -15, 0), 10000, {Character})
  1061. local SpawnPosition = RayPos
  1062. local floor = RayHit
  1063. local needcframe = RootPart.CFrame*ANGLES(RAD(0),RAD(angle),RAD(0))
  1064. local LastPosition = RayPos
  1065. local Delay = 1
  1066. for i = 1, 4 do
  1067. local RayHit, RayPos = RayCast(LastPosition, needcframe.lookVector, 25, {workspace})
  1068. local End = RayPos
  1069. LastPosition = End
  1070. local locatepart = Instance.new("Part",Effects)
  1071. locatepart.Size = VT(0.5,0.5,0.5)
  1072. locatepart.Position = End
  1073. locatepart.CanCollide = false
  1074. locatepart.Anchored = true
  1075. locatepart.Name = "Oof"
  1076. locatepart.Transparency = 1
  1077. if SpawnPosition and i ~= 4 then
  1078. CreateSound("971125740", locatepart, 7, 1)
  1079. killnearest(End,15)
  1080. CreateWave(VT(2,0,2),45,CF(End),true,-0.2,COLOR2,VT(1,0.2,1))
  1081. CreateWave(VT(2,0,2),45,CF(End),true,0.2,COLOR2,VT(1,0.2,1))
  1082. for i = 1, 5 do
  1083. CreateRing(VT(52,13,52),false,0,45,CF(End) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(-52,-3,-52)/45)
  1084. end
  1085. end
  1086. if i == 4 then
  1087. CreateWave(VT(15,0,15),125,CF(End),true,-0.2,COLOR,VT(1,0.2,1))
  1088. CreateWave(VT(15,0,15),125,CF(End),true,0.2,COLOR,VT(1,0.2,1))
  1089. CreateSound("215270668", Effects, 3, 1)
  1090. coroutine.resume(coroutine.create(function()
  1091. local BEAM = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(35,100000,35))
  1092. BEAM.CFrame = CF(End)
  1093. MakeForm(BEAM,"Cyl")
  1094. local BEAM1 = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(22.5,100000,22.5))
  1095. BEAM1.CFrame = CF(End)
  1096. MakeForm(BEAM1,"Cyl")
  1097. local BEAM2 = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(10,100000,10))
  1098. BEAM2.CFrame = CF(End)
  1099. MakeForm(BEAM2,"Cyl")
  1100. for i = 1, 125 do
  1101. Swait()
  1102. local CFRAME = CF(End)*CF(MRANDOM(-2,2),0,MRANDOM(-2,2))
  1103. fling(End,45,100)
  1104. killnearest(End,35)
  1105. BEAM.CFrame = CFRAME
  1106. BEAM1.CFrame = CFRAME
  1107. BEAM2.CFrame = CFRAME
  1108. BEAM.Transparency = BEAM.Transparency + (0.7/125)
  1109. BEAM1.Transparency = BEAM.Transparency
  1110. BEAM2.Transparency = BEAM.Transparency
  1111. end
  1112. BEAM:remove()
  1113. BEAM1:remove()
  1114. BEAM2:remove()
  1115. end))
  1116. end
  1117. Swait(35)
  1118. game:GetService("Debris"):AddItem(locatepart, 5)
  1119. end
  1120. end))
  1121. angle = angle + 35
  1122. end
  1123. ATTACK = false
  1124. Rooted = false
  1125. end
  1126.  
  1127. function DepthsRage()
  1128. ATTACK = true
  1129. Rooted = true
  1130. CreateSound("463598785", Effects, 7, 1)
  1131. for i=0, 3, 0.1 / Animation_Speed do
  1132. Swait()
  1133. CreateRing(VT(0,0,0),false,0,10,CF(Palm1.Position) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(5,0.2,5))
  1134. CreateRing(VT(0,0,0),false,0,10,CF(Palm2.Position) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(5,0.2,5))
  1135. CreateRing(VT(0,0,0),false,0,10,CF(Palm3.Position) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(5,0.2,5))
  1136. CreateRing(VT(0,0,0),false,0,10,CF(Palm4.Position) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(5,0.2,5))
  1137. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(0,-10,0) * ANGLES(RAD(0), RAD(0), RAD(-135)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1138. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(0,-10,0) * ANGLES(RAD(0), RAD(0), RAD(135)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1139. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(0,-10,0) * ANGLES(RAD(0), RAD(0), RAD(-45)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1140. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(0,-10,0) * ANGLES(RAD(0), RAD(0), RAD(45)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1141. end
  1142. CreatePentagram(185,true,0.2,170,RootPart.CFrame*CF(0,-15,0),VT(0,0,0))
  1143. local BEAM = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(130,100000,130))
  1144. BEAM.CFrame = CF(RootPart.Position)
  1145. MakeForm(BEAM,"Cyl")
  1146. local BEAM1 = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(130*0.66,100000,130*0.66))
  1147. BEAM1.CFrame = CF(RootPart.Position)
  1148. MakeForm(BEAM1,"Cyl")
  1149. local BEAM2 = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(130*0.33,100000,130*0.33))
  1150. BEAM2.CFrame = CF(RootPart.Position)
  1151. MakeForm(BEAM2,"Cyl")
  1152. CreateSound("215270668", Effects, 3, 0.8)
  1153. for i = 1, 155 do
  1154. Swait()
  1155. CreateWave(VT(2,0,2),15,CF(RootPart.Position)*CF(0,-15,0),true,-0.2,COLOR2,VT(5,0.4,5))
  1156. CreateWave(VT(2,0,2),15,CF(RootPart.Position)*CF(0,-15,0),true,0.2,COLOR2,VT(5,0.4,5))
  1157. local CFRAME = CF(RootPart.Position)*CF(MRANDOM(-2,2),0,MRANDOM(-2,2))
  1158. fling(RootPart.Position,80,100)
  1159. killnearest(RootPart.Position,70)
  1160. BEAM.CFrame = CFRAME
  1161. BEAM1.CFrame = CFRAME
  1162. BEAM2.CFrame = CFRAME
  1163. BEAM.Transparency = BEAM.Transparency + (0.7/155)
  1164. BEAM1.Transparency = BEAM.Transparency
  1165. BEAM2.Transparency = BEAM.Transparency
  1166. CreateRing(VT(0,0,0),false,0,10,CF(RootPart.Position)*CF(0,-15,0) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(15,0.2,15))
  1167. end
  1168. BEAM:remove()
  1169. BEAM1:remove()
  1170. BEAM2:remove()
  1171. ATTACK = false
  1172. Rooted = false
  1173. end
  1174.  
  1175. function HellfireSync()
  1176. ATTACK = true
  1177. Rooted = false
  1178. PoseGoForward()
  1179. MagicSphere(VT(15,15,15),25,Palm1.CFrame,COLOR2,VT(-15,-15,-15)/25)
  1180. MagicSphere(VT(15,15,15),25,Palm2.CFrame,COLOR2,VT(-15,-15,-15)/25)
  1181. MagicSphere(VT(15,15,15),25,Palm3.CFrame,COLOR2,VT(-15,-15,-15)/25)
  1182. MagicSphere(VT(15,15,15),25,Palm4.CFrame,COLOR2,VT(-15,-15,-15)/25)
  1183. for i=0, 2, 0.1 / Animation_Speed do
  1184. Swait()
  1185. turnto(Mouse.Hit.p)
  1186. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(0,0,10) * ANGLES(RAD(0), RAD(0), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  1187. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(0,0,10) * ANGLES(RAD(0), RAD(0), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  1188. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(0,0,10) * ANGLES(RAD(0), RAD(0), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  1189. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(0,0,10) * ANGLES(RAD(0), RAD(0), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  1190. end
  1191. CreateSound("463598785", Effects, 7, 1)
  1192. for i = 1, 65 do
  1193. Swait()
  1194. turnto(Mouse.Hit.p)
  1195. CreateRing(VT(62,13,62),false,0,50,CF(Palm1.Position) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(-62,-3,-62)/45)
  1196. end
  1197. CreateSound("160212892", Effects, 7, 0.8)
  1198. for i = 1, 50 do
  1199. Swait()
  1200. turnto(Mouse.Hit.p)
  1201. end
  1202. Rooted = true
  1203. local BEAM = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(35,100000,35))
  1204. MakeForm(BEAM,"Cyl")
  1205. local BEAM1 = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(22.5,100000,22.5))
  1206. MakeForm(BEAM1,"Cyl")
  1207. local BEAM2 = CreatePart(3, Effects, "Neon", 0, 0.3, BRICKC(COLOR), "Effect", VT(10,100000,10))
  1208. MakeForm(BEAM2,"Cyl")
  1209. CreateSound("215270668", Effects, 3, 0.5)
  1210. for i = 1, 175 do
  1211. RootPart.CFrame = RootPart.CFrame * CF(0,0,0.1)
  1212. local a = MRANDOM(-2,2)
  1213. local b = MRANDOM(-2,2)
  1214. local c = MRANDOM(-2,2)
  1215. CreateRing(VT(0,0,0),false,0,10,CF(Palm1.Position) * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360))),COLOR,VT(5,0.2,5))
  1216. local RayHit, Way = CastProperRay(Palm1.CFrame*CF(0,0,-5)*CF(a,b,c).p,CF(Mouse.Hit.p)*CF(a,b,c).p,2000,Character)
  1217. turnto(Mouse.Hit.p)
  1218. local distance = (CF(Palm1.Position)*CF(a,b,c).p - Way).magnitude
  1219. BEAM.CFrame = CFrame.new(Palm1.CFrame*CF(0,0,-15)*CF(a,b,c).p, Way) * CFrame.new(0, 0, -distance/2) * ANGLES(RAD(90),RAD(0),RAD(0))
  1220. BEAM.Size = Vector3.new(35, distance+15, 35)
  1221. BEAM1.CFrame = CFrame.new(Palm1.CFrame*CF(0,0,-15)*CF(a,b,c).p, Way) * CFrame.new(0, 0, -distance/2) * ANGLES(RAD(90),RAD(0),RAD(0))
  1222. BEAM1.Size = Vector3.new(22.5, distance+15, 22.5)
  1223. BEAM2.CFrame = CFrame.new(Palm1.CFrame*CF(0,0,-15)*CF(a,b,c).p, Way) * CFrame.new(0, 0, -distance/2) * ANGLES(RAD(90),RAD(0),RAD(0))
  1224. BEAM2.Size = Vector3.new(10, distance+15, 10)
  1225. BEAM.Transparency = BEAM.Transparency + (0.7/175)
  1226. BEAM1.Transparency = BEAM.Transparency
  1227. BEAM2.Transparency = BEAM.Transparency
  1228. killnearest(Way,35)
  1229. fling(Way,50,15)
  1230. Swait()
  1231. end
  1232. BEAM:remove()
  1233. BEAM1:remove()
  1234. BEAM2:remove()
  1235. ATTACK = false
  1236. Rooted = false
  1237. end
  1238.  
  1239. function clerp(a, b, t)
  1240. return a:lerp(b, t)
  1241. end
  1242.  
  1243. function newBezier(startpos, pos2, pos3, endpos, t)
  1244. local A = clerp(startpos, pos2, t)
  1245. local B = clerp(pos2, pos3, t)
  1246. local C = clerp(pos3, endpos, t)
  1247. local lerp1 = clerp(A, B, t)
  1248. local lerp2 = clerp(B, C, t)
  1249. local cubic = clerp(lerp1, lerp2, t)
  1250. return cubic
  1251. end
  1252.  
  1253. function SoulSteal(Target,SOUL)
  1254. local newball = Instance.new("Part", workspace)
  1255. newball.Anchored = true
  1256. newball.Shape = "Ball"
  1257. newball.Material = "Neon"
  1258. newball.Size = Vector3.new(0,0,0)
  1259. newball.CanCollide = false
  1260. newball.CFrame = CF(Target)
  1261. newball.BrickColor = BRICKC"Really blue"
  1262. newball.Transparency = 1
  1263. local POS = SOUL.Position
  1264. local onefourth = Target:Lerp(POS, 0.25) + Vector3.new(math.random(-25, 25), math.random(0, 25), math.random(-25, 25))
  1265. local threefourths = Target:Lerp(POS, 0.75) + Vector3.new(math.random(-25, 25), math.random(0, 25), math.random(-25, 25))
  1266. local A1 = IT("Attachment",newball)
  1267. A1.Position = Vector3.new(0, 2.5, 0)
  1268. local A2 = IT("Attachment",newball)
  1269. A2.Position = Vector3.new(0, -2.5, 0)
  1270. local Trail = IT("Trail",newball)
  1271. Trail.LightEmission = 1
  1272. Trail.FaceCamera = true
  1273. Trail.Texture = "rbxassetid://945758042"
  1274. Trail.Attachment0 = A1
  1275. Trail.Attachment1 = A2
  1276. Trail.Lifetime = 2
  1277. Trail.MinLength = 0
  1278. Trail.Transparency = NumberSequence.new(0, 1)
  1279. Trail.Color = ColorSequence.new(newball.Color)
  1280. coroutine.resume(coroutine.create(function()
  1281. for i = 0, 1, 0.07 do
  1282. Swait()
  1283. newball.CFrame = CFrame.new(newBezier(Target, onefourth, threefourths, POS, i))
  1284. end
  1285. newball.Transparency = 1
  1286. CreateSound("444667859", SOUL, 10, MRANDOM(8,12)/10)
  1287. SOUL.Size = SOUL.Size + VT(0.3,0.3,0.3)
  1288. game:GetService("Debris"):AddItem(newball, 5)
  1289. end))
  1290. end
  1291.  
  1292. function TruePowerOfSin()
  1293. ATTACK = true
  1294. Rooted = true
  1295. PoseAllOut()
  1296. local q = workspace:GetChildren()
  1297. for i = 1, #q do
  1298. if q[i]:FindFirstChildOfClass("Humanoid") and q[i] ~= Character then
  1299. local HUMAN = q[i]:FindFirstChildOfClass("Humanoid")
  1300. local TORS = q[i]:FindFirstChild("Torso") or q[i]:FindFirstChild("UpperTorso")
  1301. local grav = Instance.new("BodyPosition",TORS)
  1302. grav.P = 20000
  1303. grav.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1304. grav.position = TORS.Position + VT(0,25,0)
  1305. grav.Name = "GravityForce"
  1306. VALUE2 = true
  1307. CreateSound("337800380", TORS, 5, MRANDOM(8,12)/10)
  1308. end
  1309. end
  1310. if VALUE2 == true then
  1311. local SOULSPHERE = CreatePart(3, Effects, "Neon", 0, 0, BRICKC(COLOR), "Effect", VT(0,0,0))
  1312. SOULSPHERE.CFrame = CF(RootPart.Position+VT(0,75,0))
  1313. MakeForm(SOULSPHERE,"Ball")
  1314. VALUE1 = true
  1315. Swait(50)
  1316. for i = 1, 25 do
  1317. Swait(5)
  1318. for i = 1, #q do
  1319. if q[i]:FindFirstChildOfClass("Humanoid") and q[i] ~= Character then
  1320. local HUMAN = q[i]:FindFirstChildOfClass("Humanoid")
  1321. local TORS = q[i]:FindFirstChild("Torso") or q[i]:FindFirstChild("UpperTorso")
  1322. SoulSteal(TORS.Position,SOULSPHERE)
  1323. local R = q[i]:GetChildren()
  1324. for o = 1, # R do
  1325. if R[o].ClassName == "LocalScript" or R[o].ClassName == "Script" then
  1326. R[o].Disabled = true
  1327. R[o]:remove()
  1328. end
  1329. end
  1330. Swait()
  1331. end
  1332. end
  1333. end
  1334. for i = 1, #q do
  1335. if q[i]:FindFirstChildOfClass("Humanoid") and q[i] ~= Character then
  1336. local HUMAN = q[i]:FindFirstChildOfClass("Humanoid")
  1337. local TORS = q[i]:FindFirstChild("Torso") or q[i]:FindFirstChild("UpperTorso")
  1338. SoulSteal(TORS.Position,SOULSPHERE)
  1339. if TORS.Parent.Parent ~= nil and TORS ~= nil then
  1340. TORS.GravityForce:remove()
  1341. local R = q[i]:GetChildren()
  1342. for o = 1, #R do
  1343. if R[o].ClassName == "LocalScript" or R[o].ClassName == "Script" then
  1344. R[o].Disabled = true
  1345. R[o]:remove()
  1346. end
  1347. end
  1348. HUMAN:remove()
  1349. end
  1350. end
  1351. end
  1352. coroutine.resume(coroutine.create(function()
  1353. Swait(100)
  1354. CreateSound("463598785", SOULSPHERE, 10, MRANDOM(8,12)/10)
  1355. MagicSphere(SOULSPHERE.Size,25,SOULSPHERE.CFrame,COLOR,SOULSPHERE.Size/50)
  1356. for i = 1, 50 do
  1357. Swait()
  1358. SOULSPHERE.Size = SOULSPHERE.Size * 0.9
  1359. end
  1360. SOULSPHERE:remove()
  1361. end))
  1362. end
  1363. VALUE2 = false
  1364. VALUE1 = false
  1365. ATTACK = false
  1366. Rooted = false
  1367. end
  1368.  
  1369. --//=================================\\
  1370. --|| ASSIGN THINGS TO KEYS
  1371. --\\=================================//
  1372.  
  1373. function MouseDown(Mouse)
  1374. if ATTACK == false then
  1375. end
  1376. end
  1377.  
  1378. function MouseUp(Mouse)
  1379. HOLD = false
  1380. end
  1381.  
  1382. function KeyDown(Key)
  1383. KEYHOLD = true
  1384. if Key == "z" and ATTACK == false then
  1385. ClawForce()
  1386. end
  1387.  
  1388. if Key == "b" and ATTACK == false then
  1389. SinnerWave()
  1390. end
  1391.  
  1392. if Key == "c" and ATTACK == false then
  1393. DepthsRage()
  1394. end
  1395.  
  1396. if Key == "v" and ATTACK == false then
  1397. HellfireSync()
  1398. end
  1399.  
  1400. if Key == "x" and ATTACK == false then
  1401. TruePowerOfSin()
  1402. end
  1403.  
  1404. if Key == "t" and ATTACK == false then
  1405. CreateSound("907328384", Effects, 5, 0.8)
  1406. end
  1407. end
  1408.  
  1409. function KeyUp(Key)
  1410. KEYHOLD = false
  1411. end
  1412.  
  1413. Mouse.Button1Down:connect(function(NEWKEY)
  1414. MouseDown(NEWKEY)
  1415. end)
  1416. Mouse.Button1Up:connect(function(NEWKEY)
  1417. MouseUp(NEWKEY)
  1418. end)
  1419. Mouse.KeyDown:connect(function(NEWKEY)
  1420. KeyDown(NEWKEY)
  1421. end)
  1422. Mouse.KeyUp:connect(function(NEWKEY)
  1423. KeyUp(NEWKEY)
  1424. end)
  1425.  
  1426. --//=================================\\
  1427. --\\=================================//
  1428.  
  1429.  
  1430. function unanchor()
  1431. if UNANCHOR == true then
  1432. g = Character:GetChildren()
  1433. for i = 1, #g do
  1434. if g[i].ClassName == "Part" then
  1435. g[i].Anchored = false
  1436. end
  1437. end
  1438. g = Weapon:GetChildren()
  1439. for i = 1, #g do
  1440. if g[i].ClassName == "Part" then
  1441. g[i].Anchored = false
  1442. end
  1443. end
  1444. end
  1445. end
  1446.  
  1447.  
  1448. --//=================================\\
  1449. --|| WRAP THE WHOLE SCRIPT UP
  1450. --\\=================================//
  1451.  
  1452. Humanoid.Changed:connect(function(Jump)
  1453. if Jump == "Jump" and (Disable_Jump == true) then
  1454. Humanoid.Jump = false
  1455. end
  1456. end)
  1457.  
  1458. local FF = IT("ForceField",Character)
  1459. FF.Visible = false
  1460.  
  1461. Humanoid.HipHeight = 15
  1462. Speed = 75
  1463.  
  1464. while true do
  1465. Swait()
  1466. ANIMATE.Parent = nil
  1467. local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION)
  1468. IDLEANIMATION:Play()
  1469. SINE = SINE + CHANGE
  1470. local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
  1471. local TORSOVERTICALVELOCITY = RootPart.Velocity.y
  1472. local LV = Torso.CFrame:pointToObjectSpace(Torso.Velocity - Torso.Position)
  1473. local HITFLOOR = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 4 * Player_Size, Character)
  1474. local WALKSPEEDVALUE = 6 / (Humanoid.WalkSpeed / 16)
  1475. if ATTACK == false then
  1476. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(10 + 0.75 * COS(SINE / 52),10 + 0.25 * COS(SINE / 52),0) * ANGLES(RAD(15), RAD(25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1477. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(-10 - 0.75 * COS(SINE / 52),10 + 0.25 * COS(SINE / 52),0) * ANGLES(RAD(15), RAD(-25), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1478. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(13 + 0.75 * COS(SINE / 52),-2 + 0.25 * COS(SINE / 52),0) * ANGLES(RAD(25), RAD(35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1479. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(-13 - 0.75 * COS(SINE / 52),-2 + 0.25 * COS(SINE / 52),0) * ANGLES(RAD(25), RAD(-35), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1480. end
  1481. if TORSOVELOCITY < 1 then
  1482. ANIM = "Idle"
  1483. if ATTACK == false then
  1484. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1485. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1486. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  1487. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  1488. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5 - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1489. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1490. end
  1491. elseif TORSOVELOCITY > 1 then
  1492. ANIM = "Walk"
  1493. WALK = WALK + 1 / Animation_Speed
  1494. if WALK >= 15 - (5 * (Humanoid.WalkSpeed / 16 / Player_Size)) then
  1495. WALK = 0
  1496. if WALKINGANIM == true then
  1497. WALKINGANIM = false
  1498. elseif WALKINGANIM == false then
  1499. WALKINGANIM = true
  1500. end
  1501. end
  1502. --RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 0.875 * Player_Size - 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, -0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) - RightLeg.RotVelocity.Y / 75, RAD(0), RAD(60 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  1503. --LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 0.875 * Player_Size + 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, 0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) + LeftLeg.RotVelocity.Y / 75, RAD(0), RAD(60 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  1504. if ATTACK == false then
  1505. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(35), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1506. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-35 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1507. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  1508. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  1509. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5 - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1510. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1511. end
  1512. end
  1513. sick.Parent = Character
  1514. unanchor()
  1515. Humanoid.MaxHealth = "inf"
  1516. Humanoid.Health = "inf"
  1517. if Rooted == false then
  1518. Disable_Jump = false
  1519. Humanoid.WalkSpeed = Speed
  1520. elseif Rooted == true then
  1521. Disable_Jump = true
  1522. Humanoid.WalkSpeed = 0
  1523. end
  1524. if Head:FindFirstChild("face") then
  1525. Head.face:remove()
  1526. end
  1527. if VALUE1 == true then
  1528. MagicBlock(2,30,Palm1.CFrame,COLOR,VT(-0.01,-0.01,-0.01))
  1529. MagicBlock(2,30,Palm2.CFrame,COLOR,VT(-0.01,-0.01,-0.01))
  1530. MagicBlock(2,30,Palm3.CFrame,COLOR,VT(-0.01,-0.01,-0.01))
  1531. MagicBlock(2,30,Palm4.CFrame,COLOR,VT(-0.01,-0.01,-0.01))
  1532. ArmWeld1.C0 = Clerp(ArmWeld1.C0, CF(0,0,15) * ANGLES(RAD(0), RAD(135+(SINE*5)), RAD(0)), 2 / Animation_Speed)
  1533. ArmWeld2.C0 = Clerp(ArmWeld2.C0, CF(0,0,15) * ANGLES(RAD(0), RAD(-135+(SINE*5)), RAD(0)), 2 / Animation_Speed)
  1534. ArmWeld3.C0 = Clerp(ArmWeld3.C0, CF(0,0,15) * ANGLES(RAD(0), RAD(45+(SINE*5)), RAD(0)), 2 / Animation_Speed)
  1535. ArmWeld4.C0 = Clerp(ArmWeld4.C0, CF(0,0,15) * ANGLES(RAD(0), RAD(-45+(SINE*5)), RAD(0)), 2 / Animation_Speed)
  1536. end
  1537. q = Character:GetChildren()
  1538. for u = 1, #q do
  1539. if q[u].ClassName == "Accessory" or q[u].ClassName == "Hat" then
  1540. q[u]:remove()
  1541. elseif q[u].ClassName == "Shirt" then
  1542. q[u]:Destroy()
  1543. elseif q[u].ClassName == "Pants" then
  1544. q[u]:Destroy()
  1545. elseif q[u].ClassName == "CharacterMesh" then
  1546. q[u]:remove()
  1547. elseif q[u].ClassName == "ShirtGraphic" then
  1548. q[u]:remove()
  1549. elseif q[u].ClassName == "Part" and q[u].Name ~= "HumanoidRootPart" then
  1550. q[u].Color = Color3.new(0/255, 0/255, 0/255)
  1551. end
  1552. end
  1553. end
  1554.  
  1555. --//=================================\\
  1556. --\\=================================//
  1557.  
  1558.  
  1559.  
  1560.  
  1561.  
  1562. --//====================================================\\--
  1563. --|| END OF SCRIPT
  1564. --\\====================================================//--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement