Advertisement
GojiGaming1337

Untitled

May 25th, 2018
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 66.23 KB | None | 0 0
  1. --//====================================================\\--
  2. --|| CREATED BY SHACKLUSTER \\--
  3. --|| AND ||--
  4. --|| EDITED BY GODZILLAGAMER2037 //--
  5. --\\====================================================//--
  6. warn("CREATED BY SHACKLUSTER AND EDITED BY GODZILLAGAMER2037.")
  7. wait(0.2)
  8.  
  9. Player = game:GetService("Players").LocalPlayer
  10. PlayerGui = Player.PlayerGui
  11. Cam = workspace.CurrentCamera
  12. Backpack = Player.Backpack
  13. Character = Player.Character
  14. Humanoid = Character.Humanoid
  15. Mouse = Player:GetMouse()
  16. RootPart = Character["HumanoidRootPart"]
  17. Torso = Character["Torso"]
  18. Head = Character["Head"]
  19. RightArm = Character["Right Arm"]
  20. LeftArm = Character["Left Arm"]
  21. RightLeg = Character["Right Leg"]
  22. LeftLeg = Character["Left Leg"]
  23. RootJoint = RootPart["RootJoint"]
  24. Neck = Torso["Neck"]
  25. RightShoulder = Torso["Right Shoulder"]
  26. LeftShoulder = Torso["Left Shoulder"]
  27. RightHip = Torso["Right Hip"]
  28. LeftHip = Torso["Left Hip"]
  29. local sick = Instance.new("Sound",Character)
  30. sick.SoundId = "rbxassetid://687654240"
  31. sick.Looped = true
  32. sick.Pitch = 1
  33. sick.Volume = 1
  34. sick:Play()
  35.  
  36. IT = Instance.new
  37. CF = CFrame.new
  38. VT = Vector3.new
  39. RAD = math.rad
  40. C3 = Color3.new
  41. UD2 = UDim2.new
  42. BRICKC = BrickColor.new
  43. ANGLES = CFrame.Angles
  44. EULER = CFrame.fromEulerAnglesXYZ
  45. COS = math.cos
  46. ACOS = math.acos
  47. SIN = math.sin
  48. ASIN = math.asin
  49. ABS = math.abs
  50. MRANDOM = math.random
  51. FLOOR = math.floor
  52.  
  53. --//=================================\\
  54. --|| USEFUL VALUES
  55. --\\=================================//
  56.  
  57. Animation_Speed = 3
  58. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  59. local Speed = 75
  60. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  61. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  62. local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  63. local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  64. local DAMAGEMULTIPLIER = 1
  65. local ANIM = "Idle"
  66. local ATTACK = false
  67. local EQUIPPED = false
  68. local HOLD = false
  69. local COMBO = 1
  70. local Rooted = false
  71. local SINE = 0
  72. local KEYHOLD = false
  73. local CHANGE = 2 / Animation_Speed
  74. local WALKINGANIM = false
  75. local VALUE1 = false
  76. local VALUE2 = false
  77. local ROBLOXIDLEANIMATION = IT("Animation")
  78. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  79. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  80. --ROBLOXIDLEANIMATION.Parent = Humanoid
  81. local WEAPONGUI = IT("ScreenGui", PlayerGui)
  82. WEAPONGUI.Name = "Weapon GUI"
  83. local Effects = IT("Folder", Character)
  84. Effects.Name = "Effects"
  85. local ANIMATOR = Humanoid.Animator
  86. local ANIMATE = Character.Animate
  87. local UNANCHOR = true
  88. local PLAYMAINANIM = true
  89. local BOLTSOUNDS = {168586621,168586586,178452241}
  90.  
  91. --//=================================\\
  92. --\\=================================//
  93.  
  94.  
  95. --//=================================\\
  96. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  97. --\\=================================//
  98.  
  99. ArtificialHB = Instance.new("BindableEvent", script)
  100. ArtificialHB.Name = "ArtificialHB"
  101.  
  102. script:WaitForChild("ArtificialHB")
  103.  
  104. frame = Frame_Speed
  105. tf = 0
  106. allowframeloss = false
  107. tossremainder = false
  108. lastframe = tick()
  109. script.ArtificialHB:Fire()
  110.  
  111. game:GetService("RunService").Heartbeat:connect(function(s, p)
  112. tf = tf + s
  113. if tf >= frame then
  114. if allowframeloss then
  115. script.ArtificialHB:Fire()
  116. lastframe = tick()
  117. else
  118. for i = 1, math.floor(tf / frame) do
  119. script.ArtificialHB:Fire()
  120. end
  121. lastframe = tick()
  122. end
  123. if tossremainder then
  124. tf = 0
  125. else
  126. tf = tf - frame * math.floor(tf / frame)
  127. end
  128. end
  129. end)
  130.  
  131. --//=================================\\
  132. --\\=================================//
  133.  
  134. --//=================================\\
  135. --|| SOME FUNCTIONS
  136. --\\=================================//
  137.  
  138. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  139. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  140. end
  141.  
  142. function PositiveAngle(NUMBER)
  143. if NUMBER >= 0 then
  144. NUMBER = 0
  145. end
  146. return NUMBER
  147. end
  148.  
  149. function NegativeAngle(NUMBER)
  150. if NUMBER <= 0 then
  151. NUMBER = 0
  152. end
  153. return NUMBER
  154. end
  155.  
  156. function Swait(NUMBER)
  157. if NUMBER == 0 or NUMBER == nil then
  158. ArtificialHB.Event:wait()
  159. else
  160. for i = 1, NUMBER do
  161. ArtificialHB.Event:wait()
  162. end
  163. end
  164. end
  165.  
  166. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  167. local NEWMESH = IT(MESH)
  168. if MESH == "SpecialMesh" then
  169. NEWMESH.MeshType = MESHTYPE
  170. if MESHID ~= "nil" and MESHID ~= "" then
  171. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  172. end
  173. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  174. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  175. end
  176. end
  177. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  178. NEWMESH.Scale = SCALE
  179. NEWMESH.Parent = PARENT
  180. return NEWMESH
  181. end
  182.  
  183. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
  184. local NEWPART = IT("Part")
  185. NEWPART.formFactor = FORMFACTOR
  186. NEWPART.Reflectance = REFLECTANCE
  187. NEWPART.Transparency = TRANSPARENCY
  188. NEWPART.CanCollide = false
  189. NEWPART.Locked = true
  190. NEWPART.Anchored = true
  191. if ANCHOR == false then
  192. NEWPART.Anchored = false
  193. end
  194. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  195. NEWPART.Name = NAME
  196. NEWPART.Size = SIZE
  197. NEWPART.Position = Torso.Position
  198. NEWPART.Material = MATERIAL
  199. NEWPART:BreakJoints()
  200. NEWPART.Parent = PARENT
  201. return NEWPART
  202. end
  203.  
  204. local function weldBetween(a, b)
  205. local weldd = Instance.new("ManualWeld")
  206. weldd.Part0 = a
  207. weldd.Part1 = b
  208. weldd.C0 = CFrame.new()
  209. weldd.C1 = b.CFrame:inverse() * a.CFrame
  210. weldd.Parent = a
  211. return weldd
  212. end
  213.  
  214.  
  215. function QuaternionFromCFrame(cf)
  216. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  217. local trace = m00 + m11 + m22
  218. if trace > 0 then
  219. local s = math.sqrt(1 + trace)
  220. local recip = 0.5 / s
  221. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  222. else
  223. local i = 0
  224. if m11 > m00 then
  225. i = 1
  226. end
  227. if m22 > (i == 0 and m00 or m11) then
  228. i = 2
  229. end
  230. if i == 0 then
  231. local s = math.sqrt(m00 - m11 - m22 + 1)
  232. local recip = 0.5 / s
  233. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  234. elseif i == 1 then
  235. local s = math.sqrt(m11 - m22 - m00 + 1)
  236. local recip = 0.5 / s
  237. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  238. elseif i == 2 then
  239. local s = math.sqrt(m22 - m00 - m11 + 1)
  240. local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  241. end
  242. end
  243. end
  244.  
  245. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  246. local xs, ys, zs = x + x, y + y, z + z
  247. local wx, wy, wz = w * xs, w * ys, w * zs
  248. local xx = x * xs
  249. local xy = x * ys
  250. local xz = x * zs
  251. local yy = y * ys
  252. local yz = y * zs
  253. local zz = z * zs
  254. 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))
  255. end
  256.  
  257. function QuaternionSlerp(a, b, t)
  258. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  259. local startInterp, finishInterp;
  260. if cosTheta >= 0.0001 then
  261. if (1 - cosTheta) > 0.0001 then
  262. local theta = ACOS(cosTheta)
  263. local invSinTheta = 1 / SIN(theta)
  264. startInterp = SIN((1 - t) * theta) * invSinTheta
  265. finishInterp = SIN(t * theta) * invSinTheta
  266. else
  267. startInterp = 1 - t
  268. finishInterp = t
  269. end
  270. else
  271. if (1 + cosTheta) > 0.0001 then
  272. local theta = ACOS(-cosTheta)
  273. local invSinTheta = 1 / SIN(theta)
  274. startInterp = SIN((t - 1) * theta) * invSinTheta
  275. finishInterp = SIN(t * theta) * invSinTheta
  276. else
  277. startInterp = t - 1
  278. finishInterp = t
  279. end
  280. end
  281. 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
  282. end
  283.  
  284. function Clerp(a, b, t)
  285. local qa = {QuaternionFromCFrame(a)}
  286. local qb = {QuaternionFromCFrame(b)}
  287. local ax, ay, az = a.x, a.y, a.z
  288. local bx, by, bz = b.x, b.y, b.z
  289. local _t = 1 - t
  290. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  291. end
  292.  
  293. function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
  294. local frame = IT("Frame")
  295. frame.BackgroundTransparency = TRANSPARENCY
  296. frame.BorderSizePixel = BORDERSIZEPIXEL
  297. frame.Position = POSITION
  298. frame.Size = SIZE
  299. frame.BackgroundColor3 = COLOR
  300. frame.BorderColor3 = BORDERCOLOR
  301. frame.Name = NAME
  302. frame.Parent = PARENT
  303. return frame
  304. end
  305.  
  306. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  307. local label = IT("TextLabel")
  308. label.BackgroundTransparency = 1
  309. label.Size = UD2(1, 0, 1, 0)
  310. label.Position = UD2(0, 0, 0, 0)
  311. label.TextColor3 = TEXTCOLOR
  312. label.TextStrokeTransparency = STROKETRANSPARENCY
  313. label.TextTransparency = TRANSPARENCY
  314. label.FontSize = TEXTFONTSIZE
  315. label.Font = TEXTFONT
  316. label.BorderSizePixel = BORDERSIZEPIXEL
  317. label.TextScaled = false
  318. label.Text = TEXT
  319. label.Name = NAME
  320. label.Parent = PARENT
  321. return label
  322. end
  323.  
  324. function NoOutlines(PART)
  325. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  326. end
  327.  
  328. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  329. local NEWWELD = IT(TYPE)
  330. NEWWELD.Part0 = PART0
  331. NEWWELD.Part1 = PART1
  332. NEWWELD.C0 = C0
  333. NEWWELD.C1 = C1
  334. NEWWELD.Parent = PARENT
  335. return NEWWELD
  336. end
  337.  
  338. local S = IT("Sound")
  339. function CreateSound(ID, PARENT, VOLUME, PITCH, DOESLOOP)
  340. local NEWSOUND = nil
  341. coroutine.resume(coroutine.create(function()
  342. NEWSOUND = S:Clone()
  343. NEWSOUND.Parent = PARENT
  344. NEWSOUND.Volume = VOLUME
  345. NEWSOUND.Pitch = PITCH
  346. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  347. NEWSOUND:play()
  348. if DOESLOOP == true then
  349. NEWSOUND.Looped = true
  350. else
  351. repeat wait(1) until NEWSOUND.Playing == false
  352. NEWSOUND:remove()
  353. end
  354. end))
  355. return NEWSOUND
  356. end
  357.  
  358. local EyeSizes={
  359. NumberSequenceKeypoint.new(0,2,0),
  360. NumberSequenceKeypoint.new(1,0,0)
  361. }
  362. local EyeTrans={
  363. NumberSequenceKeypoint.new(0,0.5,0),
  364. NumberSequenceKeypoint.new(1,1,0)
  365. }
  366. local PE=Instance.new("ParticleEmitter",nil)
  367. PE.LightEmission=.8
  368. PE.Color = ColorSequence.new(BRICKC("Royal purple").Color,BRICKC("Royal purple").Color)
  369. PE.Size=NumberSequence.new(EyeSizes)
  370. PE.Transparency=NumberSequence.new(EyeTrans)
  371. PE.Lifetime=NumberRange.new(0.35,1)
  372. PE.Rotation=NumberRange.new(0,360)
  373. PE.Rate=100
  374. PE.VelocitySpread = 10000
  375. PE.Acceleration = Vector3.new(0,85,0)
  376. PE.Drag = 5
  377. PE.Speed = NumberRange.new(0.1,5)
  378. PE.Texture="http://www.roblox.com/asset/?id=1460745664"
  379. PE.ZOffset = 0.5
  380. PE.Name = "PE"
  381. PE.Enabled = false
  382.  
  383. function Fire(art)
  384. local PARTICLES = PE:Clone()
  385. PARTICLES.Parent = art
  386. PARTICLES.Enabled = true
  387. return PARTICLES
  388. end
  389.  
  390. function CFrameFromTopBack(at, top, back)
  391. local right = top:Cross(back)
  392. 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)
  393. end
  394.  
  395. --WACKYEFFECT({EffectType = "", Size = VT(1,1,1), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 1, CFrame = CF(), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  396. function WACKYEFFECT(Table)
  397. local TYPE = (Table.EffectType or "Sphere")
  398. local SIZE = (Table.Size or VT(1,1,1))
  399. local ENDSIZE = (Table.Size2 or VT(0,0,0))
  400. local TRANSPARENCY = (Table.Transparency or 0)
  401. local ENDTRANSPARENCY = (Table.Transparency2 or 1)
  402. local CFRAME = (Table.CFrame or Torso.CFrame)
  403. local MOVEDIRECTION = (Table.MoveToPos or nil)
  404. local ROTATION1 = (Table.RotationX or 0)
  405. local ROTATION2 = (Table.RotationY or 0)
  406. local ROTATION3 = (Table.RotationZ or 0)
  407. local MATERIAL = (Table.Material or "Neon")
  408. local COLOR = (Table.Color or C3(1,1,1))
  409. local TIME = (Table.Time or 45)
  410. local SOUNDID = (Table.SoundID or nil)
  411. local SOUNDPITCH = (Table.SoundPitch or nil)
  412. local SOUNDVOLUME = (Table.SoundVolume or nil)
  413. coroutine.resume(coroutine.create(function()
  414. local PLAYSSOUND = false
  415. local SOUND = nil
  416. local EFFECT = CreatePart(3, Effects, MATERIAL, 0, TRANSPARENCY, BRICKC("Royal purple"), "Effect", VT(1,1,1), true)
  417. if SOUNDID ~= nil and SOUNDPITCH ~= nil and SOUNDVOLUME ~= nil then
  418. PLAYSSOUND = true
  419. SOUND = CreateSound(SOUNDID, EFFECT, SOUNDVOLUME, SOUNDPITCH, false)
  420. end
  421. EFFECT.Color = COLOR
  422. local MSH = nil
  423. if TYPE == "Sphere" then
  424. MSH = CreateMesh("SpecialMesh", EFFECT, "Sphere", "", "", SIZE, VT(0,0,0))
  425. elseif TYPE == "Block" or TYPE == "Box" then
  426. MSH = IT("BlockMesh",EFFECT)
  427. MSH.Scale = SIZE
  428. elseif TYPE == "Wave" then
  429. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "20329976", "", SIZE, VT(0,0,-SIZE.X/8))
  430. elseif TYPE == "Ring" then
  431. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "559831844", "", VT(SIZE.X,SIZE.X,0.1), VT(0,0,0))
  432. elseif TYPE == "Slash" then
  433. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662586858", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  434. elseif TYPE == "Round Slash" then
  435. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662585058", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  436. elseif TYPE == "Swirl" then
  437. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "1051557", "", SIZE, VT(0,0,0))
  438. elseif TYPE == "Skull" then
  439. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "4770583", "", SIZE, VT(0,0,0))
  440. elseif TYPE == "Crystal" then
  441. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "9756362", "", SIZE, VT(0,0,0))
  442. end
  443. if MSH ~= nil then
  444. local MOVESPEED = nil
  445. if MOVEDIRECTION ~= nil then
  446. MOVESPEED = (CFRAME.p - MOVEDIRECTION).Magnitude/TIME
  447. end
  448. local GROWTH = SIZE - ENDSIZE
  449. local TRANS = TRANSPARENCY - ENDTRANSPARENCY
  450. if TYPE == "Block" then
  451. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  452. else
  453. EFFECT.CFrame = CFRAME
  454. end
  455. for LOOP = 1, TIME+1 do
  456. Swait()
  457. MSH.Scale = MSH.Scale - GROWTH/TIME
  458. if TYPE == "Wave" then
  459. MSH.Offset = VT(0,0,-MSH.Scale.X/8)
  460. end
  461. EFFECT.Transparency = EFFECT.Transparency - TRANS/TIME
  462. if TYPE == "Block" then
  463. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  464. else
  465. EFFECT.CFrame = EFFECT.CFrame*ANGLES(RAD(ROTATION1),RAD(ROTATION2),RAD(ROTATION3))
  466. end
  467. if MOVEDIRECTION ~= nil then
  468. local ORI = EFFECT.Orientation
  469. EFFECT.CFrame = CF(EFFECT.Position,MOVEDIRECTION)*CF(0,0,-MOVESPEED)
  470. EFFECT.Orientation = ORI
  471. end
  472. end
  473. if PLAYSSOUND == false then
  474. EFFECT:remove()
  475. else
  476. repeat wait(1) until SOUND.Playing == false
  477. EFFECT:remove()
  478. end
  479. else
  480. if PLAYSSOUND == false then
  481. EFFECT:remove()
  482. else
  483. repeat Swait() until SOUND.Playing == false
  484. EFFECT:remove()
  485. end
  486. end
  487. end))
  488. end
  489.  
  490. function MakeForm(PART,TYPE)
  491. if TYPE == "Cyl" then
  492. local MSH = IT("CylinderMesh",PART)
  493. elseif TYPE == "Ball" then
  494. local MSH = IT("SpecialMesh",PART)
  495. MSH.MeshType = "Sphere"
  496. elseif TYPE == "Wedge" then
  497. local MSH = IT("SpecialMesh",PART)
  498. MSH.MeshType = "Wedge"
  499. end
  500. end
  501.  
  502. Debris = game:GetService("Debris")
  503.  
  504. function CastProperRay(StartPos, EndPos, Distance, Ignore)
  505. local DIRECTION = CF(StartPos,EndPos).lookVector
  506. return Raycast(StartPos, DIRECTION, Distance, Ignore)
  507. end
  508.  
  509. local HATWELD = nil
  510. function Pose(WhichPose,Speed,Time,Magic,Gyro,Tors)
  511. PLAYMAINANIM = false
  512. if WhichPose == "Cast1" then
  513. for i=0, Time, 0.1 / Animation_Speed do
  514. Swait()
  515. if Magic == true then
  516. WACKYEFFECT({Time = 15, EffectType = "Crystal", Size = VT(1,1,1)*1.5, Size2 = VT(0,4,0), Transparency = 0, Transparency2 = 1, CFrame = RightArm.CFrame*CF(0,-1,0)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Glass", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  517. end
  518. if Gyro ~= nil and Gyro ~= false then
  519. Gyro.cframe = CF(RootPart.Position,Mouse.Hit.p)
  520. end
  521. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(35)), Speed / Animation_Speed)
  522. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(-35)), Speed / Animation_Speed)
  523. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.65 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(125), RAD(0), RAD(45)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  524. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  525. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  526. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  527. end
  528. elseif WhichPose == "Cast2" then
  529. for i=0, Time, 0.1 / Animation_Speed do
  530. Swait()
  531. if Magic == true then
  532. WACKYEFFECT({Time = 15, EffectType = "Crystal", Size = VT(1,1,1)*1.5, Size2 = VT(0,4,0), Transparency = 0, Transparency2 = 1, CFrame = RightArm.CFrame*CF(0,-1,0)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Glass", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  533. WACKYEFFECT({Time = 15, EffectType = "Crystal", Size = VT(1,1,1)*1.5, Size2 = VT(0,4,0), Transparency = 0, Transparency2 = 1, CFrame = LeftArm.CFrame*CF(0,-1,0)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Glass", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  534. end
  535. if Gyro ~= nil and Gyro ~= false then
  536. Gyro.cframe = CF(RootPart.Position,Mouse.Hit.p)
  537. end
  538. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), Speed / Animation_Speed)
  539. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(0)), Speed / Animation_Speed)
  540. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.65 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(120), RAD(0), RAD(15)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  541. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.65 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(120), RAD(0), RAD(-15)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  542. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  543. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  544. end
  545. elseif WhichPose == "RightArmUp" then
  546. for i=0, Time, 0.1 / Animation_Speed do
  547. Swait()
  548. if Magic == true then
  549. WACKYEFFECT({Time = 15, EffectType = "Crystal", Size = VT(1,1,1)*1.5, Size2 = VT(0,4,0), Transparency = 0, Transparency2 = 1, CFrame = RightArm.CFrame*CF(0,-1,0)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Glass", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  550. end
  551. if Gyro ~= nil and Gyro ~= false then
  552. Gyro.cframe = CF(RootPart.Position,Mouse.Hit.p)
  553. end
  554. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(15)), Speed / Animation_Speed)
  555. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-5 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(-15)), Speed / Animation_Speed)
  556. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.65 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.2) * ANGLES(RAD(125), RAD(0), RAD(25)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  557. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  558. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  559. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  560. end
  561. elseif WhichPose == "Taunt" then
  562. for i=0, Time, 0.1 / Animation_Speed do
  563. Swait()
  564. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), Speed / Animation_Speed)
  565. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-5 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(0)), Speed / Animation_Speed)
  566. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(175), RAD(0), RAD(-35)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  567. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  568. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  569. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  570. end
  571. HATWELD.Part0 = RightArm
  572. HATWELD.C0 = CF(0,-1.1,-0.4) * ANGLES(RAD(0), RAD(0), RAD(180)) * ANGLES(RAD(-20), RAD(0), RAD(0))
  573. CreateSound(333446256,Torso,10,1,false)
  574. for i=0, Time*2, 0.1 / Animation_Speed do
  575. Swait()
  576. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), Speed / Animation_Speed)
  577. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(35 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(0)), Speed / Animation_Speed)
  578. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(145), RAD(0), RAD(45)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  579. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(5), RAD(25), RAD(-15)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  580. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  581. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  582. end
  583. for i=0, Time, 0.1 / Animation_Speed do
  584. Swait()
  585. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), Speed / Animation_Speed)
  586. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5), RAD(0), RAD(0)), Speed / Animation_Speed)
  587. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.35, 0.65, -0.5) * ANGLES(RAD(175), RAD(0), RAD(-35)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  588. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  589. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  590. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  591. HATWELD.C0 = Clerp(HATWELD.C0, CF(-0.5,-1.2,-0.3) * ANGLES(RAD(0), RAD(0), RAD(180)) * ANGLES(RAD(35), RAD(0), RAD(35)), Speed / Animation_Speed)
  592. end
  593. HATWELD.Part0 = Head
  594. HATWELD.C0 = CF(0,0.35,0)
  595. elseif WhichPose == "Prepare key" then
  596. for i=0, Time, 0.1 / Animation_Speed do
  597. Swait()
  598. if Gyro ~= nil and Gyro ~= false then
  599. Gyro.cframe = CF(RootPart.Position,Tors.Position)
  600. end
  601. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(65)), Speed / Animation_Speed)
  602. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(-65)), Speed / Animation_Speed)
  603. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.25) * ANGLES(RAD(90), RAD(0), RAD(65)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  604. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  605. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  606. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  607. end
  608. elseif WhichPose == "Turn key" then
  609. for i=0, Time, 0.1 / Animation_Speed do
  610. Swait()
  611. if Gyro ~= nil and Gyro ~= false then
  612. Gyro.cframe = CF(RootPart.Position,Tors.Position)
  613. end
  614. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(75)), Speed / Animation_Speed)
  615. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(-75)), Speed / Animation_Speed)
  616. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), -0.25) * ANGLES(RAD(90), RAD(0), RAD(75)) * ANGLES(RAD(0), RAD(-90), RAD(0)) * RIGHTSHOULDERC0, Speed / Animation_Speed)
  617. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, Speed / Animation_Speed)
  618. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), Speed / Animation_Speed)
  619. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), Speed / Animation_Speed)
  620. end
  621. end
  622. PLAYMAINANIM = true
  623. end
  624.  
  625. --Lightning({Color = C3(1,1,1), Start = Torso.Position, End = Mouse.Hit.p, SegmentL = 2, Thickness = 0.1, DoesFade = false, Ignore = Character, MaxDist = 400, Branches = false})
  626. function Lightning(Table)
  627. local Color = Table.Color or C3(1,1,1)
  628. local StartPos = Table.Start or Torso.Position
  629. local EndPos = Table.End or Mouse.Hit.p
  630. local SegmentLength = Table.SegmentL or 2
  631. local Thickness = Table.Thickness or 0.1
  632. local Dissapear = Table.DoesFade or false
  633. local Parent = Table.Ignore or Character
  634. local MaxDist = Table.MaxDist or 400
  635. local Branches = Table.Branches or false
  636. local HIT,HITPOS = CastProperRay(StartPos, EndPos, MaxDist, Parent)
  637. local DISTANCE = math.ceil((StartPos - HITPOS).Magnitude/SegmentLength)
  638. local LIGHTNINGMODEL = IT("Model",Effects)
  639. LIGHTNINGMODEL.Name = "Lightning"
  640. local LastBolt = nil
  641. for E = 1, DISTANCE do
  642. local ExtraSize = (DISTANCE-E)/15
  643. local PART = CreatePart(3, LIGHTNINGMODEL, "Neon", 0, 0, BRICKC("Royal purple"), "LightningPart"..E, VT(Thickness+ExtraSize,SegmentLength,Thickness+ExtraSize))
  644. PART.Color = Color
  645. MakeForm(PART,"Cyl")
  646. if LastBolt == nil then
  647. PART.CFrame = CF(StartPos,HITPOS)*ANGLES(RAD(90),RAD(0),RAD(0))*CF(0,-PART.Size.Y/2,0)
  648. else
  649. PART.CFrame = CF(LastBolt.CFrame*CF(0,-LastBolt.Size.Y/2,0).p,CF(HITPOS)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,SegmentLength/3+(DISTANCE-E)).p)*ANGLES(RAD(90),RAD(0),RAD(0))*CF(0,-PART.Size.Y/2,0)
  650. end
  651. LastBolt = PART
  652. if Branches == true then
  653. local CHOICE = MRANDOM(1,7+((DISTANCE-E)*2))
  654. if CHOICE == 1 then
  655. local LASTBRANCH = nil
  656. for i = 1, MRANDOM(2,5) do
  657. local ExtraSize2 = ((DISTANCE-E)/25)/i
  658. local PART = CreatePart(3, LIGHTNINGMODEL, "Neon", 0, 0, BRICKC("Royal purple"), "Branch"..E.."-"..i, VT(Thickness+ExtraSize2,SegmentLength,Thickness+ExtraSize2))
  659. PART.Color = Color
  660. MakeForm(PART,"Cyl")
  661. if LASTBRANCH == nil then
  662. PART.CFrame = CF(LastBolt.CFrame*CF(0,-LastBolt.Size.Y/2,0).p,LastBolt.CFrame*CF(0,-LastBolt.Size.Y/2,0)*ANGLES(RAD(0),RAD(0),RAD(MRANDOM(0,360)))*CF(0,Thickness*7,0)*CF(0,0,-1).p)*ANGLES(RAD(90),RAD(0),RAD(0))*CF(0,-PART.Size.Y/2,0)
  663. else
  664. PART.CFrame = CF(LASTBRANCH.CFrame*CF(0,-LASTBRANCH.Size.Y/2,0).p,LASTBRANCH.CFrame*CF(0,-LASTBRANCH.Size.Y/2,0)*ANGLES(RAD(0),RAD(0),RAD(MRANDOM(0,360)))*CF(0,Thickness*3,0)*CF(0,0,-1).p)*ANGLES(RAD(90),RAD(0),RAD(0))*CF(0,-PART.Size.Y/2,0)
  665. end
  666. LASTBRANCH = PART
  667. end
  668. end
  669. end
  670. end
  671. if Dissapear == true then
  672. coroutine.resume(coroutine.create(function()
  673. for i = 1, 10 do
  674. Swait()
  675. for _, c in pairs(LIGHTNINGMODEL:GetChildren()) do
  676. if c.ClassName == "Part" then
  677. c.Transparency = i/10
  678. end
  679. end
  680. end
  681. LIGHTNINGMODEL:remove()
  682. end))
  683. elseif Dissapear == false then
  684. Debris:AddItem(LIGHTNINGMODEL,0.1)
  685. end
  686. return {End = LastBolt.CFrame*CF(0,0,-LastBolt.Size.Z/2).p,LastBolt = LastBolt,Model = LIGHTNINGMODEL}
  687. end
  688.  
  689. --//=================================\\
  690. --|| WEAPON CREATION
  691. --\\=================================//
  692.  
  693. for i = 1, 15 do
  694. local FACE = CreatePart(3, Character, "Fabric", 0, 0+(i-1)/15.2, "Dark stone grey", "FaceGradient", VT(1.01,0.58,1.01),false)
  695. FACE.Color = C3(0,0,0)
  696. Head:FindFirstChildOfClass("SpecialMesh"):Clone().Parent = FACE
  697. CreateWeldOrSnapOrMotor("Weld", Head, Head, FACE, CF(0,0.35-(i-1)/35,0), CF(0, 0, 0))
  698. end
  699. local HAT1 = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(2,0.2,2),false)
  700. MakeForm(HAT1,"Cyl")
  701. HATWELD = CreateWeldOrSnapOrMotor("Weld", Head, Head, HAT1, CF(0,0.35,0), CF(0, 0, 0))
  702. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(2.01,0.15,2.01),false)
  703. BELT.Color = C3(15/255,15/255,15/255)
  704. MakeForm(BELT,"Cyl")
  705. CreateWeldOrSnapOrMotor("Weld", HAT1, HAT1, BELT, CF(0,0,0), CF(0, 0, 0))
  706. local HAT2 = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.3,2.2,1.3),false)
  707. MakeForm(HAT2,"Cyl")
  708. CreateWeldOrSnapOrMotor("Weld", HAT1, HAT1, HAT2, CF(0,1.1,0), CF(0, 0, 0))
  709. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.31,0.2,1.31),false)
  710. BELT.Color = C3(15/255,15/255,15/255)
  711. MakeForm(BELT,"Cyl")
  712. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, BELT, CF(0,0,0), CF(0, 0, 0))
  713. local GEM = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "Gem", VT(0.25,0.25,0.1),false)
  714. MakeForm(GEM,"Ball")
  715. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, GEM, CF(0,0,-BELT.Size.X/2), CF(0, 0, 0))
  716. local GEM = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "Gem", VT(0.25,0.25,0.1),false)
  717. MakeForm(GEM,"Ball")
  718. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, GEM, CF(0,0,BELT.Size.X/2), CF(0, 0, 0))
  719. local GEM = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "Gem", VT(0.1,0.25,0.25),false)
  720. MakeForm(GEM,"Ball")
  721. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, GEM, CF(-BELT.Size.X/2,0,0), CF(0, 0, 0))
  722. local GEM = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "Gem", VT(0.1,0.25,0.25),false)
  723. MakeForm(GEM,"Ball")
  724. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, GEM, CF(BELT.Size.X/2,0,0), CF(0, 0, 0))
  725. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.31,0.1,1.31),false)
  726. BELT.Color = C3(15/255,15/255,15/255)
  727. MakeForm(BELT,"Cyl")
  728. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, BELT, CF(0,0.7,0), CF(0, 0, 0))
  729. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.31,0.1,1.31),false)
  730. BELT.Color = C3(15/255,15/255,15/255)
  731. MakeForm(BELT,"Cyl")
  732. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, BELT, CF(0,-0.7,0), CF(0, 0, 0))
  733. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.31,0.1,1.31),false)
  734. BELT.Color = C3(15/255,15/255,15/255)
  735. MakeForm(BELT,"Cyl")
  736. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, BELT, CF(0,0.35,0), CF(0, 0, 0))
  737. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.31,0.1,1.31),false)
  738. BELT.Color = C3(15/255,15/255,15/255)
  739. MakeForm(BELT,"Cyl")
  740. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, BELT, CF(0,-0.35,0), CF(0, 0, 0))
  741. local BELT = CreatePart(3, Character, "SmoothPlastic", 0, 0, "Really black", "Hat", VT(1.3,0.5,1.3),false)
  742. MakeForm(BELT,"Ball")
  743. CreateWeldOrSnapOrMotor("Weld", HAT2, HAT2, BELT, CF(0,HAT2.Size.Y/2,0), CF(0, 0, 0))
  744. Humanoid.DisplayDistanceType = "None"
  745. local naeeym2 = IT("BillboardGui",Character)
  746. naeeym2.AlwaysOnTop = true
  747. naeeym2.Size = UDim2.new(5,35,2,15)
  748. naeeym2.StudsOffset = Vector3.new(0,3,0)
  749. naeeym2.MaxDistance = 75
  750. naeeym2.Adornee = Character.Head
  751. naeeym2.Name = "Name"
  752. local tecks2 = IT("TextLabel",naeeym2)
  753. tecks2.BackgroundTransparency = 1
  754. tecks2.TextScaled = true
  755. tecks2.BorderSizePixel = 0
  756. tecks2.Text = "The"
  757. tecks2.Font = "Bodoni"
  758. tecks2.TextSize = 30
  759. tecks2.TextStrokeTransparency = 0.5
  760. tecks2.TextColor3 = C3(0,0,0)
  761. tecks2.TextStrokeColor3 = BRICKC"Royal purple".Color
  762. tecks2.Size = UDim2.new(1,0,0.5,0)
  763. tecks2.Parent = naeeym2
  764. local naeeym3 = IT("BillboardGui",Character)
  765. naeeym3.AlwaysOnTop = true
  766. naeeym3.Size = UDim2.new(5,35,2,15)
  767. naeeym3.StudsOffset = Vector3.new(0,2.25,0)
  768. naeeym3.MaxDistance = 75
  769. naeeym3.Adornee = Character.Head
  770. naeeym3.Name = "Name"
  771. local tecks3 = IT("TextLabel",naeeym3)
  772. tecks3.BackgroundTransparency = 1
  773. tecks3.TextScaled = true
  774. tecks3.BorderSizePixel = 0
  775. tecks3.Text = "Corruptor"
  776. tecks3.Font = "Bodoni"
  777. tecks3.TextSize = 30
  778. tecks3.TextStrokeTransparency = 0.5
  779. tecks3.TextColor3 = C3(0,0,0)
  780. tecks3.TextStrokeColor3 = BRICKC"Royal purple".Color
  781. tecks3.Size = UDim2.new(1,0,0.5,0)
  782. tecks3.Parent = naeeym3
  783. local EYE = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "FaceGradient", VT(0.6,0.1,1)/2,false)
  784. MakeForm(EYE,"Ball")
  785. CreateWeldOrSnapOrMotor("Weld", Head, Head, EYE, CF(0,0.2,0) * ANGLES(RAD(0), RAD(-18), RAD(15)), CF(0, 0, 0.4))
  786. local EYE = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "FaceGradient", VT(0.6,0.1,1)/2,false)
  787. MakeForm(EYE,"Ball")
  788. CreateWeldOrSnapOrMotor("Weld", Head, Head, EYE, CF(0,0.2,0) * ANGLES(RAD(0), RAD(18), RAD(-15)), CF(0, 0, 0.4))
  789. local EYE = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "FaceGradient", VT(0.1,1,1)/2,false)
  790. MakeForm(EYE,"Ball")
  791. CreateWeldOrSnapOrMotor("Weld", Head, Head, EYE, CF(0,0.15,0) * ANGLES(RAD(0), RAD(-18), RAD(0)), CF(0, 0, 0.4))
  792. local EYE = CreatePart(3, Character, "Neon", 0, 0, "Royal purple", "FaceGradient", VT(0.1,1,1)/2,false)
  793. MakeForm(EYE,"Ball")
  794. CreateWeldOrSnapOrMotor("Weld", Head, Head, EYE, CF(0,0.15,0) * ANGLES(RAD(0), RAD(18), RAD(0)), CF(0, 0, 0.4))
  795.  
  796. local top = Instance.new("Shirt")
  797. top.ShirtTemplate = "rbxassetid://732361529"
  798. top.Parent = Character
  799. top.Name = "Cloth"
  800. local bottom = Instance.new("Pants")
  801. bottom.PantsTemplate = "rbxassetid://593330484"
  802. bottom.Parent = Character
  803. bottom.Name = "Cloth"
  804. for _, c in pairs(Character:GetChildren()) do
  805. if c.ClassName == "Part" and c.Name ~= "FaceGradient" and c.Name ~= "Hat" and c.Name ~= "Gem" then
  806. c.Material = "Neon"
  807. if c:FindFirstChildOfClass("ParticleEmitter") then
  808. c:FindFirstChildOfClass("ParticleEmitter"):remove()
  809. end
  810. c.Color = C3(1,1,1)
  811. if c == Head then
  812. if c:FindFirstChild("face") then
  813. c.face:remove()
  814. end
  815. end
  816. elseif c.ClassName == "CharacterMesh" or c.ClassName == "Accessory" or c.ClassName == "Hat" or c.Name == "Body Colors" then
  817. c:remove()
  818. elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
  819. c:remove()
  820. end
  821. end
  822. local BODY = {}
  823. for _, c in pairs(Character:GetDescendants()) do
  824. if c:IsA("BasePart") and c.Name ~= "Handle" then
  825. if c ~= RootPart and c ~= Torso and c ~= Head and c ~= RightArm and c ~= LeftArm and c ~= RightLeg and c ~= LeftLeg then
  826. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  827. end
  828. table.insert(BODY,{c,c.Parent,c.Material,c.Color,c.Transparency})
  829. elseif c:IsA("JointInstance") then
  830. table.insert(BODY,{c,c.Parent,nil,nil,nil})
  831. end
  832. end
  833. for e = 1, #BODY do
  834. if BODY[e] ~= nil then
  835. local STUFF = BODY[e]
  836. local PART = STUFF[1]
  837. local PARENT = STUFF[2]
  838. local MATERIAL = STUFF[3]
  839. local COLOR = STUFF[4]
  840. local TRANSPARENCY = STUFF[5]
  841. if PART.ClassName == "Part" and PART ~= RootPart then
  842. PART.Material = MATERIAL
  843. PART.Color = COLOR
  844. PART.Transparency = TRANSPARENCY
  845. end
  846. PART.AncestryChanged:Connect(function()
  847. PART.Parent = PARENT
  848. end)
  849. end
  850. end
  851. function refit()
  852. Character.Parent = workspace
  853. for e = 1, #BODY do
  854. if BODY[e] ~= nil then
  855. local STUFF = BODY[e]
  856. local PART = STUFF[1]
  857. local PARENT = STUFF[2]
  858. local MATERIAL = STUFF[3]
  859. local COLOR = STUFF[4]
  860. local TRANSPARENCY = STUFF[5]
  861. if PART.ClassName == "Part" and PART ~= RootPart then
  862. PART.Material = MATERIAL
  863. PART.Color = COLOR
  864. PART.Transparency = TRANSPARENCY
  865. end
  866. if PART.Parent ~= PARENT then
  867. Humanoid:remove()
  868. PART.Parent = PARENT
  869. Humanoid = IT("Humanoid",Character)
  870. end
  871. end
  872. end
  873. end
  874. local SKILLTEXTCOLOR = BRICKC"Royal purple".Color
  875. local SKILLFONT = "Bodoni"
  876. local SKILLTEXTSIZE = 7
  877.  
  878. Humanoid.Died:connect(function()
  879. refit()
  880. end)
  881.  
  882. local SKILL1FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.23, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 1 Frame")
  883. local SKILL2FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.50, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 2 Frame")
  884. local SKILL3FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.23, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 3 Frame")
  885. local SKILL4FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.50, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 4 Frame")
  886. local SKILL5FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.23, 0, 0.70, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 5 Frame")
  887. local SKILL6FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.50, 0, 0.70, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 5 Frame")
  888. local SKILL7FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.365, 0, 0.60, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 5 Frame")
  889.  
  890. local SKILL1TEXT = CreateLabel(SKILL1FRAME, "[Z] Corrupt Zap", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 1")
  891. local SKILL2TEXT = CreateLabel(SKILL2FRAME, "[B] True Thunder", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 2")
  892. local SKILL3TEXT = CreateLabel(SKILL3FRAME, "[C] Corruption Ring", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 3")
  893. local SKILL4TEXT = CreateLabel(SKILL4FRAME, "[X] To the abyss", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 4")
  894. local SKILL5TEXT = CreateLabel(SKILL5FRAME, "[V] Void Wall", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 5")
  895. local SKILL6TEXT = CreateLabel(SKILL6FRAME, "[P] Explosion Of Corruption", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 5")
  896. local SKILL7TEXT = CreateLabel(SKILL7FRAME, "[T] Tip your hat the like gentleman you are", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 4")
  897.  
  898.  
  899. --//=================================\\
  900. --|| DAMAGING
  901. --\\=================================//
  902.  
  903. function ApplyAoE(POSITION,RANGE,FLING,BURN)
  904. local CHILDREN = workspace:GetDescendants()
  905. for index, CHILD in pairs(CHILDREN) do
  906. if CHILD.ClassName == "Model" and CHILD ~= Character then
  907. local HUM = CHILD:FindFirstChildOfClass("Humanoid")
  908. if HUM then
  909. local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
  910. if TORSO then
  911. if HUM.Health > 0 and (TORSO.Position - POSITION).Magnitude <= RANGE then
  912. CHILD:BreakJoints()
  913. if FLING ~= 0 then
  914. for _, c in pairs(CHILD:GetChildren()) do
  915. if c:IsA("BasePart") and c.Transparency == 0 then
  916. if BURN == true then
  917. Fire(c)
  918. end
  919. local bv = Instance.new("BodyVelocity")
  920. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  921. bv.velocity = CF(POSITION,TORSO.Position).lookVector*FLING
  922. bv.Parent = c
  923. Debris:AddItem(bv,0.05)
  924. end
  925. end
  926. end
  927. end
  928. end
  929. end
  930. end
  931. end
  932. end
  933.  
  934. --//=================================\\
  935. --|| ATTACK FUNCTIONS AND STUFF
  936. --\\=================================//
  937.  
  938. function Warden_Zap()
  939. ATTACK = true
  940. Rooted = false
  941. local GYRO = IT("BodyGyro",RootPart)
  942. GYRO.D = 750
  943. GYRO.P = 20000
  944. GYRO.MaxTorque = VT(0,40000000,0)
  945. CreateSound(348663022,RightArm,1.5,2,false)
  946. Pose("Cast1",0.8,1,true,GYRO)
  947. local LightningTable = Lightning({Color = SKILLTEXTCOLOR, Start = RightArm.CFrame*CF(0,-1,0).p, End = Mouse.Hit.p, SegmentL = 2, Thickness = 0.2, DoesFade = true, Ignore = Character, MaxDist = 100, Branches = false})
  948. local Hitpos = LightningTable.End
  949. ApplyAoE(Hitpos,10,35)
  950. WACKYEFFECT({Time = 15, EffectType = "Sphere", Size = VT(1,1,1), Size2 = VT(1,1,1)*15, Transparency = 0, Transparency2 = 1, CFrame = CF(Hitpos)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = BOLTSOUNDS[MRANDOM(1,#BOLTSOUNDS)], SoundPitch = MRANDOM(8,12)/10, SoundVolume = 5})
  951. for i = 1, 4 do
  952. WACKYEFFECT({Time = 15, EffectType = "Sphere", Size = VT(1,1,1), Size2 = VT(0,45,0), Transparency = 0, Transparency2 = 1, CFrame = CF(Hitpos)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  953. end
  954. Pose("Cast1",0.8,1,true)
  955. GYRO:remove()
  956. ATTACK = false
  957. Rooted = false
  958. end
  959.  
  960. function Warden_Thunder()
  961. ATTACK = true
  962. Rooted = false
  963. local GYRO = IT("BodyGyro",RootPart)
  964. GYRO.D = 750
  965. GYRO.P = 20000
  966. GYRO.MaxTorque = VT(0,40000000,0)
  967. CreateSound(469345336,Torso,3,2,false)
  968. Pose("Cast2",1.5,2,true,GYRO)
  969. coroutine.resume(coroutine.create(function()
  970. local FRAME = RootPart.CFrame
  971. for i = 1, 25 do
  972. local POS = FRAME*CF(MRANDOM(-17,17),0,-i*15)
  973. local LightningTable = Lightning({Color = SKILLTEXTCOLOR, Start = POS*CF(0,85,0).p, End = POS*CF(0,-15,0).p, SegmentL = 3, Thickness = 0.4, DoesFade = true, Ignore = Character, MaxDist = 400, Branches = true})
  974. local Hitpos = LightningTable.End
  975. ApplyAoE(Hitpos,20,15)
  976. WACKYEFFECT({Time = 15, EffectType = "Sphere", Size = VT(1,1,1), Size2 = VT(1,1,1)*15, Transparency = 0, Transparency2 = 1, CFrame = CF(Hitpos)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = BOLTSOUNDS[MRANDOM(1,#BOLTSOUNDS)], SoundPitch = MRANDOM(8,12)/10, SoundVolume = 5})
  977. for i = 1, 4 do
  978. WACKYEFFECT({Time = 15, EffectType = "Sphere", Size = VT(1,1,1), Size2 = VT(0,75,0), Transparency = 0, Transparency2 = 1, CFrame = CF(Hitpos)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  979. end
  980. wait(0.05)
  981. end
  982. end))
  983. Pose("Cast2",1.5,0.7,true)
  984. GYRO:remove()
  985. ATTACK = false
  986. Rooted = false
  987. end
  988.  
  989. function Inferno_Ring()
  990. ATTACK = true
  991. Rooted = false
  992. local GYRO = IT("BodyGyro",RootPart)
  993. GYRO.D = 750
  994. GYRO.P = 20000
  995. GYRO.MaxTorque = VT(0,40000000,0)
  996. local FIRE = IT("Model",Effects)
  997. FIRE.Name = "Fire"
  998. local MAIN = CreatePart(3, FIRE, "Neon", 0, 1, "Deep orange", "Center", VT(2,2,2))
  999. FIRE.PrimaryPart = MAIN
  1000. local FIRES = {}
  1001. for i = 1, 45 do
  1002. local PRT = CreatePart(3, FIRE, "Neon", 0, 1, "Deep orange", "RingPart", VT(12,12,12))
  1003. PRT.CFrame = MAIN.CFrame*ANGLES(RAD(0),RAD((360/45)*i),RAD(0))*CF(0,0,20)
  1004. local F = Fire(PRT)
  1005. table.insert(FIRES,F)
  1006. end
  1007. repeat
  1008. FIRE:SetPrimaryPartCFrame(CF(Mouse.Hit.p))
  1009. Pose("Cast1",1.5,0.01,false,GYRO)
  1010. until HOLD == true
  1011. coroutine.resume(coroutine.create(function()
  1012. for i = 1, 4 do
  1013. ApplyAoE(MAIN.Position,21,-15,true)
  1014. CreateSound(463598785,MAIN,3,1,false)
  1015. for E = 1, #FIRES do
  1016. if FIRES[E] ~= nil then
  1017. FIRES[E].Acceleration = VT(0,300,0)
  1018. FIRES[E].Lifetime=NumberRange.new(0.35,1.5)
  1019. end
  1020. end
  1021. wait(0.3)
  1022. end
  1023. for E = 1, #FIRES do
  1024. if FIRES[E] ~= nil then
  1025. FIRES[E].Enabled = false
  1026. end
  1027. end
  1028. Debris:AddItem(FIRE,5)
  1029. end))
  1030. CreateSound(215395388,RightArm,3,2,false)
  1031. Pose("RightArmUp",1.5,0.5,true)
  1032. GYRO:remove()
  1033. ATTACK = false
  1034. Rooted = false
  1035. end
  1036.  
  1037. function Warden_Wall()
  1038. local HITFLOOR = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 8, Character)
  1039. if HITFLOOR ~= nil then
  1040. if HITFLOOR.Anchored == true then
  1041. local WALL = HITFLOOR:Clone()
  1042. WALL.Size = VT(90,90,10)
  1043. WALL.Parent = Effects
  1044. WALL.Name = "Wall"
  1045. WALL.CFrame = RootPart.CFrame*CF(0,-65/2.1,-5)*ANGLES(RAD(-15),RAD(0),RAD(0))
  1046. CreateSound(130972023,WALL,5,0.8,false)
  1047. ATTACK = true
  1048. Rooted = true
  1049. coroutine.resume(coroutine.create(function()
  1050. WACKYEFFECT({Time = 35, EffectType = "Box", Size = WALL.Size, Size2 = WALL.Size*2, Transparency = 0, Transparency2 = 1, CFrame = WALL.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  1051. for i = 1, 90 do
  1052. Swait()
  1053. WALL.CFrame = WALL.CFrame*CF(0,0.5,0)
  1054. end
  1055. wait(5)
  1056. for i = 1, 46 do
  1057. Swait()
  1058. WALL.CFrame = WALL.CFrame*CF(0,-1,0)
  1059. end
  1060. WALL:remove()
  1061. end))
  1062. Pose("RightArmUp",1.5,1.2,true)
  1063. ATTACK = false
  1064. Rooted = false
  1065. end
  1066. end
  1067. end
  1068.  
  1069. function Prison_Key()
  1070. if Mouse.Target ~= nil then
  1071. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  1072. local HUM = Mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1073. local TORSO = HUM.Parent:FindFirstChild("Torso") or HUM.Parent:FindFirstChild("UpperTorso")
  1074. local GYRO = IT("BodyGyro",RootPart)
  1075. GYRO.D = 750
  1076. GYRO.P = 20000
  1077. GYRO.MaxTorque = VT(0,40000000,0)
  1078. local grav = Instance.new("BodyPosition",TORSO)
  1079. grav.D = 15
  1080. grav.P = 20000
  1081. grav.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1082. grav.position = TORSO.Position
  1083. local GYRO2 = IT("BodyGyro",TORSO)
  1084. GYRO2.D = 750
  1085. GYRO2.P = 20000
  1086. GYRO2.MaxTorque = VT(0,40000000,0)
  1087. GYRO2.cframe = CF(TORSO.Position,RootPart.Position)
  1088. grav.Name = "Jail"
  1089. local LOCKPARTS = {}
  1090. ATTACK = true
  1091. Rooted = false
  1092. local LOCK = IT("Model",Effects)
  1093. LOCK.Name = "Lock"
  1094. local LOCK2 = IT("Model",LOCK)
  1095. LOCK2.Name = "Metal"
  1096. --CREATE LOCK--
  1097. local BASE = CreatePart(3, LOCK, "Glass", 0, 0, "Really black", "Keylock", VT(3, 2.5, 1))
  1098. LOCK.PrimaryPart = BASE
  1099. BASE.CFrame = CF(TORSO.Position,RootPart.Position)*CF(0,0,-4)
  1100. local PRT = CreatePart(3, LOCK, "Glass", 0, 0, "Really black", "Keylock", VT(3, 1, 3))
  1101. PRT.CFrame = BASE.CFrame*CF(0,-1.25,0)*ANGLES(RAD(90),RAD(0),RAD(0))
  1102. MakeForm(PRT,"Cyl")
  1103. local PRT = CreatePart(3, LOCK, "Glass", 0, 0, "White", "Hole", VT(1, 1, 1))
  1104. PRT.Color = C3(0,0,0)
  1105. PRT.CFrame = BASE.CFrame*CF(0,0.3,-0.01)*ANGLES(RAD(90),RAD(0),RAD(0))
  1106. MakeForm(PRT,"Cyl")
  1107. local PRT = CreatePart(3, LOCK, "Glass", 0, 0, "White", "Hole", VT(0.5, 1, 1))
  1108. PRT.Color = C3(0,0,0)
  1109. PRT.CFrame = BASE.CFrame*CF(0,-0.2,-0.01)
  1110. for i = 1, 45 do
  1111. local PRT = CreatePart(3, LOCK2, "Glass", 0, 0, "Royal purple", "Keylock", VT(0.5, 0.5, 0.5))
  1112. PRT.CFrame = BASE.CFrame*CF(0,2,0)*ANGLES(RAD(0),RAD(0),RAD(-90+(360/90*i)))*CF(0,1,0)
  1113. end
  1114. local PRT = CreatePart(3, LOCK2, "Glass", 0, 0, "Royal purple", "Keylock", VT(0.5, 0.5, 0.5))
  1115. PRT.CFrame = BASE.CFrame*CF(0,1.5,0)*ANGLES(RAD(0),RAD(0),RAD(90))*CF(0,1,0)
  1116. LOCK2.PrimaryPart = PRT
  1117. ---------------
  1118. local CHILDREN = LOCK:GetDescendants()
  1119. for index, CHILD in pairs(CHILDREN) do
  1120. if CHILD:IsA("BasePart") then
  1121. CHILD.Transparency = 1
  1122. end
  1123. end
  1124. for i = 1, 75 do
  1125. LOCK:SetPrimaryPartCFrame(CF(TORSO.Position,RootPart.Position)*CF(0,0,-4))
  1126. Swait()
  1127. GYRO2.cframe = CF(TORSO.Position,RootPart.Position)
  1128. GYRO.cframe = CF(RootPart.Position,TORSO.Position)
  1129. local CHILDREN = LOCK:GetDescendants()
  1130. for index, CHILD in pairs(CHILDREN) do
  1131. if CHILD:IsA("BasePart") then
  1132. CHILD.Transparency = CHILD.Transparency - 1/75
  1133. end
  1134. end
  1135. end
  1136. HUM.DisplayDistanceType = "None"
  1137. local KEY = IT("Model",Effects)
  1138. KEY.Name = "Key"
  1139. --CREATE KEY--
  1140. local KBASE = CreatePart(3, KEY, "Neon", 0, 0, "Royal purple", "KeyBase", VT(0.1, 1, 0.1),false)
  1141. KEY.PrimaryPart = KBASE
  1142. KBASE.CFrame = RightArm.CFrame*CF(0,-2.1,0)*ANGLES(RAD(0),RAD(90),RAD(0))
  1143. local WLD = weldBetween(RightArm,KBASE)
  1144. for i = 1, 45 do
  1145. local PRT = CreatePart(3, KEY, "Neon", 0, 0, "Royal purple", "Key", VT(0.1, 0.1, 0.1),false)
  1146. PRT.CFrame = KBASE.CFrame*CF(0,0.8,0)*ANGLES(RAD(0),RAD(0),RAD((360/45*i)))*CF(0,0.25,0)
  1147. weldBetween(KBASE,PRT)
  1148. end
  1149. local PRT = CreatePart(3, KEY, "Neon", 0, 0, "Royal purple", "Key", VT(0.3, 0.1, 0.1),false)
  1150. PRT.CFrame = KBASE.CFrame*CF(-0.15,-0.45,0)
  1151. weldBetween(KBASE,PRT)
  1152. local PRT = CreatePart(3, KEY, "Neon", 0, 0, "Royal purple", "Key", VT(0.3, 0.1, 0.1),false)
  1153. PRT.CFrame = KBASE.CFrame*CF(-0.15,-0.25,0)
  1154. weldBetween(KBASE,PRT)
  1155. --------------
  1156. Rooted = true
  1157. Pose("Prepare key",1.5,1.2,false,GYRO,TORSO)
  1158. coroutine.resume(coroutine.create(function()
  1159. for i = 1, 10 do
  1160. Swait()
  1161. GYRO2.cframe = CF(TORSO.Position,RootPart.Position)
  1162. GYRO.cframe = CF(RootPart.Position,TORSO.Position)
  1163. end
  1164. CreateSound(1149318312,BASE,5,1,false)
  1165. CreateSound(160772554,BASE,3,1,false)
  1166. LOCK2:SetPrimaryPartCFrame(BASE.CFrame*CF(0,0.8,0)*ANGLES(RAD(0),RAD(0),RAD(90))*CF(0,1,0))
  1167. for i = 1, 4 do
  1168. WACKYEFFECT({Time = 35, EffectType = "Crystal", Size = VT(1,1,1), Size2 = VT(0,15,0), Transparency = 0, Transparency2 = 1, CFrame = BASE.CFrame*CF(1,1.45,0)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  1169. end
  1170. WACKYEFFECT({Time = 35, EffectType = "Sphere", Size = VT(0,0,0), Size2 = VT(1,1,1)*25, Transparency = 0, Transparency2 = 1, CFrame = TORSO.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = 5})
  1171. wait(1)
  1172. TORSO.Parent.Parent = LOCK
  1173. for i = 1, 75 do
  1174. Swait()
  1175. local CHILDREN = KEY:GetDescendants()
  1176. for index, CHILD in pairs(CHILDREN) do
  1177. if CHILD:IsA("BasePart") then
  1178. CHILD.Transparency = i/25
  1179. end
  1180. end
  1181. local CHILDREN = LOCK:GetDescendants()
  1182. for index, CHILD in pairs(CHILDREN) do
  1183. if CHILD:IsA("BasePart") and CHILD.Name ~= "HumanoidRootPart" then
  1184. CHILD.Transparency = CHILD.Transparency + 1/75
  1185. elseif CHILD.ClassName == "Decal" then
  1186. CHILD.Transparency = CHILD.Transparency + 1/75
  1187. end
  1188. end
  1189. end
  1190. TORSO.Parent:ClearAllChildren()
  1191. KEY:remove()
  1192. LOCK:remove()
  1193. end))
  1194. Pose("Turn key",0.8,1.2,false,GYRO,TORSO)
  1195. GYRO:remove()
  1196. ATTACK = false
  1197. Rooted = false
  1198. end
  1199. end
  1200. end
  1201.  
  1202. function Hat()
  1203. ATTACK = true
  1204. Rooted = false
  1205. Pose("Taunt",0.4,1.2,false)
  1206. ATTACK = false
  1207. Rooted = false
  1208. end
  1209.  
  1210. function SearingOrb()
  1211. ATTACK = true
  1212. Rooted = true
  1213. local POSITION = IT("BodyPosition",RootPart)
  1214. POSITION.Position = RootPart.Position+VT(0,2,0)
  1215. POSITION.D = 450
  1216. POSITION.P = 40000
  1217. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1218. CreateSound(CHARGE,Torso,6,1,false)
  1219. local NEWANIM = false
  1220. coroutine.resume(coroutine.create(function()
  1221. repeat
  1222. Swait()
  1223. 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)
  1224. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-25 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1225. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, 0) * ANGLES(RAD(170), RAD(0), RAD(-12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  1226. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.75, 0) * ANGLES(RAD(170), RAD(0), RAD(12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  1227. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1228. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1229. until ATTACK == false or NEWANIM == true
  1230. if NEWANIM == true then
  1231. local GYRO = IT("BodyGyro",RootPart)
  1232. GYRO.D = 20
  1233. GYRO.P = 4000
  1234. GYRO.MaxTorque = VT(40000,40000,40000)
  1235. repeat
  1236. Swait()
  1237. GYRO.CFrame = CF(RootPart.Position,Mouse.Hit.p)
  1238. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(24)), 2 / Animation_Speed)
  1239. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(-24)), 1 / Animation_Speed)
  1240. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, -0.3) * ANGLES(RAD(90), RAD(0), RAD(24)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  1241. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.45, 0.75, 0) * ANGLES(RAD(-25), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  1242. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(75), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  1243. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  1244. until ATTACK == false
  1245. GYRO:remove()
  1246. end
  1247. POSITION:remove()
  1248. end))
  1249. local ORB = CreatePart(3, Effects, "Neon", 0, 0, BRICKC("Royal purple"), "Orb", VT(0,0,0), true)
  1250. MakeForm(ORB,"Ball")
  1251. ORB.CFrame = CF(RootPart.Position+VT(0,8,0))
  1252. local A = IT("Attachment",ORB)
  1253. local LOOP = 0
  1254. for i = 1, 500 do
  1255. Swait()
  1256. LOOP = LOOP + 1
  1257. if LOOP >= 30 then
  1258. LOOP = 0
  1259. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(ORB.Size.X,ORB.Size.X/5,ORB.Size.X), Transparency = 0, Transparency2 = 1, CFrame = CF(RootPart.Position-VT(0,3.5,0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  1260. end
  1261. ORB.Size = ORB.Size + VT(0.2,0.2,0.2)
  1262. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  1263. end
  1264. wait(1)
  1265. if KEYHOLD == false then
  1266. coroutine.resume(coroutine.create(function()
  1267. ORB.Transparency = 1
  1268. Debris:AddItem(ORB,10)
  1269. ApplyAoE(ORB.Position,400,75,90,175,true,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  1270. CreateSound(EXPLOSIONLARGESOUND,ORB,10,1,false)
  1271. CreateSound(EXPLOSIONSMALLSOUND,ORB,10,1,false)
  1272. for i = 1, 3 do
  1273. WACKYEFFECT({Time = 40, EffectType = "Sphere", Size = VT(50,50,50), Size2 = VT(MRANDOM(600,700),MRANDOM(600,700),MRANDOM(600,700)), Transparency = 0, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Royal purple".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  1274. end
  1275. for i = 1, 3 do
  1276. WACKYEFFECT({Time = 60, EffectType = "Sphere", Size = VT(50,50,50), Size2 = VT(MRANDOM(600,700),MRANDOM(600,700),MRANDOM(600,700)), Transparency = 0, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Dark red".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  1277. end
  1278. for i = 1, 15 do
  1279. WACKYEFFECT({Time = 40+(i*5), EffectType = "Ring", Size = VT(0,0,0), Size2 = VT(70,70,0), Transparency = 0.8, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = MRANDOM(-15,15)/15, RotationY = MRANDOM(-15,15)/15, RotationZ = MRANDOM(-15,15)/15, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  1280. end
  1281. end))
  1282. else
  1283. for i = 1, 100 do
  1284. Swait()
  1285. ORB.Size = ORB.Size - VT(0.2,0.2,0.2)*5
  1286. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  1287. end
  1288. ORB.Transparency = 1
  1289. Debris:AddItem(ORB,10)
  1290. CreateSound(EXPLOSIONSMALLSOUND,Torso,10,1,false)
  1291. for _, c in pairs(Character:GetChildren()) do
  1292. if c:IsA("BasePart") then
  1293. end
  1294. end
  1295. NEWANIM = true
  1296. wait(0.5)
  1297. for i = 1, 15 do
  1298. wait(0.1)
  1299. coroutine.resume(coroutine.create(function()
  1300. local FIREBALL = CreatePart(3, Effects, "Neon", 0, 1, "Cyan", "Flight", VT(2,2,2))
  1301. FIREBALL.CFrame = CF(RightArm.CFrame*CF(0,-1,0).p,Mouse.Hit.p)
  1302. CreateSound(FIREBALLSOUND,FIREBALL,6,1,false)
  1303. for i = 1, 250 do
  1304. Swait()
  1305. local HIT,HITPOS,NORMAL = Raycast(FIREBALL.Position, FIREBALL.CFrame.lookVector, 2, Character)
  1306. FIREBALL.CFrame = FIREBALL.CFrame*CF(0,0,-2)
  1307. if HIT then
  1308. CreateSound(EXPLOSIONSMALLSOUND,FIREBALL,10,1,false)
  1309. local FIELD = CreatePart(3, Effects, "Neon", 0, 1, BRICKC("Pearl"), "Fire", VT(75,0,75), true)
  1310. local FIELD2 = CreatePart(3, Effects, "Neon", 0, 1, BRICKC("Pearl"), "Fire", VT(75,0,75), true)
  1311. FIELD.CFrame = CF(HITPOS,HITPOS+NORMAL) * ANGLES(RAD(90), RAD(0), RAD(0))
  1312. FIELD2.CFrame = CF(HITPOS,HITPOS+NORMAL) * ANGLES(RAD(90), RAD(45), RAD(0))
  1313. coroutine.resume(coroutine.create(function()
  1314. for i = 1, 15 do
  1315. wait(1)
  1316. ApplyAoE(FIELD.Position,FIELD.Size.X/2,5,15,0,false,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  1317. end
  1318. Debris:AddItem(FIELD,5)
  1319. Debris:AddItem(FIELD2,5)
  1320. end))
  1321. break
  1322. end
  1323. end
  1324. Debris:AddItem(FIREBALL,7)
  1325. end))
  1326. end
  1327. end
  1328. wait(0.3)
  1329. ATTACK = false
  1330. Rooted = false
  1331. end
  1332.  
  1333.  
  1334. --//=================================\\
  1335. --|| ASSIGN THINGS TO KEYS
  1336. --\\=================================//
  1337.  
  1338. function MouseDown(Mouse)
  1339. HOLD = true
  1340. if ATTACK == false then
  1341. end
  1342. end
  1343.  
  1344. function MouseUp(Mouse)
  1345. HOLD = false
  1346. end
  1347.  
  1348. function KeyDown(Key)
  1349. KEYHOLD = true
  1350. if Key == "z" and ATTACK == false then
  1351. Warden_Zap()
  1352. end
  1353.  
  1354. if Key == "b" and ATTACK == false then
  1355. Warden_Thunder()
  1356. end
  1357.  
  1358. if Key == "c" and ATTACK == false then
  1359. Inferno_Ring()
  1360. end
  1361.  
  1362. if Key == "v" and ATTACK == false then
  1363. Warden_Wall()
  1364. end
  1365.  
  1366. if Key == "x" and ATTACK == false then
  1367. Prison_Key()
  1368. end
  1369.  
  1370. if Key == "p" and ATTACK == false then
  1371. SearingOrb()
  1372. end
  1373.  
  1374. if Key == "t" and ATTACK == false then
  1375. Hat()
  1376. end
  1377. end
  1378.  
  1379. function KeyUp(Key)
  1380. KEYHOLD = false
  1381. end
  1382.  
  1383. Mouse.Button1Down:connect(function(NEWKEY)
  1384. MouseDown(NEWKEY)
  1385. end)
  1386. Mouse.Button1Up:connect(function(NEWKEY)
  1387. MouseUp(NEWKEY)
  1388. end)
  1389. Mouse.KeyDown:connect(function(NEWKEY)
  1390. KeyDown(NEWKEY)
  1391. end)
  1392. Mouse.KeyUp:connect(function(NEWKEY)
  1393. KeyUp(NEWKEY)
  1394. end)
  1395.  
  1396. --//=================================\\
  1397. --\\=================================//
  1398.  
  1399.  
  1400. function unanchor()
  1401. if UNANCHOR == true then
  1402. g = Character:GetChildren()
  1403. for i = 1, #g do
  1404. if g[i].ClassName == "Part" then
  1405. g[i].Anchored = false
  1406. end
  1407. end
  1408. end
  1409. end
  1410.  
  1411.  
  1412. --//=================================\\
  1413. --|| WRAP THE WHOLE SCRIPT UP
  1414. --\\=================================//
  1415.  
  1416. Humanoid.Changed:connect(function(Jump)
  1417. if Jump == "Jump" and (Disable_Jump == true) then
  1418. Humanoid.Jump = false
  1419. end
  1420. end)
  1421.  
  1422. while true do
  1423. Swait()
  1424. script.Parent = WEAPONGUI
  1425. Humanoid.Parent = Character
  1426. if Humanoid then
  1427. local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION)
  1428. IDLEANIMATION:Play()
  1429. end
  1430. if ANIMATE.Parent == Character then
  1431. ANIMATE:Destroy()
  1432. end
  1433. SINE = SINE + CHANGE
  1434. local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
  1435. local TORSOVERTICALVELOCITY = RootPart.Velocity.y
  1436. Humanoid.HipHeight = 1
  1437. Humanoid.Name = "Warden"
  1438. Humanoid.PlatformStand = false
  1439. if PLAYMAINANIM == true then
  1440. if TORSOVELOCITY < 1 then
  1441. 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)
  1442. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1443. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(-45)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  1444. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-45), RAD(0), RAD(45)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  1445. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-15)), 0.15 / Animation_Speed)
  1446. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1447. elseif TORSOVELOCITY > 1 then
  1448. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(5), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1449. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(10 - 6.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  1450. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-35), RAD(0), RAD(-45)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  1451. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5 + 0.15 * COS(SINE / 12) - 0.05 * COS(SINE / 12), 0.5) * ANGLES(RAD(-35), RAD(0), RAD(45)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  1452. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(65), RAD(0)) * ANGLES(RAD(-3), RAD(0), RAD(-20)), 0.15 / Animation_Speed)
  1453. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(10)), 0.15 / Animation_Speed)
  1454. end
  1455. end
  1456. unanchor()
  1457. Humanoid.MaxHealth = "inf"
  1458. Humanoid.Health = "inf"
  1459. if Rooted == false then
  1460. Disable_Jump = false
  1461. Humanoid.WalkSpeed = Speed
  1462. elseif Rooted == true then
  1463. Disable_Jump = true
  1464. Humanoid.WalkSpeed = 0
  1465. end
  1466. for _, c in pairs(Character:GetChildren()) do
  1467. if c.ClassName == "Part" and c.Name ~= "Eye" then
  1468. c.Material = "Neon"
  1469. if c:FindFirstChildOfClass("ParticleEmitter") then
  1470. c:FindFirstChildOfClass("ParticleEmitter"):remove()
  1471. end
  1472. c.Color = C3(1,1,1)
  1473. if c == Head then
  1474. if c:FindFirstChild("face") then
  1475. c.face:remove()
  1476. end
  1477. end
  1478. elseif c.ClassName == "CharacterMesh" or c.ClassName == "Accessory" or c.ClassName == "Hat" or c.Name == "Body Colors" then
  1479. c:remove()
  1480. elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
  1481. c:remove()
  1482. end
  1483. end
  1484. sick.SoundId = "rbxassetid://687654240"
  1485. sick.Looped = true
  1486. sick.Pitch = 1
  1487. sick.Volume = 1.5
  1488. sick:Resume()
  1489. sick.Parent = Torso
  1490. refit()
  1491. if Head:FindFirstChildOfClass("Sound") then
  1492. Head:FindFirstChildOfClass("Sound"):remove()
  1493. end
  1494. end
  1495.  
  1496. --//=================================\\
  1497. --\\=================================//
  1498.  
  1499.  
  1500.  
  1501.  
  1502.  
  1503. --//====================================================\\--
  1504. --|| END OF SCRIPT
  1505. --\\====================================================//--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement