Advertisement
XSleepyDemonX_17

Töter (yes, I'm joking)

Jul 25th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 104.73 KB | None | 0 0
  1. -----------//THE NIGHTFALL\\-----------
  2. --[[Movelist
  3. Mouseclick = 3 combos
  4. -Attack 1 = Downwards slash
  5. -Attack 2 = Power slash
  6. -Attack 3 = Whirlwind slash
  7. Q = Impale
  8. E = Forward dash
  9. R = Ear destroyer
  10. T = Taunt
  11. Y = Cutting storm
  12. U = Homing Cutting storm
  13. ---------]]
  14.  
  15. --Recreated from the game Before the dawn: Redux.--
  16. --Those who used this right when it was released, yes it was broken, it's fixed now--
  17. --Impale dem suckazz and reeeeeeeeee--
  18.  
  19. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
  20. do
  21. script.Parent = owner.Character
  22. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  23. local function NewFakeEvent()
  24. local Bind = Instance.new("BindableEvent")
  25. local Fake;Fake = {Connections = {},
  26. fakeEvent=true;
  27. Connect=function(self,Func)
  28. Bind.Event:connect(Func)
  29. self.Connections[Bind] = true
  30. return setmetatable({Connected = true},{
  31. __index = function (self,Index)
  32. if Index:lower() == "disconnect" then
  33. return function() Fake.Connections[Bind] = false;self.Connected = false end
  34. end
  35. return Fake[Index]
  36. end;
  37. __tostring = function() return "Connection" end;
  38. })
  39. end}
  40. Fake.connect = Fake.Connect;return Fake;
  41. end
  42. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  43. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  44. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  45. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  46. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  47. local function TriggerEvent(self,Event,...)
  48. local Trigger = Mouse[Event]
  49. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  50. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  51. end
  52. end
  53. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  54. Event.OnServerEvent:Connect(function(FiredBy,Input)
  55. if FiredBy.Name ~= owner.Name then return end
  56. if Input.MouseEvent then
  57. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  58. else
  59. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  60. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  61. for _,Action in pairs(ContextActionService.Actions) do
  62. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  63. end
  64. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  65. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  66. end
  67. end)
  68. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  69. Event.Parent = NLS([[
  70. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  71. local Input = function(Input,gameProcessedEvent)
  72. if gameProcessedEvent then return end
  73. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  74. end
  75. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  76. local Hit,Target
  77. while wait(1/30) do
  78. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  79. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  80. end
  81. end
  82. ]],owner.Character)
  83. end
  84. RealGame = game;game = setmetatable({},{
  85. __index = function (self,Index)
  86. local Sandbox = function (Thing)
  87. if Thing:IsA("Player") then
  88. local RealPlayer = Thing
  89. return setmetatable({},{
  90. __index = function (self,Index)
  91. local Type = type(RealPlayer[Index])
  92. if Type == "function" then
  93. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  94. return function (self)return InternalData["Mouse"] end
  95. end
  96. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  97. end
  98. return RealPlayer[Index]
  99. end;
  100. __tostring = function(self) return RealPlayer.Name end
  101. })
  102. end
  103. end
  104. if RealGame[Index] then
  105. local Type = type(RealGame[Index])
  106. if Type == "function" then
  107. if Index:lower() == "getservice" or Index:lower() == "service" then
  108. return function (self,Service)
  109. local FakeServices = {
  110. ["players"] = function()
  111. return setmetatable({},{
  112. __index = function (self2,Index2)
  113. local RealService = RealGame:GetService(Service)
  114. local Type2 = type(Index2)
  115. if Type2 == "function" then
  116. return function (self,...) return RealService[Index2](RealService,...)end
  117. else
  118. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  119. return RealService[Index2]
  120. end
  121. end;
  122. __tostring = function(self) return RealGame:GetService(Service).Name end
  123. })
  124. end;
  125. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  126. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  127. ["runservice"] = function()
  128. return setmetatable({},{
  129. __index = function(self2,Index2)
  130. local RealService = RealGame:GetService(Service)
  131. local Type2 = type(Index2)
  132. if Type2 == "function" then
  133. return function (self,...) return RealService[Index2](RealService,...) end
  134. else
  135. local RunServices = {
  136. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  137. ["renderstepped"] = function() return RealService["Stepped"] end
  138. }
  139. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  140. return RealService[Index2]
  141. end
  142. end
  143. })
  144. end
  145. }
  146. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  147. return RealGame:GetService(Service)
  148. end
  149. end
  150. return function (self,...) return RealGame[Index](RealGame,...) end
  151. else
  152. if game:GetService(Index) then return game:GetService(Index) end
  153. return RealGame[Index]
  154. end
  155. end
  156. return nil
  157. end
  158. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  159.  
  160. -----------//THE NIGHTFALL\\-----------
  161. --[[Movelist
  162. Mouseclick = 3 combos
  163. -Attack 1 = Downwards slash
  164. -Attack 2 = Power slash
  165. -Attack 3 = Whirlwind slash
  166. Q = Impale
  167. E = Forward dash
  168. R = Ear destroyer
  169. T = Taunt
  170. Y = Cutting storm
  171. U = Homing Cutting storm
  172. ---------]]
  173.  
  174. --Recreated from the game Before the dawn: Redux.--
  175. --For those who used this when it was just released, it was broken, it's fixed now as of 12-18-2018--
  176. --Impale dem suckazz and reeeeeeee--
  177.  
  178. Player=game.Players.LocalPlayer
  179. Character=Player.Character
  180. Character.Humanoid.Name = "nightfall"
  181. hum = Character.nightfall
  182. LeftArm=Character["Left Arm"]
  183. LeftLeg=Character["Left Leg"]
  184. RightArm=Character["Right Arm"]
  185. RightLeg=Character["Right Leg"]
  186. Root=Character["HumanoidRootPart"]
  187. Head=Character["Head"]
  188. Torso=Character["Torso"]
  189. Neck=Torso["Neck"]
  190. walking = false
  191. singularitybounce = false
  192. jumping = false
  193. targetfound = false
  194. grabbed = false
  195. attacking = false
  196. firsttime = false
  197. dash1 = true
  198. dash2 = false
  199. tauntdebounce = false
  200. mouse = Player:GetMouse()
  201. position = nil
  202. MseGuide = true
  203. running = false
  204. settime = 0
  205. sine = 0
  206. t = 0
  207. ws = 19
  208. jp = 85
  209. secondform = false
  210. change = 1
  211. combo1 = true
  212. dancing = false
  213. equip = false
  214. dgs = 75
  215. dedlaff = false
  216. combo2 = false
  217. spin1 = true
  218. spin2 = false
  219. switch1 = true
  220. switch2 = false
  221. firsttime2 = false
  222. isattacking = false
  223. combo3 = false
  224. gunallowance = false
  225. cooldown = false
  226. shooting = false
  227. RunSrv = game:GetService("RunService")
  228. RenderStepped = game:GetService("RunService").RenderStepped
  229. removeuseless = game:GetService("Debris")
  230. local slasher = {1543186629,1543187082,1543187280,1543186883}
  231. local slasher2 = {220834019,220834000,220833976,220833967}
  232. slash = #slasher
  233. slash2 = #slasher2
  234. screenGui = Instance.new("ScreenGui")
  235. screenGui.Parent = script.Parent
  236.  
  237. local HEADLERP = Instance.new("ManualWeld")
  238. HEADLERP.Parent = Head
  239. HEADLERP.Part0 = Head
  240. HEADLERP.Part1 = Head
  241. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  242.  
  243. local TORSOLERP = Instance.new("ManualWeld")
  244. TORSOLERP.Parent = Root
  245. TORSOLERP.Part0 = Torso
  246. TORSOLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  247.  
  248. local ROOTLERP = Instance.new("ManualWeld")
  249. ROOTLERP.Parent = Root
  250. ROOTLERP.Part0 = Root
  251. ROOTLERP.Part1 = Torso
  252. ROOTLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  253.  
  254. local RIGHTARMLERP = Instance.new("ManualWeld")
  255. RIGHTARMLERP.Parent = RightArm
  256. RIGHTARMLERP.Part0 = RightArm
  257. RIGHTARMLERP.Part1 = Torso
  258. RIGHTARMLERP.C0 = CFrame.new(-1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  259.  
  260. local LEFTARMLERP = Instance.new("ManualWeld")
  261. LEFTARMLERP.Parent = LeftArm
  262. LEFTARMLERP.Part0 = LeftArm
  263. LEFTARMLERP.Part1 = Torso
  264. LEFTARMLERP.C0 = CFrame.new(1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  265.  
  266. local RIGHTLEGLERP = Instance.new("ManualWeld")
  267. RIGHTLEGLERP.Parent = RightLeg
  268. RIGHTLEGLERP.Part0 = RightLeg
  269. RIGHTLEGLERP.Part1 = Torso
  270. RIGHTLEGLERP.C0 = CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  271.  
  272. local LEFTLEGLERP = Instance.new("ManualWeld")
  273. LEFTLEGLERP.Parent = LeftLeg
  274. LEFTLEGLERP.Part0 = LeftLeg
  275. LEFTLEGLERP.Part1 = Torso
  276. LEFTLEGLERP.C0 = CFrame.new(0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  277.  
  278. local function weldBetween(a, b)
  279. local weld = Instance.new("ManualWeld", a)
  280. weld.Part0 = a
  281. weld.Part1 = b
  282. weld.C0 = a.CFrame:inverse() * b.CFrame
  283. return weld
  284. end
  285.  
  286. function MAKETRAIL(PARENT,POSITION1,POSITION2,LIFETIME,COLOR)
  287. A = Instance.new("Attachment", PARENT)
  288. A.Position = POSITION1
  289. A.Name = "A"
  290. B = Instance.new("Attachment", PARENT)
  291. B.Position = POSITION2
  292. B.Name = "B"
  293. tr1 = Instance.new("Trail", PARENT)
  294. tr1.Attachment0 = A
  295. tr1.Attachment1 = B
  296. tr1.Enabled = true
  297. tr1.Lifetime = LIFETIME
  298. tr1.TextureMode = "Static"
  299. tr1.LightInfluence = 0
  300. tr1.Color = COLOR
  301. tr1.Transparency = NumberSequence.new(0, 1)
  302. end
  303.  
  304. footsteps = Instance.new("Sound",Torso)
  305. footsteps.SoundId = "rbxassetid://1244506786"
  306. footsteps.Volume = 0
  307. footsteps.Looped = true
  308. footsteps.Pitch = 1.6
  309. footsteps.Name = "fp"
  310. footsteps:Play()
  311.  
  312. slash = slasher[math.random(1,#slasher)]
  313. slashs = Instance.new("Sound",RightArm)
  314. slashs.SoundId = "rbxassetid://"..slash
  315. slashs.Volume = 10
  316. slashs.Pitch = 1
  317. slashs.Name = "slashs"
  318.  
  319. introsound = Instance.new("Sound",Torso)
  320. introsound.SoundId = "rbxassetid://1842444810"
  321. introsound.Volume = 4
  322. introsound:Play()
  323.  
  324. coroutine.wrap(function()
  325. doomtheme = Instance.new("Sound",Torso)
  326. doomtheme.Volume = 0
  327. doomtheme.SoundId = "rbxassetid://2081859122"
  328. doomtheme.Looped = true
  329. doomtheme:Play()
  330. doomtheme.Name = "doomtheme"
  331. for i = 1, 20 do
  332. doomtheme.Volume = doomtheme.Volume + .1
  333. wait()
  334. end
  335. end)()
  336.  
  337. Torso.ChildRemoved:connect(function(removed)
  338. if removed.Name == "doomtheme" then
  339. doomtheme = Instance.new("Sound",Torso)
  340. doomtheme.SoundId = "rbxassetid://2114921530"
  341. doomtheme.Looped = true
  342. doomtheme.Volume = 2
  343. doomtheme:Play()
  344. doomtheme.Name = "doomtheme"
  345. end
  346. end)
  347.  
  348. Torso.ChildRemoved:connect(function(removed)
  349. if removed.Name == "slashs" then
  350. slash = slasher[math.random(1,#slasher)]
  351. slashs = Instance.new("Sound",RightArm)
  352. slashs.SoundId = "rbxassetid://"..slash
  353. slashs.Volume = 10
  354. slashs.Pitch = 1
  355. slashs.Name = "slashs"
  356. end
  357. end)
  358.  
  359. Torso.ChildRemoved:connect(function(removed)
  360. if removed.Name == "fp" then
  361. footsteps = Instance.new("Sound",Torso)
  362. footsteps.SoundId = "rbxassetid://1244506786"
  363. footsteps.Volume = 0
  364. footsteps.Looped = true
  365. footsteps.Pitch = 1.6
  366. footsteps.Name = "fp"
  367. footsteps:Play()
  368. end
  369. end)
  370.  
  371. leftlocation = Instance.new("Part",LeftArm)
  372. leftlocation.Size = Vector3.new(1,1,1)
  373. leftlocation.Transparency = 1
  374. leftlocation.Name = "leftlocation"
  375. leftlocationweld = weldBetween(leftlocation,LeftArm)
  376. leftlocationweld.C0 = CFrame.new(0,1.2,0)
  377. rightlocation = Instance.new("Part",RightArm)
  378. rightlocation.Size = Vector3.new(1,1,1)
  379. rightlocation.Transparency = 1
  380. rightlocation.Name = "rightlocation"
  381. rightlocationweld = weldBetween(rightlocation,RightArm)
  382. rightlocationweld.C0 = CFrame.new(0,1.2,0)
  383.  
  384. A = Instance.new("Attachment", rightlocation)
  385. A.Position = Vector3.new(.1,.3,.1)
  386. A.Name = "A"
  387. B = Instance.new("Attachment", rightlocation)
  388. B.Position = Vector3.new(-.1,-.3,-.1)
  389. B.Name = "B"
  390. tr1 = Instance.new("Trail", rightlocation)
  391. tr1.Attachment0 = A
  392. tr1.Attachment1 = B
  393. tr1.Enabled = false
  394. tr1.Lifetime = .6
  395. tr1.TextureMode = "Static"
  396. tr1.LightInfluence = 0
  397. tr1.Color = ColorSequence.new(BrickColor.new("Really red").Color,BrickColor.new("Really black").Color)
  398. tr1.Transparency = NumberSequence.new(0, 1)
  399.  
  400. shirt = Instance.new("Shirt", Character)
  401. shirt.Name = "Shirt"
  402. Character.Shirt.ShirtTemplate = "rbxassetid://96203807"
  403. pants = Instance.new("Pants", Character)
  404. pants.Name = "Pants"
  405. Character.Pants.PantsTemplate = "rbxassetid://96203772"
  406.  
  407. particlecolor = ColorSequence.new(Color3.new(255, 255, 255))
  408.  
  409. leftlocation = Instance.new("Part",LeftArm)
  410. leftlocation.Size = Vector3.new(1,1,1)
  411. leftlocation.Transparency = 1
  412. leftlocation.Name = "leftlocation"
  413. leftlocationweld = weldBetween(leftlocation,LeftArm)
  414. leftlocationweld.C0 = CFrame.new(0,1.2,0)
  415. rightlocation = Instance.new("Part",RightArm)
  416. rightlocation.Size = Vector3.new(1,1,1)
  417. rightlocation.Transparency = 1
  418. rightlocation.Name = "rightlocation"
  419. rightlocationweld = weldBetween(rightlocation,RightArm)
  420. rightlocationweld.C0 = CFrame.new(0,1.2,0)
  421.  
  422. particlemiter1 = Instance.new("ParticleEmitter", LeftArm)
  423. particlemiter1.Enabled = false
  424. particlemiter1.Color = particlecolor
  425. particlemiter1.Texture = "rbxassetid://886346744"
  426. particlemiter1.Lifetime = NumberRange.new(.05)
  427. particlemiter1.Size = NumberSequence.new(1.75,1.75)
  428. particlemiter1.Rate = 4
  429. particlemiter1.Rotation = NumberRange.new(0,360)
  430. particlemiter1.RotSpeed = NumberRange.new(0)
  431. particlemiter1.Speed = NumberRange.new(0)
  432. particlemiter2 = Instance.new("ParticleEmitter", RightArm)
  433. particlemiter2.Enabled = false
  434. particlemiter2.Color = particlecolor
  435. particlemiter2.Texture = "rbxassetid://886346744"
  436. particlemiter2.Rotation = NumberRange.new(0,360)
  437. particlemiter2.Lifetime = NumberRange.new(.05)
  438. particlemiter2.Size = NumberSequence.new(1.75,1.75)
  439. particlemiter2.Rate = 4
  440. particlemiter2.RotSpeed = NumberRange.new(0)
  441. particlemiter2.Speed = NumberRange.new(0)
  442. particlemiter4 = Instance.new("ParticleEmitter", LeftLeg)
  443. particlemiter4.Enabled = false
  444. particlemiter4.Color = particlecolor
  445. particlemiter4.Texture = "rbxassetid://886346744"
  446. particlemiter4.Lifetime = NumberRange.new(.05)
  447. particlemiter4.Rotation = NumberRange.new(0,360)
  448. particlemiter4.Size = NumberSequence.new(1.75,1.75)
  449. particlemiter4.Rate = 4
  450. particlemiter4.RotSpeed = NumberRange.new(0)
  451. particlemiter4.Speed = NumberRange.new(0)
  452. particlemiter5 = Instance.new("ParticleEmitter", RightLeg)
  453. particlemiter5.Enabled = false
  454. particlemiter5.Color = particlecolor
  455. particlemiter5.Texture = "rbxassetid://886346744"
  456. particlemiter5.Rotation = NumberRange.new(0,360)
  457. particlemiter5.Lifetime = NumberRange.new(.05)
  458. particlemiter5.Size = NumberSequence.new(1.75,1.75)
  459. particlemiter5.Rate = 4
  460. particlemiter5.RotSpeed = NumberRange.new(0)
  461. particlemiter5.Speed = NumberRange.new(0)
  462. particlemiter6 = Instance.new("ParticleEmitter", Torso)
  463. particlemiter6.Enabled = false
  464. particlemiter6.Color = particlecolor
  465. particlemiter6.Texture = "rbxassetid://886346744"
  466. particlemiter6.Rotation = NumberRange.new(0,360)
  467. particlemiter6.Lifetime = NumberRange.new(.05)
  468. particlemiter6.Size = NumberSequence.new(1.75,1.75)
  469. particlemiter6.Rate = 4
  470. particlemiter6.RotSpeed = NumberRange.new(0)
  471. particlemiter6.Speed = NumberRange.new(0)
  472. particlemiter7 = Instance.new("ParticleEmitter", Head)
  473. particlemiter7.Enabled = false
  474. particlemiter7.Color = particlecolor
  475. particlemiter7.Texture = "rbxassetid://886346744"
  476. particlemiter7.Rotation = NumberRange.new(0,360)
  477. particlemiter7.Lifetime = NumberRange.new(.05)
  478. particlemiter7.Size = NumberSequence.new(1.75,1.75)
  479. particlemiter7.Rate = 4
  480. particlemiter7.RotSpeed = NumberRange.new(0)
  481. particlemiter7.Speed = NumberRange.new(0)
  482.  
  483. coroutine.wrap(function()
  484. while true do
  485. wait(7)
  486. particlemiter1.Enabled = true
  487. particlemiter2.Enabled = true
  488. particlemiter4.Enabled = true
  489. particlemiter5.Enabled = true
  490. particlemiter6.Enabled = true
  491. particlemiter7.Enabled = true
  492. swait(60)
  493. particlemiter1.Enabled = false
  494. particlemiter2.Enabled = false
  495. particlemiter4.Enabled = false
  496. particlemiter5.Enabled = false
  497. particlemiter6.Enabled = false
  498. particlemiter7.Enabled = false
  499. wait(11)
  500. particlemiter1.Enabled = true
  501. particlemiter2.Enabled = true
  502. particlemiter4.Enabled = true
  503. particlemiter5.Enabled = true
  504. particlemiter6.Enabled = true
  505. particlemiter7.Enabled = true
  506. swait(60)
  507. particlemiter1.Enabled = false
  508. particlemiter2.Enabled = false
  509. particlemiter4.Enabled = false
  510. particlemiter5.Enabled = false
  511. particlemiter6.Enabled = false
  512. particlemiter7.Enabled = false
  513. wait(4)
  514. particlemiter1.Enabled = true
  515. particlemiter2.Enabled = true
  516. particlemiter4.Enabled = true
  517. particlemiter5.Enabled = true
  518. particlemiter6.Enabled = true
  519. particlemiter7.Enabled = true
  520. swait(60)
  521. particlemiter1.Enabled = false
  522. particlemiter2.Enabled = false
  523. particlemiter4.Enabled = false
  524. particlemiter5.Enabled = false
  525. particlemiter6.Enabled = false
  526. particlemiter7.Enabled = false
  527. swait()
  528. end
  529. end)()
  530.  
  531. Head.BrickColor = BrickColor.new("Really black")
  532.  
  533.  
  534. mas = Instance.new("Model",Head)
  535. mas.Name = "Model2Script"
  536. o1 = Instance.new("Model")
  537. o2 = Instance.new("Part")
  538. o3 = Instance.new("Part")
  539. o4 = Instance.new("Part")
  540. o5 = Instance.new("Part")
  541. o6 = Instance.new("Part")
  542. o7 = Instance.new("Part")
  543. o8 = Instance.new("Part")
  544. o9 = Instance.new("Part")
  545. o10 = Instance.new("Part")
  546. o11 = Instance.new("Part")
  547. o12 = Instance.new("Part")
  548. o13 = Instance.new("Part")
  549. o14 = Instance.new("Part")
  550. o15 = Instance.new("Part")
  551. o16 = Instance.new("Part")
  552. o17 = Instance.new("Part")
  553. o18 = Instance.new("Part")
  554. o19 = Instance.new("Part")
  555. o20 = Instance.new("Part")
  556. o21 = Instance.new("Part")
  557. o22 = Instance.new("Part")
  558. o23 = Instance.new("Part")
  559. o24 = Instance.new("Part")
  560. o25 = Instance.new("Part")
  561. o26 = Instance.new("Part")
  562. o27 = Instance.new("Part")
  563. o28 = Instance.new("Part")
  564. o29 = Instance.new("Part")
  565. o30 = Instance.new("Part")
  566. o31 = Instance.new("Part")
  567. o32 = Instance.new("Part")
  568. o33 = Instance.new("Part")
  569. o34 = Instance.new("Part")
  570. o35 = Instance.new("Part")
  571. o36 = Instance.new("Part")
  572. o37 = Instance.new("Part")
  573. o1.Parent = mas
  574. o2.Name = "Head"
  575. o2.Parent = o1
  576. o2.Material = Enum.Material.SmoothPlastic
  577. o2.BrickColor = BrickColor.new("Really black")
  578. o2.Transparency = 1
  579. o2.Rotation = Vector3.new(-0.00999999978, 3.26999998, 0.00999999978)
  580. o2.FormFactor = Enum.FormFactor.Symmetric
  581. o2.Size = Vector3.new(1.99999988, 0.99999994, 0.99999994)
  582. o2.CFrame = CFrame.new(12.5892553, 4.50960207, -3.75727963, 0.998376548, -0.000250246754, 0.0569584854, 0.000245001953, 1.00000846, 9.91025372e-05, -0.056957975, -8.49864373e-05, 0.998385131)
  583. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  584. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  585. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  586. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  587. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  588. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  589. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  590. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  591. o3.Parent = o2
  592. o3.BrickColor = BrickColor.new("Fossil")
  593. o3.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  594. o3.CanCollide = false
  595. o3.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  596. o3.CFrame = CFrame.new(12.3422012, 4.47093582, -4.18185663, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  597. o3.BottomSurface = Enum.SurfaceType.Smooth
  598. o3.TopSurface = Enum.SurfaceType.Smooth
  599. o3.Color = Color3.new(0.623529, 0.631373, 0.67451)
  600. o3.Color = Color3.new(0.623529, 0.631373, 0.67451)
  601. o4.Parent = o2
  602. o4.Material = Enum.Material.Neon
  603. o4.BrickColor = BrickColor.new("Really red")
  604. o4.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  605. o4.CanCollide = false
  606. o4.Shape = Enum.PartType.Ball
  607. o4.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
  608. o4.CFrame = CFrame.new(12.6813383, 4.85306978, -4.3403945, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  609. o4.BottomSurface = Enum.SurfaceType.Smooth
  610. o4.TopSurface = Enum.SurfaceType.Smooth
  611. o4.Color = Color3.new(0.482353, 0, 0.482353)
  612. o4.Color = Color3.new(0.482353, 0, 0.482353)
  613. o5.Parent = o2
  614. o5.BrickColor = BrickColor.new("Fossil")
  615. o5.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  616. o5.CanCollide = false
  617. o5.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  618. o5.CFrame = CFrame.new(12.25453, 4.47092152, -4.12017584, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  619. o5.BottomSurface = Enum.SurfaceType.Smooth
  620. o5.TopSurface = Enum.SurfaceType.Smooth
  621. o5.Color = Color3.new(0.623529, 0.631373, 0.67451)
  622. o5.Color = Color3.new(0.623529, 0.631373, 0.67451)
  623. o6.Parent = o2
  624. o6.BrickColor = BrickColor.new("Fossil")
  625. o6.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  626. o6.CanCollide = false
  627. o6.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  628. o6.CFrame = CFrame.new(12.3307505, 4.47093344, -4.19189453, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  629. o6.BottomSurface = Enum.SurfaceType.Smooth
  630. o6.TopSurface = Enum.SurfaceType.Smooth
  631. o6.Color = Color3.new(0.623529, 0.631373, 0.67451)
  632. o6.Color = Color3.new(0.623529, 0.631373, 0.67451)
  633. o7.Parent = o2
  634. o7.BrickColor = BrickColor.new("Fossil")
  635. o7.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  636. o7.CanCollide = false
  637. o7.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  638. o7.CFrame = CFrame.new(12.4249439, 4.47095871, -4.24005365, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  639. o7.BottomSurface = Enum.SurfaceType.Smooth
  640. o7.TopSurface = Enum.SurfaceType.Smooth
  641. o7.Color = Color3.new(0.623529, 0.631373, 0.67451)
  642. o7.Color = Color3.new(0.623529, 0.631373, 0.67451)
  643. o8.Parent = o2
  644. o8.BrickColor = BrickColor.new("Fossil")
  645. o8.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  646. o8.CanCollide = false
  647. o8.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  648. o8.CFrame = CFrame.new(12.8379145, 4.46701479, -4.16434002, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  649. o8.BottomSurface = Enum.SurfaceType.Smooth
  650. o8.TopSurface = Enum.SurfaceType.Smooth
  651. o8.Color = Color3.new(0.623529, 0.631373, 0.67451)
  652. o8.Color = Color3.new(0.623529, 0.631373, 0.67451)
  653. o9.Parent = o2
  654. o9.BrickColor = BrickColor.new("Fossil")
  655. o9.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  656. o9.CanCollide = false
  657. o9.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  658. o9.CFrame = CFrame.new(12.9631338, 4.46704054, -4.09174585, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  659. o9.BottomSurface = Enum.SurfaceType.Smooth
  660. o9.TopSurface = Enum.SurfaceType.Smooth
  661. o9.Color = Color3.new(0.623529, 0.631373, 0.67451)
  662. o9.Color = Color3.new(0.623529, 0.631373, 0.67451)
  663. o10.Parent = o2
  664. o10.BrickColor = BrickColor.new("Fossil")
  665. o10.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  666. o10.CanCollide = false
  667. o10.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  668. o10.CFrame = CFrame.new(12.2429972, 4.4709177, -4.11946106, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  669. o10.BottomSurface = Enum.SurfaceType.Smooth
  670. o10.TopSurface = Enum.SurfaceType.Smooth
  671. o10.Color = Color3.new(0.623529, 0.631373, 0.67451)
  672. o10.Color = Color3.new(0.623529, 0.631373, 0.67451)
  673. o11.Parent = o2
  674. o11.Material = Enum.Material.Metal
  675. o11.BrickColor = BrickColor.new("Pearl")
  676. o11.Rotation = Vector3.new(-179.959991, 70.5100021, 179.970001)
  677. o11.CanCollide = false
  678. o11.Size = Vector3.new(0.250002503, 0.350000173, 0.2900002)
  679. o11.CFrame = CFrame.new(13.0351248, 4.18798542, -4.05297899, -0.333613515, -0.000202421492, 0.942709923, -1.74622983e-10, 1.00000834, 0.000214724801, -0.942718267, 7.16352733e-05, -0.333615392)
  680. o11.BottomSurface = Enum.SurfaceType.Smooth
  681. o11.TopSurface = Enum.SurfaceType.Smooth
  682. o11.Color = Color3.new(0.905882, 0.905882, 0.92549)
  683. o11.Color = Color3.new(0.905882, 0.905882, 0.92549)
  684. o12.Parent = o2
  685. o12.Material = Enum.Material.Metal
  686. o12.BrickColor = BrickColor.new("Pearl")
  687. o12.Rotation = Vector3.new(-0.0199999996, 59.8599968, 0.0299999993)
  688. o12.CanCollide = false
  689. o12.Size = Vector3.new(0.250002503, 0.330000162, 0.2900002)
  690. o12.CFrame = CFrame.new(12.1336823, 4.17776823, -4.01179171, 0.502042472, -0.000225768134, 0.864842951, 0.000113000759, 1.00000834, 0.000195456203, -0.864849985, -3.99100827e-07, 0.502047539)
  691. o12.BottomSurface = Enum.SurfaceType.Smooth
  692. o12.TopSurface = Enum.SurfaceType.Smooth
  693. o12.Color = Color3.new(0.905882, 0.905882, 0.92549)
  694. o12.Color = Color3.new(0.905882, 0.905882, 0.92549)
  695. o13.Parent = o2
  696. o13.BrickColor = BrickColor.new("Fossil")
  697. o13.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  698. o13.CanCollide = false
  699. o13.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  700. o13.CFrame = CFrame.new(12.4135151, 4.13782883, -4.25640917, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  701. o13.BottomSurface = Enum.SurfaceType.Smooth
  702. o13.TopSurface = Enum.SurfaceType.Smooth
  703. o13.Color = Color3.new(0.623529, 0.631373, 0.67451)
  704. o13.Color = Color3.new(0.623529, 0.631373, 0.67451)
  705. o14.Parent = o2
  706. o14.Material = Enum.Material.SmoothPlastic
  707. o14.BrickColor = BrickColor.new("Really black")
  708. o14.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  709. o14.CanCollide = false
  710. o14.Size = Vector3.new(0.370002419, 0.380000234, 0.300000221)
  711. o14.CFrame = CFrame.new(12.5940952, 4.50669909, -4.2362237, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  712. o14.BottomSurface = Enum.SurfaceType.Smooth
  713. o14.TopSurface = Enum.SurfaceType.Smooth
  714. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  715. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  716. o15.Parent = o2
  717. o15.Material = Enum.Material.Metal
  718. o15.BrickColor = BrickColor.new("Pearl")
  719. o15.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  720. o15.CanCollide = false
  721. o15.Size = Vector3.new(0.0800024197, 0.250000238, 0.300000221)
  722. o15.CFrame = CFrame.new(12.720789, 4.13790607, -4.30649519, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  723. o15.BottomSurface = Enum.SurfaceType.Smooth
  724. o15.TopSurface = Enum.SurfaceType.Smooth
  725. o15.Color = Color3.new(0.905882, 0.905882, 0.92549)
  726. o15.Color = Color3.new(0.905882, 0.905882, 0.92549)
  727. o16.Parent = o2
  728. o16.BrickColor = BrickColor.new("Fossil")
  729. o16.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  730. o16.CanCollide = false
  731. o16.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  732. o16.CFrame = CFrame.new(12.8739166, 4.14795494, -4.19200373, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  733. o16.BottomSurface = Enum.SurfaceType.Smooth
  734. o16.TopSurface = Enum.SurfaceType.Smooth
  735. o16.Color = Color3.new(0.623529, 0.631373, 0.67451)
  736. o16.Color = Color3.new(0.623529, 0.631373, 0.67451)
  737. o17.Parent = o2
  738. o17.Material = Enum.Material.Metal
  739. o17.BrickColor = BrickColor.new("Pearl")
  740. o17.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
  741. o17.CanCollide = false
  742. o17.Size = Vector3.new(0.370002478, 0.120000228, 0.130000144)
  743. o17.CFrame = CFrame.new(13.0013018, 5.05734348, -4.35467005, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
  744. o17.BottomSurface = Enum.SurfaceType.Smooth
  745. o17.TopSurface = Enum.SurfaceType.Smooth
  746. o17.Color = Color3.new(0.905882, 0.905882, 0.92549)
  747. o17.Color = Color3.new(0.905882, 0.905882, 0.92549)
  748. o18.Parent = o2
  749. o18.Material = Enum.Material.Neon
  750. o18.BrickColor = BrickColor.new("Really red")
  751. o18.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
  752. o18.CanCollide = false
  753. o18.Shape = Enum.PartType.Cylinder
  754. o18.Size = Vector3.new(0.48999992, 1.15999997, 1.30999982)
  755. o18.CFrame = CFrame.new(12.586771, 4.26036596, -3.78879094, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
  756. o18.BottomSurface = Enum.SurfaceType.Smooth
  757. o18.TopSurface = Enum.SurfaceType.Smooth
  758. o18.Color = Color3.new(0.482353, 0, 0.482353)
  759. o18.Color = Color3.new(0.482353, 0, 0.482353)
  760. o19.Parent = o2
  761. o19.Material = Enum.Material.Metal
  762. o19.BrickColor = BrickColor.new("Pearl")
  763. o19.Rotation = Vector3.new(0, 0.629999995, 12.8699999)
  764. o19.CanCollide = false
  765. o19.Size = Vector3.new(0.0800024197, 0.170000225, 0.2900002)
  766. o19.CFrame = CFrame.new(12.6530409, 4.55379057, -4.27083921, 0.974806547, -0.22278282, 0.0109562129, 0.222797751, 0.974873364, 2.55261766e-05, -0.0106856115, 0.00241591129, 0.999948502)
  767. o19.BottomSurface = Enum.SurfaceType.Smooth
  768. o19.TopSurface = Enum.SurfaceType.Smooth
  769. o19.Color = Color3.new(0.905882, 0.905882, 0.92549)
  770. o19.Color = Color3.new(0.905882, 0.905882, 0.92549)
  771. o20.Parent = o2
  772. o20.Material = Enum.Material.Metal
  773. o20.BrickColor = BrickColor.new("Pearl")
  774. o20.Rotation = Vector3.new(-0.00999999978, 29.6299992, 0.0199999996)
  775. o20.CanCollide = false
  776. o20.Size = Vector3.new(0.420002431, 0.200000226, 0.2900002)
  777. o20.CFrame = CFrame.new(12.2898045, 4.11280489, -4.19457197, 0.869223297, -0.000238353008, 0.494419813, 0.000207001765, 1.00000846, 0.000118167409, -0.494423091, -3.67785105e-07, 0.869231284)
  778. o20.BottomSurface = Enum.SurfaceType.Smooth
  779. o20.TopSurface = Enum.SurfaceType.Smooth
  780. o20.Color = Color3.new(0.905882, 0.905882, 0.92549)
  781. o20.Color = Color3.new(0.905882, 0.905882, 0.92549)
  782. o21.Parent = o2
  783. o21.Material = Enum.Material.Metal
  784. o21.BrickColor = BrickColor.new("Pearl")
  785. o21.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
  786. o21.CanCollide = false
  787. o21.Size = Vector3.new(0.350002438, 0.120000228, 0.130000204)
  788. o21.CFrame = CFrame.new(13.0757389, 4.90882826, -4.35546923, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
  789. o21.BottomSurface = Enum.SurfaceType.Smooth
  790. o21.TopSurface = Enum.SurfaceType.Smooth
  791. o21.Color = Color3.new(0.905882, 0.905882, 0.92549)
  792. o21.Color = Color3.new(0.905882, 0.905882, 0.92549)
  793. o22.Parent = o2
  794. o22.Material = Enum.Material.Metal
  795. o22.BrickColor = BrickColor.new("Pearl")
  796. o22.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
  797. o22.CanCollide = false
  798. o22.Size = Vector3.new(0.330002487, 0.110000268, 0.140000194)
  799. o22.CFrame = CFrame.new(13.142314, 4.7739563, -4.35119486, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
  800. o22.BottomSurface = Enum.SurfaceType.Smooth
  801. o22.TopSurface = Enum.SurfaceType.Smooth
  802. o22.Color = Color3.new(0.905882, 0.905882, 0.92549)
  803. o22.Color = Color3.new(0.905882, 0.905882, 0.92549)
  804. o23.Parent = o2
  805. o23.Material = Enum.Material.Metal
  806. o23.BrickColor = BrickColor.new("Pearl")
  807. o23.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  808. o23.CanCollide = false
  809. o23.Size = Vector3.new(0.0800024197, 0.250000238, 0.2900002)
  810. o23.CFrame = CFrame.new(12.4452009, 4.13783503, -4.29846525, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  811. o23.BottomSurface = Enum.SurfaceType.Smooth
  812. o23.TopSurface = Enum.SurfaceType.Smooth
  813. o23.Color = Color3.new(0.905882, 0.905882, 0.92549)
  814. o23.Color = Color3.new(0.905882, 0.905882, 0.92549)
  815. o24.Parent = o2
  816. o24.Material = Enum.Material.Metal
  817. o24.BrickColor = BrickColor.new("Pearl")
  818. o24.Rotation = Vector3.new(0, 0.629999995, -30.1299992)
  819. o24.CanCollide = false
  820. o24.Size = Vector3.new(0.330002487, 0.110000268, 0.130000249)
  821. o24.CFrame = CFrame.new(13.0381289, 4.67515135, -4.35506392, 0.864809334, 0.501980901, 0.0109607317, -0.502015352, 0.864868522, 1.60243653e-05, -0.00947066396, -0.00551580451, 0.999948561)
  822. o24.BottomSurface = Enum.SurfaceType.Smooth
  823. o24.TopSurface = Enum.SurfaceType.Smooth
  824. o24.Color = Color3.new(0.905882, 0.905882, 0.92549)
  825. o24.Color = Color3.new(0.905882, 0.905882, 0.92549)
  826. o25.Parent = o2
  827. o25.BrickColor = BrickColor.new("Fossil")
  828. o25.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  829. o25.CanCollide = false
  830. o25.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  831. o25.CFrame = CFrame.new(12.2344007, 4.13779402, -4.13043022, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  832. o25.BottomSurface = Enum.SurfaceType.Smooth
  833. o25.TopSurface = Enum.SurfaceType.Smooth
  834. o25.Color = Color3.new(0.623529, 0.631373, 0.67451)
  835. o25.Color = Color3.new(0.623529, 0.631373, 0.67451)
  836. o26.Parent = o2
  837. o26.BrickColor = BrickColor.new("Fossil")
  838. o26.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  839. o26.CanCollide = false
  840. o26.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  841. o26.CFrame = CFrame.new(12.7699385, 4.14792395, -4.25231028, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  842. o26.BottomSurface = Enum.SurfaceType.Smooth
  843. o26.TopSurface = Enum.SurfaceType.Smooth
  844. o26.Color = Color3.new(0.623529, 0.631373, 0.67451)
  845. o26.Color = Color3.new(0.623529, 0.631373, 0.67451)
  846. o27.Parent = o2
  847. o27.Material = Enum.Material.SmoothPlastic
  848. o27.BrickColor = BrickColor.new("Really black")
  849. o27.Rotation = Vector3.new(180, -3.27999997, 179.98999)
  850. o27.Shape = Enum.PartType.Cylinder
  851. o27.Size = Vector3.new(0.0500000007, 0.250000238, 1.6000005)
  852. o27.CFrame = CFrame.new(12.2895432, 4.72786093, -4.26638556, -0.998360634, -0.000245401112, -0.0572395623, -0.000245002186, 1.00000846, -1.40238844e-05, 0.0572390407, 2.32175807e-08, -0.998369098)
  853. o27.BottomSurface = Enum.SurfaceType.Smooth
  854. o27.TopSurface = Enum.SurfaceType.Smooth
  855. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  856. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  857. o28.Parent = o2
  858. o28.Material = Enum.Material.SmoothPlastic
  859. o28.BrickColor = BrickColor.new("Really black")
  860. o28.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
  861. o28.CanCollide = false
  862. o28.Shape = Enum.PartType.Cylinder
  863. o28.Size = Vector3.new(0.24999994, 1.25999975, 1.54999959)
  864. o28.CFrame = CFrame.new(12.5879374, 4.09035969, -3.785882, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
  865. o28.BottomSurface = Enum.SurfaceType.Smooth
  866. o28.TopSurface = Enum.SurfaceType.Smooth
  867. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  868. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  869. o29.Parent = o2
  870. o29.Material = Enum.Material.Neon
  871. o29.BrickColor = BrickColor.new("Really red")
  872. o29.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  873. o29.CanCollide = false
  874. o29.Shape = Enum.PartType.Ball
  875. o29.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
  876. o29.CFrame = CFrame.new(12.8344183, 4.76740217, -4.34208727, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  877. o29.BottomSurface = Enum.SurfaceType.Smooth
  878. o29.TopSurface = Enum.SurfaceType.Smooth
  879. o29.Color = Color3.new(0.482353, 0, 0.482353)
  880. o29.Color = Color3.new(0.482353, 0, 0.482353)
  881. o30.Parent = o2
  882. o30.Material = Enum.Material.Neon
  883. o30.BrickColor = BrickColor.new("Really red")
  884. o30.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  885. o30.CanCollide = false
  886. o30.Shape = Enum.PartType.Ball
  887. o30.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
  888. o30.CFrame = CFrame.new(12.6813812, 4.67232227, -4.34039068, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  889. o30.BottomSurface = Enum.SurfaceType.Smooth
  890. o30.TopSurface = Enum.SurfaceType.Smooth
  891. o30.Color = Color3.new(0.482353, 0, 0.482353)
  892. o30.Color = Color3.new(0.482353, 0, 0.482353)
  893. o31.Parent = o2
  894. o31.BrickColor = BrickColor.new("Fossil")
  895. o31.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  896. o31.CanCollide = false
  897. o31.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  898. o31.CFrame = CFrame.new(12.9933138, 4.14798307, -4.12279606, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  899. o31.BottomSurface = Enum.SurfaceType.Smooth
  900. o31.TopSurface = Enum.SurfaceType.Smooth
  901. o31.Color = Color3.new(0.623529, 0.631373, 0.67451)
  902. o31.Color = Color3.new(0.623529, 0.631373, 0.67451)
  903. o32.Name = "r"
  904. o32.Parent = o2
  905. o32.Material = Enum.Material.SmoothPlastic
  906. o32.BrickColor = BrickColor.new("Really black")
  907. o32.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
  908. o32.CanCollide = false
  909. o32.Shape = Enum.PartType.Cylinder
  910. o32.Size = Vector3.new(0.46999985, 1.25999975, 1.54999959)
  911. o32.CFrame = CFrame.new(12.5878134, 4.61972094, -3.7858963, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
  912. o32.BottomSurface = Enum.SurfaceType.Smooth
  913. o32.TopSurface = Enum.SurfaceType.Smooth
  914. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  915. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  916. o33.Parent = o2
  917. o33.BrickColor = BrickColor.new("Fossil")
  918. o33.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  919. o33.CanCollide = false
  920. o33.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  921. o33.CFrame = CFrame.new(12.3250799, 4.13780499, -4.19420767, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  922. o33.BottomSurface = Enum.SurfaceType.Smooth
  923. o33.TopSurface = Enum.SurfaceType.Smooth
  924. o33.Color = Color3.new(0.623529, 0.631373, 0.67451)
  925. o33.Color = Color3.new(0.623529, 0.631373, 0.67451)
  926. o34.Parent = o2
  927. o34.Material = Enum.Material.Neon
  928. o34.BrickColor = BrickColor.new("Really red")
  929. o34.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  930. o34.CanCollide = false
  931. o34.Shape = Enum.PartType.Ball
  932. o34.Size = Vector3.new(0.230001301, 0.230001301, 0.230001301)
  933. o34.CFrame = CFrame.new(12.320076, 4.73971415, -4.26470613, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  934. o34.BottomSurface = Enum.SurfaceType.Smooth
  935. o34.TopSurface = Enum.SurfaceType.Smooth
  936. o34.Color = Color3.new(0.482353, 0, 0.482353)
  937. o34.Color = Color3.new(0.482353, 0, 0.482353)
  938. o35.Parent = o2
  939. o35.Material = Enum.Material.Metal
  940. o35.BrickColor = BrickColor.new("Pearl")
  941. o35.Rotation = Vector3.new(0, 0.629999995, 12.8699999)
  942. o35.CanCollide = false
  943. o35.Size = Vector3.new(0.520002484, 0.440000206, 0.2900002)
  944. o35.CFrame = CFrame.new(12.8338127, 4.79513836, -4.27282286, 0.974806547, -0.22278282, 0.0109562129, 0.222797751, 0.974873364, 2.55261766e-05, -0.0106856115, 0.00241591129, 0.999948502)
  945. o35.BottomSurface = Enum.SurfaceType.Smooth
  946. o35.TopSurface = Enum.SurfaceType.Smooth
  947. o35.Color = Color3.new(0.905882, 0.905882, 0.92549)
  948. o35.Color = Color3.new(0.905882, 0.905882, 0.92549)
  949. o36.Parent = o2
  950. o36.Material = Enum.Material.Metal
  951. o36.BrickColor = BrickColor.new("Pearl")
  952. o36.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  953. o36.CanCollide = false
  954. o36.Size = Vector3.new(0.420002431, 0.200000226, 0.2900002)
  955. o36.CFrame = CFrame.new(12.8746452, 4.11295271, -4.2049346, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  956. o36.BottomSurface = Enum.SurfaceType.Smooth
  957. o36.TopSurface = Enum.SurfaceType.Smooth
  958. o36.Color = Color3.new(0.905882, 0.905882, 0.92549)
  959. o36.Color = Color3.new(0.905882, 0.905882, 0.92549)
  960. o37.Parent = o2
  961. o37.BrickColor = BrickColor.new("Fossil")
  962. o37.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  963. o37.CanCollide = false
  964. o37.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  965. o37.CFrame = CFrame.new(12.7551317, 4.46699476, -4.21234465, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  966. o37.BottomSurface = Enum.SurfaceType.Smooth
  967. o37.TopSurface = Enum.SurfaceType.Smooth
  968. o37.Color = Color3.new(0.623529, 0.631373, 0.67451)
  969. o37.Color = Color3.new(0.623529, 0.631373, 0.67451)
  970. mas.Parent = workspace
  971. mas:MakeJoints()
  972.  
  973. mas2 = Instance.new("Model",RightArm)
  974. mas2.Name = "Model2Script2"
  975. ov = Instance.new("Model")
  976. o2 = Instance.new("WedgePart")
  977. o3 = Instance.new("WedgePart")
  978. o4 = Instance.new("WedgePart")
  979. o5 = Instance.new("Part")
  980. o6 = Instance.new("Part")
  981. o7 = Instance.new("Part")
  982. o8 = Instance.new("WedgePart")
  983. o9m = Instance.new("Part")
  984. ov.Parent = mas2
  985. o2.Parent = ov
  986. o2.Material = Enum.Material.Neon
  987. o2.BrickColor = BrickColor.new("Really red")
  988. o2.Transparency = 0.1
  989. o2.Rotation = Vector3.new(-76.2299957, 74.5199966, -102.399994)
  990. o2.Anchored = true
  991. o2.Size = Vector3.new(0.104009911, 0.654072165, 0.0998701826)
  992. o2.CFrame = CFrame.new(-6.25214577, 2.5895319, -11.5024309, -0.057314001, 0.260602951, 0.963743508, -0.0313595012, -0.965332747, 0.259167373, 0.997871935, -0.015368619, 0.0634972602)
  993. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  994. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  995. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  996. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  997. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  998. o2.Color = Color3.new(0.705882, 0.501961, 1)
  999. o2.Color = Color3.new(0.705882, 0.501961, 1)
  1000. o3.Parent = ov
  1001. o3.Material = Enum.Material.Neon
  1002. o3.BrickColor = BrickColor.new("Really red")
  1003. o3.Transparency = 0.1
  1004. o3.Rotation = Vector3.new(-88.5499954, -6.10999966, 86.6899948)
  1005. o3.Anchored = true
  1006. o3.Size = Vector3.new(0.10142266, 0.186803788, 0.632338703)
  1007. o3.CFrame = CFrame.new(-5.97627115, 1.30611134, -11.5261898, 0.0573620088, -0.992660284, -0.106466688, 0.0314275026, -0.104794614, 0.994006455, -0.997867048, -0.0603620112, 0.0251852907)
  1008. o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1009. o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1010. o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1011. o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1012. o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1013. o3.Color = Color3.new(0.705882, 0.501961, 1)
  1014. o3.Color = Color3.new(0.705882, 0.501961, 1)
  1015. o4.Parent = ov
  1016. o4.Material = Enum.Material.Neon
  1017. o4.BrickColor = BrickColor.new("Really red")
  1018. o4.Transparency = 0.1
  1019. o4.Rotation = Vector3.new(103.110001, -74.5599976, -78.2399979)
  1020. o4.Anchored = true
  1021. o4.Size = Vector3.new(0.104009911, 0.472443491, 0.0998701826)
  1022. o4.CFrame = CFrame.new(-5.85783195, 2.78958607, -11.4734116, 0.0542620048, 0.26058802, -0.96392411, 0.0306074936, -0.965335786, -0.25924623, -0.998065889, -0.0154361119, -0.0603548028)
  1023. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1025. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1026. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1027. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1028. o4.Color = Color3.new(0.705882, 0.501961, 1)
  1029. o4.Color = Color3.new(0.705882, 0.501961, 1)
  1030. o5.Parent = ov
  1031. o5.Material = Enum.Material.Neon
  1032. o5.BrickColor = BrickColor.new("Really red")
  1033. o5.Transparency = 0.1
  1034. o5.Rotation = Vector3.new(-178.199997, 3.28999996, -105.129997)
  1035. o5.Anchored = true
  1036. o5.Size = Vector3.new(0.701161206, 0.538160622, 0.103492416)
  1037. o5.CFrame = CFrame.new(-6.22018671, 3.29966021, -11.4774265, -0.260599941, 0.963741541, 0.0573597625, 0.965332747, 0.259159267, 0.0314289927, 0.0154241361, 0.0635594428, -0.997867107)
  1038. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1042. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1043. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1044. o5.Color = Color3.new(0.705882, 0.501961, 1)
  1045. o5.Color = Color3.new(0.705882, 0.501961, 1)
  1046. o6.Parent = ov
  1047. o6.Material = Enum.Material.Neon
  1048. o6.BrickColor = BrickColor.new("Really red")
  1049. o6.Transparency = 0.1
  1050. o6.Rotation = Vector3.new(-178.199997, 3.28999996, -101.059998)
  1051. o6.Anchored = true
  1052. o6.Size = Vector3.new(0.701161206, 0.371020257, 0.103492416)
  1053. o6.CFrame = CFrame.new(-6.05381966, 2.6474514, -11.4884119, -0.191533148, 0.979808867, 0.0573569275, 0.981293619, 0.189983174, 0.0314286686, 0.0198971108, 0.062301416, -0.997867286)
  1054. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. o6.Color = Color3.new(0.705882, 0.501961, 1)
  1061. o6.Color = Color3.new(0.705882, 0.501961, 1)
  1062. o7.Parent = ov
  1063. o7.Material = Enum.Material.Neon
  1064. o7.BrickColor = BrickColor.new("Really red")
  1065. o7.Transparency = 0.1
  1066. o7.Rotation = Vector3.new(-178.199997, 3.28999996, -96.1199951)
  1067. o7.Anchored = true
  1068. o7.Size = Vector3.new(0.701161206, 0.371020257, 0.103492416)
  1069. o7.CFrame = CFrame.new(-5.95285225, 1.97883701, -11.5036192, -0.106464036, 0.99266082, 0.057359308, 0.994006693, 0.104791857, 0.0314288139, 0.025187036, 0.0603593886, -0.997867167)
  1070. o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. o7.Color = Color3.new(0.705882, 0.501961, 1)
  1077. o7.Color = Color3.new(0.705882, 0.501961, 1)
  1078. o8.Parent = ov
  1079. o8.Material = Enum.Material.Neon
  1080. o8.BrickColor = BrickColor.new("Really red")
  1081. o8.Transparency = 0.1
  1082. o8.Rotation = Vector3.new(-88.5499954, -6.10999966, -93.3099976)
  1083. o8.Anchored = true
  1084. o8.Size = Vector3.new(0.10142266, 0.186803788, 0.632338703)
  1085. o8.CFrame = CFrame.new(-5.79092312, 1.32566071, -11.5148821, -0.0573620088, 0.992660284, -0.106466688, -0.0314275026, 0.104794614, 0.994006455, 0.997867048, 0.0603620112, 0.0251852907)
  1086. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. o8.Color = Color3.new(0.705882, 0.501961, 1)
  1092. o8.Color = Color3.new(0.705882, 0.501961, 1)
  1093. o9m.Parent = ov
  1094. o9m.Material = Enum.Material.Neon
  1095. o9m.BrickColor = BrickColor.new("Really red")
  1096. o9m.Transparency = 0.1
  1097. o9m.Rotation = Vector3.new(-178.199997, 3.28999996, -118.769997)
  1098. o9m.Anchored = true
  1099. o9m.Size = Vector3.new(1.56116068, 0.538160563, 0.102974951)
  1100. o9m.CFrame = CFrame.new(-6.66080666, 4.25504208, -11.4726496, -0.480506241, 0.875113606, 0.0573588945, 0.876999617, 0.479481548, 0.031427063, 2.6898428e-07, 0.065402478, -0.997867227)
  1101. o9m.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1102. o9m.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1103. o9m.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. o9m.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. o9m.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1106. o9m.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. o9m.Color = Color3.new(0.705882, 0.501961, 1)
  1108. o9m.Color = Color3.new(0.705882, 0.501961, 1)
  1109. mas2.Parent = workspace
  1110. mas2:MakeJoints()
  1111.  
  1112. nightfallknifelocater = Instance.new("Part",RightArm)
  1113. nightfallknifelocater.CanCollide = false
  1114. nightfallknifelocater.Transparency = 1
  1115. nightfallknifelocater.Size = Vector3.new(1,1,1)
  1116. ng2 = weldBetween(nightfallknifelocater,RightArm)
  1117. ng2.C0 = CFrame.new(-6.2,4.3,-11.35) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-18))
  1118.  
  1119.  
  1120. nightfallmasklocater = Instance.new("Part",Head)
  1121. nightfallmasklocater.CanCollide = false
  1122. nightfallmasklocater.Transparency = 1
  1123. nightfallmasklocater.Size = Vector3.new(1,1,1)
  1124. ng = weldBetween(nightfallmasklocater,Head)
  1125. ng.C0 = CFrame.new(12.6,4.5,-3.72)
  1126.  
  1127. hair = Instance.new("Part",Character)
  1128. hair.Size = Vector3.new(2,2,2)
  1129. hair.CFrame = Head.CFrame
  1130. hair.CanCollide = false
  1131. hairweld = Instance.new("Weld",hair)
  1132. hairweld.Part0 = hair
  1133. hairweld.Part1 = Head
  1134. hairweld.C0 = hair.CFrame:inverse() * Head.CFrame * CFrame.new(0,-.3,0)
  1135. mhair = Instance.new("SpecialMesh", hair)
  1136. mhair.MeshType = "FileMesh"
  1137. mhair.Scale = Vector3.new(1.1,1.1,1.1)
  1138. mhair.MeshId,mhair.TextureId = 'http://www.roblox.com/asset/?id=17425061','http://www.roblox.com/asset/?id=20908573'
  1139.  
  1140. function weld()
  1141. local parts,last = {}
  1142. local function scan(o1)
  1143. for _,v in pairs(o1:GetChildren()) do
  1144. if (v:IsA("BasePart")) then
  1145. if (last) then
  1146. local w = Instance.new("Weld")
  1147. w.Name = ("%s_Weld"):format(v.Name)
  1148. w.Part0,w.Part1 = last,nightfallmasklocater
  1149. w.C0 = last.CFrame:inverse()
  1150. w.Parent = last
  1151. end
  1152. last = v
  1153. table.insert(parts,v)
  1154. end
  1155. scan(v)
  1156. end
  1157. end
  1158. scan(o1)
  1159. for _,v in pairs(parts) do
  1160. v.CanCollide = false
  1161. v.Anchored = false
  1162. v.Parent = Head
  1163. end
  1164. end
  1165.  
  1166. weld()
  1167.  
  1168. function weld2()
  1169. local parts,last = {}
  1170. local function scan(ov)
  1171. for _,v in pairs(ov:GetChildren()) do
  1172. if (v:IsA("BasePart")) then
  1173. if (last) then
  1174. local w = Instance.new("Weld")
  1175. w.Name = ("%s_Weld"):format(v.Name)
  1176. w.Part0,w.Part1 = last,nightfallknifelocater
  1177. w.C0 = last.CFrame:inverse()
  1178. w.Parent = last
  1179. end
  1180. last = v
  1181. table.insert(parts,v)
  1182. end
  1183. scan(v)
  1184. end
  1185. end
  1186. scan(ov)
  1187. for _,v in pairs(parts) do
  1188. v.CanCollide = false
  1189. v.Anchored = false
  1190. v.Parent = RightArm
  1191. end
  1192. end
  1193.  
  1194. weld2()
  1195.  
  1196. for i,v in pairs(Character:GetChildren()) do
  1197. if v.ClassName == "Pants" or v.ClassName == "Hat" or v.ClassName == "CharacterMesh" or v.ClassName == "Shirt Graphic" then
  1198. v:Remove()
  1199. end
  1200. end
  1201.  
  1202. shirt = Instance.new("Shirt", Character)
  1203. shirt.Name = "Shirt"
  1204. Character.Shirt.ShirtTemplate = "rbxassetid://96203807"
  1205. pants = Instance.new("Pants", Character)
  1206. pants.Name = "Pants"
  1207. Character.Pants.PantsTemplate = "rbxassetid://96203772"
  1208.  
  1209. coroutine.wrap(function()
  1210. while wait() do
  1211. if secondform then
  1212. Head.face.Texture = "rbxassetid://1127768638"
  1213. else
  1214. Head.face.Texture = "rbxassetid://629947734"
  1215. end
  1216. hum.WalkSpeed = ws
  1217. hum.JumpPower = jp
  1218. LeftArm.BrickColor = BrickColor.new("Really black")
  1219. RightArm.BrickColor = BrickColor.new("Really black")
  1220. Head.BrickColor = BrickColor.new("Really black")
  1221. Torso.BrickColor = BrickColor.new("Really black")
  1222. LeftLeg.BrickColor = BrickColor.new("Really black")
  1223. RightLeg.BrickColor = BrickColor.new("Really black")
  1224. end
  1225. end)()
  1226. godmode = coroutine.wrap(function()
  1227. for i,v in pairs(Character:GetChildren()) do
  1228. if v:IsA("BasePart") and v ~= Root then
  1229. v.Anchored = false
  1230. end
  1231. end
  1232. hum.MaxHealth = math.huge
  1233. wait(.00001)
  1234. hum.Health = math.huge
  1235. end)
  1236. godmode()
  1237. ff = Instance.new("ForceField", Character)
  1238. ff.Visible = false
  1239.  
  1240. coroutine.wrap(function()
  1241. for i,v in pairs(Character:GetChildren()) do
  1242. if v.Name == "Animate" then v:Remove()
  1243. end
  1244. end
  1245. end)()
  1246.  
  1247. function damagealll(Radius,Position)
  1248. local Returning = {}
  1249. for _,v in pairs(workspace:GetChildren()) do
  1250. if v~=Character and v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Torso') or v:FindFirstChild('UpperTorso') then
  1251. if v:FindFirstChild("Torso") then
  1252. local Mag = (v.Torso.Position - Position).magnitude
  1253. if Mag < Radius then
  1254. table.insert(Returning,v)
  1255. end
  1256. elseif v:FindFirstChild("UpperTorso") then
  1257. local Mag = (v.UpperTorso.Position - Position).magnitude
  1258. if Mag < Radius then
  1259. table.insert(Returning,v)
  1260. end
  1261. end
  1262. end
  1263. end
  1264. return Returning
  1265. end
  1266.  
  1267. ArtificialHB = Instance.new("BindableEvent", script)
  1268. ArtificialHB.Name = "Heartbeat"
  1269. script:WaitForChild("Heartbeat")
  1270.  
  1271. frame = 1 / 60
  1272. tf = 0
  1273. allowframeloss = false
  1274. tossremainder = false
  1275.  
  1276.  
  1277. lastframe = tick()
  1278. script.Heartbeat:Fire()
  1279.  
  1280.  
  1281. game:GetService("RunService").Heartbeat:connect(function(s, p)
  1282. tf = tf + s
  1283. if tf >= frame then
  1284. if allowframeloss then
  1285. script.Heartbeat:Fire()
  1286. lastframe = tick()
  1287. else
  1288. for i = 1, math.floor(tf / frame) do
  1289. script.Heartbeat:Fire()
  1290. end
  1291. lastframe = tick()
  1292. end
  1293. if tossremainder then
  1294. tf = 0
  1295. else
  1296. tf = tf - frame * math.floor(tf / frame)
  1297. end
  1298. end
  1299. end)
  1300.  
  1301. function swait(num)
  1302. if num == 0 or num == nil then
  1303. game:service("RunService").Stepped:wait(0)
  1304. else
  1305. for i = 0, num do
  1306. game:service("RunService").Stepped:wait(0)
  1307. end
  1308. end
  1309. end
  1310.  
  1311. for _,n in pairs(Character:GetChildren()) do
  1312. if n:IsA("Accessory") then n:Remove() end
  1313. end
  1314. for _,x in pairs(Character:GetChildren()) do
  1315. if x:IsA("Decal") then x:Remove() end
  1316. end
  1317.  
  1318. function ray(pos, dir, rang, ignoredesc)
  1319. return workspace:FindPartOnRay(Ray.new(pos, dir.unit * rang), ignoredesc)
  1320. end
  1321.  
  1322. function ray2(startpos, endpos, distance, ignore)
  1323. local dir = CFrame.new(startpos,endpos).lookVector
  1324. return ray(startpos, dir, distance, ignore)
  1325. end
  1326.  
  1327. coroutine.wrap(function()
  1328. while true do
  1329. for i,v in pairs(Torso:GetChildren()) do
  1330. if v.Name == "explodball" then
  1331. v.Size = v.Size + Vector3.new(2,2,2)
  1332. v.Transparency = v.Transparency + .08
  1333. end
  1334. end
  1335. for i,v in pairs(Torso:GetDescendants()) do
  1336. if v.Name == "explodmesh" then
  1337. v.Scale = v.Scale + Vector3.new(.01,0,.01)
  1338. v.Parent.Transparency = v.Parent.Transparency + .06
  1339. end
  1340. end
  1341. for i,v in pairs(Torso:GetDescendants()) do
  1342. if v.Name == "explodmesh2" then
  1343. v.Scale = v.Scale + Vector3.new(1.5,0,1.5)
  1344. v.Parent.Transparency = v.Parent.Transparency + .06
  1345. end
  1346. end
  1347. swait()
  1348. end
  1349. end)()
  1350.  
  1351. function SOUND(PARENT,ID,VOL,LOOP,REMOVE)
  1352. so = Instance.new("Sound")
  1353. so.Parent = PARENT
  1354. so.SoundId = "rbxassetid://"..ID
  1355. so.Volume = VOL
  1356. so.Looped = LOOP
  1357. so:Play()
  1358. removeuseless:AddItem(so,REMOVE)
  1359. end
  1360.  
  1361. mouse.Button1Down:connect(function()
  1362. if debounce then return end
  1363. debounce = true
  1364. if combo1 then
  1365. combo1 = false
  1366. combo2 = true
  1367. combo3 = false
  1368. attacking = true
  1369. ws = 12
  1370. g1 = Instance.new("BodyGyro", Root)
  1371. g1.D = 175
  1372. g1.P = 20000
  1373. g1.MaxTorque = Vector3.new(0,9000,0)
  1374. for i = 1, 12 do
  1375. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1376. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.4,-.2,-.2) * CFrame.Angles(math.rad(90),math.rad(130),math.rad(0)),.3)
  1377. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1378. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-2), math.rad(40), math.rad(0)), 0.3)
  1379. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1380. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1381. swait()
  1382. end
  1383. tr1.Enabled = true
  1384. slash = slasher[math.random(1,#slasher)]
  1385. slashs.SoundId = "rbxassetid://"..slash
  1386. slashs:Play()
  1387. hitbox = Instance.new("Part",Torso)
  1388. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1389. hitbox.Anchored = true
  1390. hitbox.Transparency = 1
  1391. hitbox.Size = Vector3.new(1,1,1)
  1392. hitbox.CanCollide = false
  1393. Hit = damagealll(3,hitbox.Position)
  1394. for _,v in pairs(Hit) do
  1395. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1396. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1397. slash2 = slasher2[math.random(1,#slasher2)]
  1398. local damagesound = Instance.new("Sound",slachtoffer.Parent:FindFirstChild("Torso") or slachtoffer.Parent:FindFirstChild("UpperTorso"))
  1399. damagesound.SoundId = "rbxassetid://"..slash2
  1400. damagesound.Volume = 8
  1401. damagesound:Play()
  1402. removeuseless:AddItem(damagesound,4)
  1403. slachtoffer:TakeDamage(math.random(29,52))
  1404. end
  1405. end
  1406. ws = 6
  1407. for i = 1, 12 do
  1408. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1409. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.2,1.4,-.3) * CFrame.Angles(math.rad(90),math.rad(230),math.rad(0)),.3)
  1410. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1411. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-60), math.rad(0)), 0.3)
  1412. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1413. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1414. swait()
  1415. end
  1416. removeuseless:AddItem(g1,.001)
  1417. hitbox:Remove()
  1418. tr1.Enabled = false
  1419. attacking = false
  1420. debounce = false
  1421. ws = 19
  1422. elseif combo2 then
  1423. combo1 = false
  1424. combo2 = false
  1425. combo3 = true
  1426. attacking = true
  1427. ws = 12
  1428. g1 = Instance.new("BodyGyro", Root)
  1429. g1.D = 175
  1430. g1.P = 20000
  1431. g1.MaxTorque = Vector3.new(0,9000,0)
  1432. for i = 1, 12 do
  1433. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1434. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1435. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-40), math.rad(0)), 0.3)
  1436. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.8,-0) * CFrame.Angles(math.rad(-120),math.rad(99),math.rad(0)),.3)
  1437. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1438. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1439. swait()
  1440. end
  1441. tr1.Enabled = true
  1442. slash = slasher[math.random(1,#slasher)]
  1443. slashs.SoundId = "rbxassetid://"..slash
  1444. slashs:Play()
  1445. hitbox = Instance.new("Part",Torso)
  1446. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1447. hitbox.Anchored = true
  1448. hitbox.Transparency = 1
  1449. hitbox.Size = Vector3.new(1,1,1)
  1450. hitbox.CanCollide = false
  1451. Hit = damagealll(3,hitbox.Position)
  1452. for _,v in pairs(Hit) do
  1453. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1454. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1455. slachtoffer:TakeDamage(math.random(34,42))
  1456. slash2 = slasher2[math.random(1,#slasher2)]
  1457. local damagesound = Instance.new("Sound",slachtoffer.Parent:FindFirstChild("Torso") or slachtoffer.Parent:FindFirstChild("UpperTorso"))
  1458. damagesound.SoundId = "rbxassetid://"..slash2
  1459. damagesound.Volume = 8
  1460. damagesound:Play()
  1461. removeuseless:AddItem(damagesound,4)
  1462. end
  1463. end
  1464. for i = 1, 12 do
  1465. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1466. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1467. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-2), math.rad(40), math.rad(0)), 0.3)
  1468. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.8,-.25,0) * CFrame.Angles(math.rad(-60),math.rad(-70),math.rad(0)),.3)
  1469. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1470. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1471. swait()
  1472. end
  1473. removeuseless:AddItem(g1,.001)
  1474. tr1.Enabled = false
  1475. debounce = false
  1476. hitbox:Remove()
  1477. attacking = false
  1478. ws = 19
  1479. elseif combo3 then
  1480. combo1 = true
  1481. combo2 = false
  1482. combo3 = false
  1483. attacking = true
  1484. spinny = 0
  1485. ws = 16
  1486. local spinnysound = Instance.new("Sound",Torso)
  1487. spinnysound.SoundId = "rbxassetid://1290491542"
  1488. spinnysound.Volume = 8
  1489. spinnysound.Pitch = .8
  1490. spinnysound:Play()
  1491. tr1.Enabled = true
  1492. hitbox = Instance.new("Part",Torso)
  1493. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1494. hitbox.Anchored = true
  1495. hitbox.Transparency = 1
  1496. hitbox.Size = Vector3.new(1,1,1)
  1497. hitbox.CanCollide = false
  1498. if spin1 then
  1499. spin1 = false
  1500. spin2 = true
  1501. else
  1502. spin1 = true
  1503. spin2 = false
  1504. end
  1505. for i = 1, 45 do
  1506. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1507. local Hit = damagealll(3,hitbox.Position)
  1508. for _,v in pairs(Hit) do
  1509. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1510. local slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1511. slachtoffer:TakeDamage(math.random(1,3))
  1512. end
  1513. end
  1514. if spin1 then
  1515. spinny = spinny - 45
  1516. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.4,.5) * CFrame.Angles(math.rad(-90),math.rad(90),math.rad(0)),.3)
  1517. LEFTARMLERP.C0 = LEFTARMLERP.C0:Lerp(CFrame.new(1.55,.55,0)* CFrame.Angles(math.rad(10),math.rad(-5),math.rad(35)),.3)
  1518. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.3)
  1519. ROOTLERP.C1 = ROOTLERP.C1:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(spinny), math.rad(0)), 0.3)
  1520. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1521. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1522. elseif spin2 then
  1523. spinny = spinny - 45
  1524. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.4,.5) * CFrame.Angles(math.rad(-90),math.rad(90),math.rad(0)),.3)
  1525. LEFTARMLERP.C0 = LEFTARMLERP.C0:Lerp(CFrame.new(1.55,.55,0)* CFrame.Angles(math.rad(10),math.rad(-5),math.rad(35)),.3)
  1526. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-40)), 0.3)
  1527. ROOTLERP.C1 = ROOTLERP.C1:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(spinny), math.rad(0)), 0.3)
  1528. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1529. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1530. end
  1531. swait()
  1532. end
  1533. tr1.Enabled = false
  1534. spinnysound:Remove()
  1535. attacking = false
  1536. debounce = false
  1537. spinny = 0
  1538. ROOTLERP.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1539. ws = 19
  1540. end
  1541. end)
  1542.  
  1543. mouse.KeyDown:connect(function(Press)
  1544. Press=Press:lower()
  1545. if Press=='q' then
  1546. if mouse.Target ~= nil then
  1547. if mouse.Target.Parent ~= Character and mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil and mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  1548. if debounce then return end
  1549. debounce = true
  1550. attacking = true
  1551. enemy = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1552. SOUND(Torso,862693565,10,false,5)
  1553. Character.Shirt.ShirtTemplate = "rbxassetid://0"
  1554. Character.Pants.PantsTemplate = "rbxassetid://0"
  1555. arm1.OverlayTextureId = 0
  1556. arm2.OverlayTextureId = 653553298
  1557. RightArm.BrickColor = BrickColor.new("Really black")
  1558. for i = 1, 400 do
  1559. if targetfound then break end
  1560. local Hit = damagealll(5,Torso.Position)
  1561. for _,v in pairs(Hit) do
  1562. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Parent.Name == enemy.Parent.Name then
  1563. targetfound = true
  1564. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1565. end
  1566. end
  1567. if enemy.RigType == Enum.HumanoidRigType.R15 then
  1568. hum:MoveTo(enemy.Parent:FindFirstChild("UpperTorso").Position)
  1569. else
  1570. hum:MoveTo(enemy.Parent:FindFirstChild("Torso").Position)
  1571. end
  1572. footsteps.Volume = 2
  1573. footsteps.Pitch = 2.2
  1574. ws = 30
  1575. change = 2
  1576. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  1577. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  1578. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.07 + 0.2*math.sin(sine/3.5), 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  1579. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9 - 0.35 * math.cos(sine/7)/2.8, -.3 + 0.2 - math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) + -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/7), math.rad(0), math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  1580. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9 + 0.35 * math.cos(sine/7)/2.8, -.3 + 0.2 + math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) - -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0) , math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  1581. swait()
  1582. end
  1583. if targetfound then
  1584. ws = 0
  1585. enemy.WalkSpeed = 0
  1586. SOUND(rightlocation,862701802,9,false,5)
  1587. footsteps.Volume = 0
  1588. footsteps.Pitch = 1.6
  1589. for i = 1, 12 do
  1590. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1591. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.175, 0) * CFrame.Angles(math.rad(0), math.rad(60), math.rad(0)), 0.3)
  1592. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1593. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1594. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.79,.05) * CFrame.Angles(math.rad(190),math.rad(0),math.rad(-10)),.3)
  1595. swait()
  1596. end
  1597. locationpartz = Instance.new("Part",Torso)
  1598. locationpartz.Size = Vector3.new(1,1,1)
  1599. locationpartz.Anchored = false
  1600. locationpartz.Transparency = 1
  1601. locationpartz.CanCollide = false
  1602. locationpartz.CFrame = rightlocation.CFrame * CFrame.new(0,-1.5,0)
  1603. if enemy.RigType == Enum.HumanoidRigType.R15 then
  1604. enemy.Parent.UpperTorso.CFrame = locationpartz.CFrame * CFrame.new(1,0,0) * CFrame.Angles(math.rad(-90),0,0)
  1605. else
  1606. enemy.Parent.Torso.CFrame = locationpartz.CFrame * CFrame.new(1,0,0) * CFrame.Angles(math.rad(-90),0,0)
  1607. end
  1608. if enemy.RigType == Enum.HumanoidRigType.R15 then
  1609. weldofweld = weldBetween(locationpartz,enemy.Parent.UpperTorso)
  1610. else
  1611. weldofweld = weldBetween(locationpartz,enemy.Parent.Torso)
  1612. end
  1613. weldofweld.C0 = CFrame.Angles(math.rad(-90),0,0)
  1614. locationpartz.Anchored = true
  1615. SOUND(RightArm,877870515,7,false,6)
  1616. for i = 1, 250 do
  1617. locationpartz.CFrame = rightlocation.CFrame * CFrame.new(0,-1.5,0)
  1618. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.44,-.125) * CFrame.Angles(math.rad(48),math.rad(0),math.rad(30)), 0.02)
  1619. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.175, 0) * CFrame.Angles(math.rad(0), math.rad(60), math.rad(0)), 0.03)
  1620. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.03)
  1621. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.03)
  1622. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.79,.05) * CFrame.Angles(math.rad(190),math.rad(0),math.rad(-12)),.03)
  1623. swait()
  1624. end
  1625. if enemy.RigType == Enum.HumanoidRigType.R15 then
  1626. ded = Instance.new("Sound",enemy.Parent.UpperTorso)
  1627. else
  1628. ded = Instance.new("Sound",enemy.Parent.Torso)
  1629. end
  1630. ded.SoundId = "rbxassetid://429400881"
  1631. ded.Volume = 9
  1632. ded.Pitch = .9
  1633. ded:Play()
  1634. coroutine.wrap(function()
  1635. local energyplosion = Instance.new("Part",Torso)
  1636. if enemy.RigType == Enum.HumanoidRigType.R15 then
  1637. energyplosion.CFrame = enemy.Parent.UpperTorso.CFrame
  1638. else
  1639. energyplosion.CFrame = enemy.Parent.Torso.CFrame
  1640. end
  1641. energyplosion.Size = Vector3.new(.1,.1,.1)
  1642. energyplosion.BrickColor = BrickColor.new("Really red")
  1643. energyplosion.Anchored = true
  1644. energyplosion.CanCollide = false
  1645. energyplosion.Transparency = 0
  1646. energyplosion.Shape = "Ball"
  1647. energyplosion.Material = "Neon"
  1648. for i = 1, 20 do
  1649. enemy.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1650. hum.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1651. energyplosion.Size = energyplosion.Size + Vector3.new(2,2,2)
  1652. energyplosion.Transparency = energyplosion.Transparency + .05
  1653. swait()
  1654. end
  1655. hum.CameraOffset = Vector3.new(0,0,0)
  1656. enemy.CameraOffset = Vector3.new(0,0,0)
  1657. energyplosion:Remove()
  1658. end)()
  1659. locationpartz:Remove()
  1660. targetfound = false
  1661. arm1.MeshId = 303665934
  1662. arm1.OverlayTextureId = 1539341292
  1663. arm2.MeshId = 98332573
  1664. arm2.OverlayTextureId = 6347925
  1665. footsteps.Volume = 0
  1666. Character.Shirt.ShirtTemplate = "rbxassetid://96203807"
  1667. Character.Pants.PantsTemplate = "rbxassetid://96203772"
  1668. enemy.Parent:BreakJoints()
  1669. coroutine.wrap(function()
  1670. tauntsoundz = Instance.new("Sound", Head)
  1671. tauntsoundz.Volume = 10
  1672. tauntsoundz.SoundId = "rbxassetid://246480487"
  1673. tauntsoundz.Looped = false
  1674. tauntsoundz:Play()
  1675. wait(3)
  1676. wait(tauntsoundz.TimeLength)
  1677. tauntsoundz:Remove()
  1678. end)()
  1679. change = .5
  1680. for i = 1, 90 do
  1681. swait()
  1682. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  1683. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  1684. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  1685. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.64 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(45)), 0.2)
  1686. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  1687. end
  1688. attacking = false
  1689. debounce = false
  1690. else
  1691. footsteps.Pitch = 1.6
  1692. targetfound = false
  1693. arm1.MeshId = 303665934
  1694. arm1.OverlayTextureId = 1539341292
  1695. arm2.MeshId = 98332573
  1696. arm2.OverlayTextureId = 6347925
  1697. footsteps.Volume = 0
  1698. Character.Shirt.ShirtTemplate = "rbxassetid://96203807"
  1699. debounce = false
  1700. attacking = false
  1701. end
  1702. end
  1703. end
  1704. elseif Press=='y' then
  1705. if debounce then return end
  1706. debounce = true
  1707. attacking = true
  1708. ws = 12
  1709. g1 = Instance.new("BodyGyro", Root)
  1710. g1.D = 175
  1711. g1.P = 20000
  1712. g1.MaxTorque = Vector3.new(0,9000,0)
  1713. local chargo = Instance.new("Sound",rightlocation)
  1714. chargo.SoundId = "rbxassetid://306181935"
  1715. chargo.Volume = 7
  1716. chargo.Looped = false
  1717. chargo.Pitch = 1.1
  1718. chargo:Play()
  1719. removeuseless:AddItem(chargo,5)
  1720. for i = 1, 120 do
  1721. coroutine.wrap(function()
  1722. local sk = Instance.new("Part",Torso)
  1723. sk.CanCollide = false
  1724. sk.Anchored = true
  1725. sk.BrickColor = BrickColor.new("Really red")
  1726. sk.Name = "sk"
  1727. sk.CFrame = rightlocation.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1728. local skmesh = Instance.new("SpecialMesh",sk)
  1729. skmesh.MeshId = "rbxassetid://662586858"
  1730. skmesh.Name = "wave"
  1731. skmesh.Scale = Vector3.new(.01,.001,.01)
  1732. for i = 1, 20 do
  1733. skmesh.Scale = skmesh.Scale + Vector3.new(.01,0,.01)
  1734. sk.Transparency = sk.Transparency + .05
  1735. swait()
  1736. end
  1737. sk:Remove()
  1738. end)()
  1739. coroutine.wrap(function()
  1740. local wshockwave = Instance.new("Part", Torso)
  1741. wshockwave.Size = Vector3.new(1,1,1)
  1742. wshockwave.CanCollide = false
  1743. wshockwave.Anchored = true
  1744. wshockwave.Transparency = .45
  1745. wshockwave.BrickColor = BrickColor.new("Really red")
  1746. wshockwave.CFrame = CFrame.new(rightlocation.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1747. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1748. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1749. wshockwavemesh.Name = "wswm"
  1750. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1751. removeuseless:AddItem(wshockwave,2)
  1752. for i = 1, 20 do
  1753. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(1,0,1)
  1754. wshockwave.Transparency = wshockwave.Transparency + .05
  1755. swait()
  1756. end
  1757. wshockwave:Remove()
  1758. end)()
  1759. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1760. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1761. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-40), math.rad(0)), 0.03)
  1762. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.8,-0) * CFrame.Angles(math.rad(-120),math.rad(99),math.rad(0)),.03)
  1763. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.03)
  1764. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.03)
  1765. swait()
  1766. end
  1767. coroutine.wrap(function()
  1768. local bullet = Instance.new("Part",Torso)
  1769. bullet.CanCollide = false
  1770. bullet.Anchored = false
  1771. bullet.Size = Vector3.new(2,2,2)
  1772. bullet.Transparency = .5
  1773. bullet.Shape = "Ball"
  1774. bullet.Material = "Neon"
  1775. bullet.BrickColor = BrickColor.new("Really red")
  1776. bullet.CFrame = rightlocation.CFrame
  1777. energloop = Instance.new("Sound",bullet)
  1778. energloop.Volume = 6
  1779. energloop.SoundId = "rbxassetid://2607597779"
  1780. energloop.Looped = true
  1781. MAKETRAIL(bullet,Vector3.new(.2,.2,0),Vector3.new(-.2,-.2,0),.5,ColorSequence.new(BrickColor.new("Really red").Color,BrickColor.new("Really red").Color))
  1782. local bov = Instance.new("BodyVelocity",bullet)
  1783. bov.maxForce = Vector3.new(99999,99999,99999)
  1784. bullet.CFrame = CFrame.new(bullet.Position,mouse.Hit.p)
  1785. bov.velocity = bullet.CFrame.lookVector*180
  1786. for i = 1, 225 do
  1787. local Hit = damagealll(15,bullet.Position)
  1788. for _,v in pairs(Hit) do
  1789. if v:FindFirstChildOfClass("Humanoid") and v.Name ~= Player.Name then
  1790. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1791. slachtoffer:TakeDamage(math.random(3,10))
  1792. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1793. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1794. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1795. vel.velocity = CFrame.new(bullet.Position,torso.Position).lookVector*120
  1796. removeuseless:AddItem(vel,.1)
  1797. end
  1798. end
  1799. local sk = Instance.new("Part",Torso)
  1800. sk.CanCollide = false
  1801. sk.Anchored = true
  1802. sk.BrickColor = BrickColor.new("Really red")
  1803. sk.Name = "sk"
  1804. sk.CFrame = bullet.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1805. local skmesh = Instance.new("SpecialMesh",sk)
  1806. skmesh.MeshId = "rbxassetid://662586858"
  1807. skmesh.Name = "wave"
  1808. skmesh.Scale = Vector3.new(.01,.001,.01)
  1809. coroutine.wrap(function()
  1810. for i = 1, 20 do
  1811. skmesh.Scale = skmesh.Scale + Vector3.new(.03,0,.03)
  1812. sk.Transparency = sk.Transparency + .05
  1813. swait()
  1814. end
  1815. sk:Remove()
  1816. end)()
  1817. local wshockwave = Instance.new("Part", Torso)
  1818. wshockwave.Size = Vector3.new(1,1,1)
  1819. wshockwave.CanCollide = false
  1820. wshockwave.Anchored = true
  1821. wshockwave.Transparency = .45
  1822. wshockwave.BrickColor = BrickColor.new("Really red")
  1823. wshockwave.CFrame = CFrame.new(bullet.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1824. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1825. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1826. wshockwavemesh.Name = "wswm"
  1827. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1828. removeuseless:AddItem(wshockwave,2)
  1829. coroutine.wrap(function()
  1830. for i = 1, 20 do
  1831. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(3,0,3)
  1832. wshockwave.Transparency = wshockwave.Transparency + .05
  1833. swait()
  1834. end
  1835. wshockwave:Remove()
  1836. end)()
  1837. swait()
  1838. end
  1839. bullet:Remove()
  1840. end)()
  1841. energloop:Play()
  1842. local bems = Instance.new("Sound",rightlocation)
  1843. bems.SoundId = "rbxassetid://1351572613"
  1844. bems.Volume = 8
  1845. bems:Play()
  1846. removeuseless:AddItem(bems,5)
  1847. for i = 1, 12 do
  1848. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.2,1.4,-.3) * CFrame.Angles(math.rad(90),math.rad(230),math.rad(0)),.3)
  1849. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1850. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-8), math.rad(60), math.rad(0)), 0.3)
  1851. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1852. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1853. swait()
  1854. end
  1855. removeuseless:AddItem(g1,.001)
  1856. debounce = false
  1857. attacking = false
  1858. elseif Press=='u' then
  1859. if mouse.Target ~= nil then
  1860. if mouse.Target.Parent ~= Character and mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil and mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  1861. if debounce then return end
  1862. debounce = true
  1863. attacking = true
  1864. enemyhum = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1865. ETorso = enemyhum.Parent:FindFirstChild("Torso") or enemyhum.Parent:FindFirstChild("LowerTorso")
  1866. ws = 12
  1867. g1 = Instance.new("BodyGyro", Root)
  1868. g1.D = 175
  1869. g1.P = 20000
  1870. g1.MaxTorque = Vector3.new(0,9000,0)
  1871. local chargo = Instance.new("Sound",rightlocation)
  1872. chargo.SoundId = "rbxassetid://306181935"
  1873. chargo.Volume = 7
  1874. chargo.Looped = false
  1875. chargo.Pitch = 1.1
  1876. chargo:Play()
  1877. removeuseless:AddItem(chargo,5)
  1878. for i = 1, 120 do
  1879. coroutine.wrap(function()
  1880. local sk = Instance.new("Part",Torso)
  1881. sk.CanCollide = false
  1882. sk.Anchored = true
  1883. sk.BrickColor = BrickColor.new("Really red")
  1884. sk.Name = "sk"
  1885. sk.CFrame = rightlocation.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1886. local skmesh = Instance.new("SpecialMesh",sk)
  1887. skmesh.MeshId = "rbxassetid://662586858"
  1888. skmesh.Name = "wave"
  1889. skmesh.Scale = Vector3.new(.01,.001,.01)
  1890. for i = 1, 20 do
  1891. skmesh.Scale = skmesh.Scale + Vector3.new(.01,0,.01)
  1892. sk.Transparency = sk.Transparency + .05
  1893. swait()
  1894. end
  1895. sk:Remove()
  1896. end)()
  1897. coroutine.wrap(function()
  1898. local wshockwave = Instance.new("Part", Torso)
  1899. wshockwave.Size = Vector3.new(1,1,1)
  1900. wshockwave.CanCollide = false
  1901. wshockwave.Anchored = true
  1902. wshockwave.Transparency = .45
  1903. wshockwave.BrickColor = BrickColor.new("Really red")
  1904. wshockwave.CFrame = CFrame.new(rightlocation.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1905. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1906. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1907. wshockwavemesh.Name = "wswm"
  1908. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1909. removeuseless:AddItem(wshockwave,2)
  1910. for i = 1, 20 do
  1911. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(1,0,1)
  1912. wshockwave.Transparency = wshockwave.Transparency + .05
  1913. swait()
  1914. end
  1915. wshockwave:Remove()
  1916. end)()
  1917. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1918. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1919. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-40), math.rad(0)), 0.03)
  1920. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.8,-0) * CFrame.Angles(math.rad(-120),math.rad(99),math.rad(0)),.03)
  1921. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.03)
  1922. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.03)
  1923. swait()
  1924. end
  1925. coroutine.wrap(function()
  1926. local bullet = Instance.new("Part",Torso)
  1927. bullet.CanCollide = false
  1928. bullet.Anchored = false
  1929. bullet.Size = Vector3.new(2,2,2)
  1930. bullet.Transparency = .5
  1931. bullet.Shape = "Ball"
  1932. bullet.Material = "Neon"
  1933. bullet.BrickColor = BrickColor.new("Really red")
  1934. bullet.CFrame = rightlocation.CFrame
  1935. energloop = Instance.new("Sound",bullet)
  1936. energloop.Volume = 6
  1937. energloop.SoundId = "rbxassetid://2607597779"
  1938. energloop.Looped = true
  1939. MAKETRAIL(bullet,Vector3.new(.2,.2,0),Vector3.new(-.2,-.2,0),.5,ColorSequence.new(BrickColor.new("Really red").Color,BrickColor.new("Really red").Color))
  1940. maxsped = 45
  1941. local bov = Instance.new("RocketPropulsion",bullet)
  1942. bov.MaxThrust = 4000
  1943. bov.MaxSpeed = maxsped
  1944. bov.MaxTorque = Vector3.new(99999999,99999999,99999999)
  1945. bov.Target = ETorso
  1946. bov.TargetRadius = math.huge
  1947. bov:fire()
  1948. for i = 1, 1001 do
  1949. maxsped = maxsped + 1
  1950. bov.MaxSpeed = maxsped
  1951. local Hit = damagealll(15,bullet.Position)
  1952. for _,v in pairs(Hit) do
  1953. if v:FindFirstChildOfClass("Humanoid") and v.Name ~= Player.Name then
  1954. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1955. slachtoffer:TakeDamage(1)
  1956. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1957. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1958. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1959. vel.velocity = CFrame.new(bullet.Position,torso.Position).lookVector*150
  1960. removeuseless:AddItem(vel,.1)
  1961. end
  1962. end
  1963. local sk = Instance.new("Part",Torso)
  1964. sk.CanCollide = false
  1965. sk.Anchored = true
  1966. sk.BrickColor = BrickColor.new("Really red")
  1967. sk.Name = "sk"
  1968. sk.CFrame = bullet.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1969. local skmesh = Instance.new("SpecialMesh",sk)
  1970. skmesh.MeshId = "rbxassetid://662586858"
  1971. skmesh.Name = "wave"
  1972. skmesh.Scale = Vector3.new(.01,.001,.01)
  1973. coroutine.wrap(function()
  1974. for i = 1, 20 do
  1975. skmesh.Scale = skmesh.Scale + Vector3.new(.03,0,.03)
  1976. sk.Transparency = sk.Transparency + .05
  1977. swait()
  1978. end
  1979. sk:Remove()
  1980. end)()
  1981. local wshockwave = Instance.new("Part", Torso)
  1982. wshockwave.Size = Vector3.new(1,1,1)
  1983. wshockwave.CanCollide = false
  1984. wshockwave.Anchored = true
  1985. wshockwave.Transparency = .45
  1986. wshockwave.BrickColor = BrickColor.new("Really red")
  1987. wshockwave.CFrame = CFrame.new(bullet.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1988. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1989. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1990. wshockwavemesh.Name = "wswm"
  1991. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1992. removeuseless:AddItem(wshockwave,2)
  1993. coroutine.wrap(function()
  1994. for i = 1, 20 do
  1995. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(3,0,3)
  1996. wshockwave.Transparency = wshockwave.Transparency + .05
  1997. swait()
  1998. end
  1999. wshockwave:Remove()
  2000. end)()
  2001. swait()
  2002. end
  2003. bullet:Remove()
  2004. end)()
  2005. energloop:Play()
  2006. local bems = Instance.new("Sound",rightlocation)
  2007. bems.SoundId = "rbxassetid://1351572613"
  2008. bems.Volume = 8
  2009. bems:Play()
  2010. removeuseless:AddItem(bems,5)
  2011. for i = 1, 12 do
  2012. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.2,1.4,-.3) * CFrame.Angles(math.rad(90),math.rad(230),math.rad(0)),.3)
  2013. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  2014. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-8), math.rad(60), math.rad(0)), 0.3)
  2015. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  2016. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  2017. swait()
  2018. end
  2019. removeuseless:AddItem(g1,.001)
  2020. debounce = false
  2021. attacking = false
  2022. end
  2023. end
  2024. elseif Press=='t' then
  2025. if oofing then return end
  2026. if dedlaff then return end
  2027. if tauntdebounce == true then return end
  2028. if debounce then return end
  2029. debounce = true
  2030. attacking = true
  2031. ws = 4
  2032. coroutine.wrap(function()
  2033. for i = 1, 60 do
  2034. swait()
  2035. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  2036. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  2037. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  2038. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.64 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(45)), 0.2)
  2039. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  2040. end
  2041. debounce = false
  2042. attacking = false
  2043. ws = 19
  2044. end)()
  2045. tauntdebounce = true
  2046. tauntsound = Instance.new("Sound", Head)
  2047. tauntsound.Volume = 10
  2048. tauntsound.SoundId = "rbxassetid://246480487"
  2049. tauntsound.Looped = false
  2050. tauntsound:Play()
  2051. wait(3)
  2052. wait(tauntsound.TimeLength)
  2053. tauntsound:Remove()
  2054. wait(1)
  2055. tauntdebounce = false
  2056. end
  2057. end)
  2058.  
  2059. mouse.KeyDown:connect(function(Press)
  2060. Press=Press:lower()
  2061. if Press=='r' then
  2062. if mouse.Target ~= nil then
  2063. if mouse.Target.Parent ~= Character and mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil and mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  2064. if debounce then return end
  2065. debounce = true
  2066. attacking = true
  2067. ws = 8
  2068. enemy = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  2069. for i = 1, 20 do
  2070. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2, 0) * CFrame.Angles(math.rad(-2), math.rad(40), math.rad(0)), 0.3)
  2071. LEFTARMLERP.C0 = LEFTARMLERP.C0:Lerp(CFrame.new(.3,1.62,-.07) * CFrame.Angles(math.rad(-120),math.rad(-99),math.rad(0)),.3)
  2072. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2073. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2074. swait()
  2075. end
  2076. for i = 1, 20 do
  2077. if grabbed then break end
  2078. local Hit = damagealll(5,rightlocation.Position)
  2079. for _,v in pairs(Hit) do
  2080. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Parent.Name == enemy.Parent.Name then
  2081. grabbed = true
  2082. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  2083. end
  2084. end
  2085. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2086. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2087. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.25,-.18,.2) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(0)),.3)
  2088. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2, 0) * CFrame.Angles(math.rad(-2), math.rad(-40), math.rad(0)), 0.3)
  2089. swait()
  2090. end
  2091. if grabbed then
  2092. change = .5
  2093. ws = 0
  2094. jp = 0
  2095. enemyweld = weldBetween(enemy.Parent.Head,leftlocation)
  2096. enemyweld.C0 = CFrame.new(0,-.6,0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(180))
  2097. for i = 1, 35 do
  2098. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165 + -.1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)),math.rad(0),math.rad(0)),.1)
  2099. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.4 + .02 * math.sin(sine/12),.10 * -math.sin(sine/12)) * CFrame.Angles(math.rad(-10 + 10 * math.sin(sine/12)),math.rad(0),math.rad(-25)), 0.1)
  2100. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(-10)), 0.1)
  2101. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2.0 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(10)), 0.1)
  2102. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.4,.8,.39) * CFrame.Angles(math.rad(-138),math.rad(0),math.rad(0)),.3)
  2103. swait()
  2104. end
  2105. rawr = Instance.new("Sound",Head)
  2106. rawr.SoundId = "rbxassetid://246480487"
  2107. rawr.Volume = 8
  2108. rawr.Pitch = 1.05
  2109. rawr:Play()
  2110. wait(.35)
  2111. for i = 1, 60 do
  2112. if enemy.Health > 1 then
  2113. enemy:TakeDamage(1)
  2114. end
  2115. hum.CameraOffset = Vector3.new(math.random(-1,1),0,math.random(-1,1))
  2116. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  2117. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  2118. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  2119. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  2120. swait()
  2121. end
  2122. hum.CameraOffset = Vector3.new(0,0,0)
  2123. g1 = Instance.new("BodyGyro", Root)
  2124. g1.D = 175
  2125. g1.P = 20000
  2126. g1.MaxTorque = Vector3.new(0,9000,0)
  2127. for i = 1, 25 do
  2128. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2129. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2130. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  2131. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.4,.2,.39) * CFrame.Angles(math.rad(-90),math.rad(30),math.rad(0)),.3)
  2132. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(-0),math.rad(40),math.rad(0)),.1)
  2133. swait()
  2134. end
  2135. g1:Remove()
  2136. enemyweld:Remove()
  2137. throwo = Instance.new("Sound",enemy.Parent.Head)
  2138. throwo.SoundId = "rbxassetid://2314640406"
  2139. throwo.Volume = 10
  2140. throwo.Pitch = .95
  2141. throwo:Play()
  2142. enemy:TakeDamage(math.random(4,10))
  2143. removeuseless:AddItem(throwo,4)
  2144. local bov = Instance.new("BodyVelocity",enemy.Parent.Head)
  2145. bov.maxForce = Vector3.new(99999,99999,99999)
  2146. enemy.Parent.Head.CFrame = CFrame.new(enemy.Parent.Head.Position,mouse.Hit.p)
  2147. bov.velocity = enemy.Parent.Head.CFrame.lookVector*100
  2148. removeuseless:AddItem(bov,.25)
  2149. for i = 1, 25 do
  2150. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  2151. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  2152. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.25,-.18,.2) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(0)),.3)
  2153. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(-0),math.rad(-40),math.rad(0)),.1)
  2154. swait()
  2155. end
  2156. jp = 85
  2157. grabbed = false
  2158. debounce = false
  2159. attacking = false
  2160. else
  2161. ws = 19
  2162. jp = 85
  2163. grabbed = false
  2164. debounce = false
  2165. attacking = false
  2166. end
  2167. end
  2168. end
  2169. end
  2170. end)
  2171.  
  2172. mouse.KeyDown:connect(function(Press)
  2173. Press=Press:lower()
  2174. if Press=='e' then
  2175. if debounce then return end
  2176. debounce = true
  2177. attacking = true
  2178. coroutine.wrap(function()
  2179. if dash1 then
  2180. dash1 = false
  2181. dash2 = true
  2182. for i = 1, 30 do
  2183. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  2184. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  2185. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.25, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  2186. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2187. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2188. swait()
  2189. end
  2190. elseif dash2 then
  2191. dash1 = true
  2192. dash2 = false
  2193. for i = 1, 30 do
  2194. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  2195. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  2196. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.25, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  2197. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, -.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2198. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,.3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2199. swait()
  2200. end
  2201. end
  2202. end)()
  2203. local boomsound = Instance.new("Sound",Torso)
  2204. boomsound.SoundId = "rbxassetid://1177784919"
  2205. boomsound.Volume = 8
  2206. boomsound:Play()
  2207. removeuseless:AddItem(boomsound,5)
  2208. local tornadotwistloc = Instance.new("Part",Torso)
  2209. tornadotwistloc.CFrame = Root.CFrame
  2210. tornadotwistloc.Anchored = true
  2211. tornadotwistloc.Transparency = 1
  2212. tornadotwistloc.CanCollide = false
  2213. tornadotwistloc.Size = Vector3.new(1,1,1)
  2214. twist = 0
  2215. grassblocksloc = Instance.new("Part",Torso)
  2216. grassblocksloc.Size = Vector3.new(1,1,1)
  2217. grassblocksloc.CanCollide = false
  2218. grassblocksloc.Transparency = 1
  2219. grassblocksloc.Anchored = false
  2220. grassblockslocweld = weldBetween(grassblocksloc,Torso)
  2221. grassblockslocweld.C0 = CFrame.new(4,4,0)
  2222. grassblocksloc2 = Instance.new("Part",Torso)
  2223. grassblocksloc2.Size = Vector3.new(1,1,1)
  2224. grassblocksloc2.CanCollide = false
  2225. grassblocksloc2.Transparency = 1
  2226. grassblocksloc2.Anchored = false
  2227. grassblockslocweld2 = weldBetween(grassblocksloc2,Torso)
  2228. grassblockslocweld2.C0 = CFrame.new(-4,4,0)
  2229. coroutine.wrap(function()
  2230. for i = 1, 30 do
  2231. Hit = damagealll(16,Torso.Position)
  2232. for _,v in pairs(Hit) do
  2233. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  2234. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  2235. slachtoffer:TakeDamage(math.random(1,4))
  2236. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  2237. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  2238. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  2239. vel.velocity = CFrame.new(Torso.Position,torso.Position).lookVector*90
  2240. removeuseless:AddItem(vel,.1)
  2241. end
  2242. end
  2243. coroutine.wrap(function()
  2244. local sk = Instance.new("Part",Torso)
  2245. sk.CanCollide = false
  2246. sk.Anchored = true
  2247. sk.BrickColor = BrickColor.new("Really red")
  2248. sk.Name = "sk"
  2249. sk.CFrame = Torso.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  2250. local skmesh = Instance.new("SpecialMesh",sk)
  2251. skmesh.MeshId = "rbxassetid://662586858"
  2252. skmesh.Name = "wave"
  2253. skmesh.Scale = Vector3.new(.04,.01,.04)
  2254. removeuseless:AddItem(sk,2)
  2255. local energys = Instance.new("Part",Torso)
  2256. energys.Size = Vector3.new(3.5,3.5,3.5)
  2257. energys.Material = "Neon"
  2258. energys.BrickColor = BrickColor.new("Really red")
  2259. energys.Anchored = true
  2260. energys.CanCollide = false
  2261. energys.CFrame = grassblocksloc.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))
  2262. local energys2 = Instance.new("Part",Torso)
  2263. energys2.Size = Vector3.new(3.5,3.5,3.5)
  2264. energys2.Material = "Neon"
  2265. energys2.BrickColor = BrickColor.new("Really red")
  2266. energys2.Anchored = true
  2267. energys2.CanCollide = false
  2268. energys2.CFrame = grassblocksloc2.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))
  2269. for i = 1, 20 do
  2270. skmesh.Scale = skmesh.Scale + Vector3.new(.01,0,.01)
  2271. sk.Transparency = sk.Transparency + .05
  2272. energys2.Transparency = energys2.Transparency + .05
  2273. energys.Transparency = energys.Transparency + .05
  2274. swait()
  2275. end
  2276. sk:Remove()
  2277. energys2:Remove()
  2278. energys:Remove()
  2279. end)()
  2280. Root.CFrame = Root.CFrame * CFrame.new(0,0,-2.4)
  2281. swait()
  2282. end
  2283. debounce = false
  2284. attacking = false
  2285. end)()
  2286. coroutine.wrap(function()
  2287. local wind = Instance.new("Part", Torso)
  2288. wind.Size = Vector3.new(0.5, 0.5, 0.5)
  2289. wind.Material = "Neon"
  2290. wind.BrickColor = BrickColor.new("Really white")
  2291. wind.Transparency = .5
  2292. wind.Anchored = true
  2293. wind.CanCollide = false
  2294. wind.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),0,0)
  2295. windMESH = Instance.new("SpecialMesh", wind)
  2296. windMESH.Scale = Vector3.new(4.5,7.5,4.5)
  2297. windMESH.MeshId = "rbxassetid://168892432"
  2298. local wind2 = Instance.new("Part", Torso)
  2299. wind2.Size = Vector3.new(0.5, 0.5, 0.5)
  2300. wind2.Material = "Neon"
  2301. wind2.BrickColor = BrickColor.new("Really white")
  2302. wind2.Transparency = .5
  2303. wind2.Anchored = true
  2304. wind2.CanCollide = false
  2305. wind2.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),0,0)
  2306. windMESH2 = Instance.new("SpecialMesh", wind2)
  2307. windMESH2.Scale = Vector3.new(2.5,5.5,2.5)
  2308. windMESH2.MeshId = "rbxassetid://168892432"
  2309. for i = 1, 50 do
  2310. twist = twist + 11
  2311. windMESH.Scale = windMESH.Scale + Vector3.new(.35,.35,.35)
  2312. windMESH2.Scale = windMESH2.Scale + Vector3.new(.35,.35,.35)
  2313. wind.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),math.rad(twist),0)
  2314. wind2.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),math.rad(-twist),0)
  2315. wind.Transparency = wind.Transparency + .015
  2316. wind2.Transparency = wind2.Transparency + .015
  2317. swait()
  2318. end
  2319. wind:Remove()
  2320. wind2:Remove()
  2321. end)()
  2322. end
  2323. end)
  2324.  
  2325. checks1 = coroutine.wrap(function() -------Checks
  2326. while true do
  2327. hf = ray(Root.Position,(CFrame.new(Root.Position,Root.Position+Vector3.new(0,-1,0))).lookVector,3*3,Character)
  2328. if Root.Velocity.y > 1 and hf == nil then
  2329. position = "Jump"
  2330. elseif Root.Velocity.y < -1 and hf == nil then
  2331. position = "Falling"
  2332. elseif Root.Velocity.Magnitude < 2 and hf ~= nil then
  2333. position = "Idle"
  2334. elseif Root.Velocity.Magnitude > 2 and hf ~= nil then
  2335. position = "Walking"
  2336. end
  2337. wait()
  2338. end
  2339. end)
  2340. checks1()
  2341.  
  2342. oofing = true
  2343. hum.HealthChanged:Connect(function(healthz)
  2344. if tauntdebounce then return end
  2345. if dedlaff then return end
  2346. if oofing then return end
  2347. oofing = true
  2348. ouchtable = beingattackedtable[math.random(1,#beingattackedtable)]
  2349. ouch = Instance.new("Sound",Head)
  2350. ouch.SoundId = "rbxassetid://"..ouchtable
  2351. ouch.Volume = 8
  2352. ouch:Play()
  2353. wait(1)
  2354. wait(ouch.TimeLength)
  2355. ouch:Remove()
  2356. wait(1)
  2357. oofing = false
  2358. end)
  2359. coroutine.wrap(function()
  2360. wait(2)
  2361. oofing = false
  2362. end)()
  2363.  
  2364. OrgnC0 = Neck.C0
  2365. local movelimbs = coroutine.wrap(function()
  2366. while RunSrv.RenderStepped:wait() do
  2367. TrsoLV = Torso.CFrame.lookVector
  2368. Dist = nil
  2369. Diff = nil
  2370. if not MseGuide then
  2371. print("Failed to recognize")
  2372. else
  2373. local _, Point = Workspace:FindPartOnRay(Ray.new(Head.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  2374. Dist = (Head.CFrame.p-Point).magnitude
  2375. Diff = Head.CFrame.Y-Point.Y
  2376. local _, Point2 = Workspace:FindPartOnRay(Ray.new(LeftArm.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  2377. Dist2 = (LeftArm.CFrame.p-Point).magnitude
  2378. Diff2 = LeftArm.CFrame.Y-Point.Y
  2379. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2380. Neck.C0 = Neck.C0:lerp(OrgnC0*CFrame.Angles((math.tan(Diff/Dist)*1), 0, (((Head.CFrame.p-Point).Unit):Cross(Torso.CFrame.lookVector)).Y*1), .1)
  2381. end
  2382. end
  2383. end)
  2384. movelimbs()
  2385. immortal = {}
  2386. for i,v in pairs(Character:GetDescendants()) do
  2387. if v:IsA("BasePart") and v.Name ~= "lmagic" and v.Name ~= "rmagic" then
  2388. if v ~= Root and v ~= Torso and v ~= Head and v ~= RightArm and v ~= LeftArm and v ~= RightLeg and v.Name ~= "lmagic" and v.Name ~= "rmagic" and v ~= LeftLeg then
  2389. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  2390. end
  2391. table.insert(immortal,{v,v.Parent,v.Material,v.Color,v.Transparency})
  2392. elseif v:IsA("JointInstance") then
  2393. table.insert(immortal,{v,v.Parent,nil,nil,nil})
  2394. end
  2395. end
  2396. for e = 1, #immortal do
  2397. if immortal[e] ~= nil then
  2398. local STUFF = immortal[e]
  2399. local PART = STUFF[1]
  2400. local PARENT = STUFF[2]
  2401. local MATERIAL = STUFF[3]
  2402. local COLOR = STUFF[4]
  2403. local TRANSPARENCY = STUFF[5]
  2404. if levitate then
  2405. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= eyo1 and PART.Name ~= eyo2 and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  2406. PART.Material = MATERIAL
  2407. PART.Color = COLOR
  2408. PART.Transparency = TRANSPARENCY
  2409. end
  2410. PART.AncestryChanged:connect(function()
  2411. PART.Parent = PARENT
  2412. end)
  2413. else
  2414. if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  2415. PART.Material = MATERIAL
  2416. PART.Color = COLOR
  2417. PART.Transparency = TRANSPARENCY
  2418. end
  2419. PART.AncestryChanged:connect(function()
  2420. PART.Parent = PARENT
  2421. end)
  2422. end
  2423. end
  2424. end
  2425. function immortality()
  2426. for e = 1, #immortal do
  2427. if immortal[e] ~= nil then
  2428. local STUFF = immortal[e]
  2429. local PART = STUFF[1]
  2430. local PARENT = STUFF[2]
  2431. local MATERIAL = STUFF[3]
  2432. local COLOR = STUFF[4]
  2433. local TRANSPARENCY = STUFF[5]
  2434. if PART.ClassName == "Part" and PART == Root then
  2435. PART.Material = MATERIAL
  2436. PART.Color = COLOR
  2437. PART.Transparency = TRANSPARENCY
  2438. end
  2439. if PART.Parent ~= PARENT then
  2440. hum:Remove()
  2441. PART.Parent = PARENT
  2442. hum = Instance.new("Humanoid",Character)
  2443. hum.Name = "nightfall"
  2444. end
  2445. end
  2446. end
  2447. end
  2448. alreadyflip = false
  2449. function jumpsound()
  2450. if alreadyflip then return end
  2451. alreadyflip = true
  2452. flipsound = Instance.new("Sound",Torso)
  2453. flipsound.SoundId = "rbxassetid://1031614266"
  2454. flipsound.Volume = 2
  2455. flipsound.Pitch = 1
  2456. flipsound:Play()
  2457. removeuseless:AddItem(flipsound,2)
  2458. wait(1)
  2459. alreadyflip = false
  2460. end
  2461. coroutine.wrap(function()
  2462. while true do
  2463. if hum.Health < .1 then
  2464. deadsound = Instance.new("Sound", Torso)
  2465. deadsound.Volume = 6
  2466. deadsound.SoundId = "rbxassetid://1411352723"
  2467. deadsound:Play()
  2468. immortality()
  2469. end
  2470. wait()
  2471. end
  2472. end)()
  2473. spinny = 0
  2474. local anims = coroutine.wrap(function()
  2475. while true do
  2476. settime = 0.05
  2477. sine = sine + change
  2478. if position == "Jump" and attacking == false then
  2479. coroutine.wrap(function()
  2480. jumpsound()
  2481. end)()
  2482. spinny = spinny - 18
  2483. change = 1
  2484. ws = 35
  2485. footsteps.Volume = 0
  2486. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  2487. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  2488. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  2489. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(spinny), math.rad(0), math.rad(0)), 0.4)
  2490. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.2)
  2491. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-10)), 0.2)
  2492. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 1., .9) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.4)
  2493. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.0, .9) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.4)
  2494. elseif position == "Falling" and attacking == false then
  2495. change = 1
  2496. ws = 19
  2497. spinny = 0
  2498. footsteps.Volume = 0
  2499. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.15)
  2500. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  2501. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  2502. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  2503. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, .5) * CFrame.Angles(math.rad(8), math.rad(4), math.rad(0)), 0.2)
  2504. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 2, .5) * CFrame.Angles(math.rad(8), math.rad(-4), math.rad(0)), 0.2)
  2505. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.64 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(45)), 0.2)
  2506. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  2507. elseif position == "Walking" and attacking == false and running == false then
  2508. change = 1.2
  2509. if invisible then
  2510. ws = 30
  2511. else
  2512. ws = 19
  2513. end
  2514. walking = true
  2515. spinny = 0
  2516. footsteps.Volume = 2
  2517. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  2518. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  2519. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.07 + 0.2*math.sin(sine/3.5), 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  2520. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9 - 0.35 * math.cos(sine/7)/2.8, -.3 + 0.2 - math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) + -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/7), math.rad(0), math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  2521. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9 + 0.35 * math.cos(sine/7)/2.8, -.3 + 0.2 + math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) - -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0) , math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  2522. elseif position == "Idle" and attacking == false and running == false then
  2523. change = .5
  2524. if invisible then
  2525. ws = 30
  2526. else
  2527. ws = 19
  2528. end
  2529. spinny = 0
  2530. footsteps.Volume = 0
  2531. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165 + -.1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)),math.rad(0),math.rad(0)),.1)
  2532. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.1)
  2533. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.4 + .02 * math.sin(sine/12),.10 * -math.sin(sine/12)) * CFrame.Angles(math.rad(-10 + 10 * math.sin(sine/12)),math.rad(0),math.rad(-25)), 0.1)
  2534. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(-10)), 0.1)
  2535. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2.0 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(10)), 0.1)
  2536. end
  2537. swait()
  2538. end
  2539. end)
  2540. anims()
  2541. warn("He's here. Made by Supr14")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement