Advertisement
Robloxian_Scripter

Untitled

Mar 27th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 166.58 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153.  
  154.  
  155. -- the hottest shit to ever shit on a plate by king_absalom
  156. -- UPDATE: I have removed the long ass intro and the hat (Because it wont load and if it does it will take a long time to do so)
  157. --[[
  158.  
  159. "Created by: Wizardunstopable and MatterGh0st"
  160.  
  161. Oh, I didn't know editing King_Absalom's script makes it "YOURS"
  162. #sarcasm
  163.  
  164. anyways
  165. "Give Credit Plz and DONT LEAK THIS"
  166.  
  167. its an edit so.. i'll just leak it anyways. ;)
  168. ]]
  169. -------The Dark Ruler V2--------Created by: Wizardunstopable and MatterGh0st------Give Credit Plz and DONT LEAK THIS
  170. local p = game.Players.LocalPlayer
  171. local char = p.Character
  172. local mouse = p:GetMouse()
  173. local larm = char["Left Arm"]
  174. local rarm = char["Right Arm"]
  175. local lleg = char["Left Leg"]
  176. local rleg = char["Right Leg"]
  177. local hed = char.Head
  178. local torso = char.Torso
  179. local hum = char.Humanoid
  180. local cam = game.Workspace.CurrentCamera
  181. local root = char.HumanoidRootPart
  182. local deb = false
  183. local shot = 0
  184. local l = game:GetService("Lighting")
  185. local rs = game:GetService("RunService").RenderStepped
  186. local stanceToggle = "Normal"
  187. math.randomseed(os.time())
  188. hum.WalkSpeed = 100
  189. char.Health:Destroy()
  190. hum.MaxHealth = math.huge
  191. wait(0.1)
  192. hum.Health = math.huge
  193. ----------------------------------------------------
  194. p:ClearCharacterAppearance()
  195. wait(0.1)
  196. p.Character.Head.BrickColor = BrickColor.new("Really black")
  197. p.Character.Torso.BrickColor = BrickColor.new("Really black")
  198. p.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  199. p.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  200. p.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  201. p.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  202. pcall(function() p.char.torso.roblox:Destroy() end)
  203. shirt = Instance.new("Shirt", char)
  204. shirt.Name = "Shirt"
  205. pants = Instance.new("Pants", char)
  206. pants.Name = "Pants"
  207. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=235673625"
  208. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=222859226"
  209. ----------------------------------------------------
  210. Fl = Instance.new('Fire',larm); FR = Instance.new('Fire',rarm); Ft = Instance.new('Fire',torso)
  211. Ft.Size = 12
  212. Fl.Size = 12
  213. FR.Size = 12
  214. Fl.Color = Color3.new(0,0,0)
  215. FR.Color = Color3.new(0,0,0)
  216. Ft.Color = Color3.new(0,0,0)
  217. Fl.SecondaryColor = Color3.new(0,0,0)
  218. FR.SecondaryColor = Color3.new(0,0,0)
  219. Ft.SecondaryColor = Color3.new(0,0,0)
  220. SR = Instance.new('Smoke',rleg)
  221. SR.Color = Color3.new(0,0,0)
  222. SR.Size = 1
  223. SR.RiseVelocity = 1
  224. ----------------------------------------------------
  225. Debounces = {
  226. on = false;
  227. ks = false;
  228. CanAttack = true;
  229. CanJoke = true;
  230. NoIdl = false;
  231. Slashing = false;
  232. Slashed = false;
  233. Grabbing = false;
  234. Grabbed = false;
  235. }
  236. local Touche = {char.Name, }
  237. ----------------------------------------------------
  238. function lerp(a, b, t) -- Linear interpolation
  239. return a + (b - a)*t
  240. end
  241.  
  242. function slerp(a, b, t) --Spherical interpolation
  243. dot = a:Dot(b)
  244. if dot > 0.99999 or dot < -0.99999 then
  245. return t <= 0.5 and a or b
  246. else
  247. r = math.acos(dot)
  248. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  249. end
  250. end
  251.  
  252. function matrixInterpolate(a, b, t)
  253. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  254. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  255. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  256. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  257. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  258. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  259. local t = v1:Dot(v2)
  260. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  261. return CFrame.new()
  262. end
  263. return CFrame.new(
  264. v0.x, v0.y, v0.z,
  265. v1.x, v1.y, v1.z,
  266. v2.x, v2.y, v2.z,
  267. v3.x, v3.y, v3.z)
  268. end
  269. ----------------------------------------------------
  270. function genWeld(a,b)
  271. local w = Instance.new("Weld",a)
  272. w.Part0 = a
  273. w.Part1 = b
  274. return w
  275. end
  276. function weld(a, b)
  277. local weld = Instance.new("Weld")
  278. weld.Name = "W"
  279. weld.Part0 = a
  280. weld.Part1 = b
  281. weld.C0 = a.CFrame:inverse() * b.CFrame
  282. weld.Parent = a
  283. return weld;
  284. end
  285. ----------------------------------------------------
  286. function Lerp(c1,c2,al)
  287. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  288. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  289. for i,v in pairs(com1) do
  290. com1[i] = v+(com2[i]-v)*al
  291. end
  292. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  293. end
  294. ----------------------------------------------------
  295. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  296. local wld = Instance.new("Weld", wp1)
  297. wld.Part0 = wp0
  298. wld.Part1 = wp1
  299. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  300. end
  301. ----------------------------------------------------
  302. for i,v in pairs(char:children()) do
  303. if v:IsA("Hat") then
  304. v:Destroy()
  305. end
  306. end
  307. for i,v in pairs(hed:children()) do
  308. if v:IsA("Sound") then
  309. v:Destroy()
  310. end
  311. end
  312. ----------------------------------------------------
  313. function HasntTouched(plrname)
  314. local ret = true
  315. for _, v in pairs(Touche) do
  316. if v == plrname then
  317. ret = false
  318. end
  319. end
  320. return ret
  321. end
  322. ----------------------------------------------------
  323. larm.Size = larm.Size * 2
  324. rarm.Size = rarm.Size * 2
  325. lleg.Size = lleg.Size * 2
  326. rleg.Size = rleg.Size * 2
  327. torso.Size = torso.Size * 2
  328. hed.Size = hed.Size * 2
  329. root.Size = root.Size * 2
  330. ----------------------------------------------------
  331. newWeld(torso, larm, -1.5, 0.5, 0)
  332. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  333. newWeld(torso, rarm, 1.5, 0.5, 0)
  334. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  335. newWeld(torso, hed, 0, 1.5, 0)
  336. newWeld(torso, lleg, -0.5, -1, 0)
  337. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  338. newWeld(torso, rleg, 0.5, -1, 0)
  339. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  340. newWeld(root, torso, 0, -1, 0)
  341. torso.Weld.C1 = CFrame.new(0, -1, 0)
  342. ----------------------------------------------------
  343. z = Instance.new("Sound", char)
  344. z.SoundId = "rbxassetid://408386283"--209113706
  345. z.Looped = true
  346. z.Pitch = 1
  347. z.Volume = 1
  348. wait(.01)
  349. z:Play()
  350. ----------------------------------------------------
  351. --[[
  352. wait(0.1)
  353. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"You Will Die Of The Hands Of Me!", "Red")
  354. wait(9)
  355. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"You've rediculed hades for the last time!", "Blue")
  356. wait(9)
  357. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"Activate", "Red")
  358. wait(9.8)
  359. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"Summoning!", "Red")
  360. wait(0.1)
  361. game.Lighting.Ambient = Color3.new(1,0,0)
  362. wait(0.1)
  363. game.Lighting.Ambient = Color3.new(0,0,0)
  364. wait(0.1)
  365. game.Lighting.Ambient = Color3.new(1,0,0)
  366. wait(0.1)
  367. game.Lighting.Ambient = Color3.new(1,0,0)
  368. wait(0.1)
  369. game.Lighting.Ambient = Color3.new(1,0,0)
  370. wait(0.1)
  371. game.Lighting.Ambient = Color3.new(0,0,0)
  372. wait(0.1)
  373. game.Lighting.Ambient = Color3.new(1,0,0)
  374. wait(0.1)
  375. game.Lighting.Ambient = Color3.new(1,0,0)
  376. wait(0.1)
  377. game.Lighting.Ambient = Color3.new(1,0,0)
  378. wait(0.1)
  379. game.Lighting.Ambient = Color3.new(0,0,0)
  380. wait(0.1)
  381. game.Lighting.Ambient = Color3.new(1,0,0)
  382. wait(0.1)
  383. game.Lighting.Ambient = Color3.new(1,0,0)
  384. wait(0.1)
  385. game.Lighting.Ambient = Color3.new(0,0,0)
  386. wait(0.1)
  387. game.Lighting.Ambient = Color3.new(1,0,0)
  388. wait(0.1)
  389. game.Lighting.Ambient = Color3.new(0,0,0)
  390. wait(0.1)
  391. game.Lighting.Ambient = Color3.new(1,0,0)
  392. wait(0.1)
  393. game.Lighting.Ambient = Color3.new(0,0,0)
  394. wait(0.1)
  395. game.Lighting.Ambient = Color3.new(1,0,0)
  396. wait(0.1)
  397. game.Lighting.Ambient = Color3.new(0,0,0)
  398. wait(0.1)
  399. game.Lighting.Ambient = Color3.new(1,0,0)
  400. wait(0.1)
  401. game.Lighting.Ambient = Color3.new(0,0,0)
  402. wait(0.1)
  403. game.Lighting.Ambient = Color3.new(1,0,0)
  404. wait(0.1)
  405. game.Lighting.Ambient = Color3.new(0,0,0)
  406. wait(0.1)
  407. game.Lighting.Ambient = Color3.new(1,0,0)
  408. wait(0.1)
  409. game.Lighting.Ambient = Color3.new(0,0,0)
  410. wait(0.1)
  411. game.Lighting.Ambient = Color3.new(1,0,0)
  412. wait(0.1)
  413. game.Lighting.Ambient = Color3.new(0,0,0)
  414. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"The demon awakens! With The anger of thousands!", "Green")
  415. ]]--
  416. --game:service'InsertService':LoadAsset(130900995):children()[1].Parent=char
  417. --char.PumpkinReaper.Handle.Mesh.Scale = char.PumpkinReaper.Handle.Mesh.Scale * 1.8
  418. --char.PumpkinReaper.Handle.Mesh.TextureId = "http://www.roblox.com/asset/?id=334850318"
  419. --char.PumpkinReaper.Handle.Mesh.VertexColor = Vector3.new(1,1,1)
  420. --l.TimeOfDay = 24
  421. z=Instance.new('Decal',hed)
  422. z.Face = 'Front'
  423. z.Texture='rbxassetid://99174105'
  424. hed.BrickColor = BrickColor.new("Really black")
  425. lite = Instance.new("PointLight", rleg)
  426. lite.Brightness = 30
  427. lite.Range = 20
  428. lite.Color = Color3.new(19, 0, 0)
  429. --[[local hed2 = hed:Clone()
  430. hed2.CanCollide = false
  431. hed2.Parent = char
  432. hed2:ClearAllChildren()
  433. hed2.Transparency = 1
  434. hed2.Name = "DARP"
  435. local w = Instance.new("Weld",hed2)
  436. w.Part0 = hed
  437. w.Part1 = hed2
  438. w.C0 = CFrame.new(0,0,-0.175)
  439. z=Instance.new("SurfaceGui",hed2)
  440. z.Enabled = true
  441. z.Face = "Front"
  442. z.Adornee = hed2
  443. z.CanvasSize = Vector2.new(100,100)
  444. local face = Instance.new("ImageLabel",z)
  445. face.Size = UDim2.new(1,-30,1,0)
  446. face.Position = UDim2.new(0,15,0,0)
  447. face.BackgroundTransparency = 1
  448. face.Image='rbxassetid://46282671']]--
  449. ----------------------------------------------------
  450.  
  451. ----------------------------------------------------
  452. local m = Instance.new("Model")
  453. m.Name = "Titanius"
  454. p1 = Instance.new("Part", m)
  455. p1.BrickColor = BrickColor.new("Really red")
  456. p1.FormFactor = Enum.FormFactor.Custom
  457. p1.Material = "Neon"
  458. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  459. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  460. p1.CanCollide = false
  461. p1.Locked = true
  462. p1.Elasticity = 0
  463. p1.BottomSurface = Enum.SurfaceType.Smooth
  464. p1.TopSurface = Enum.SurfaceType.Smooth
  465. b1 = Instance.new("SpecialMesh", p1)
  466. b1.MeshType = Enum.MeshType.Wedge
  467. b1.Name = "Mesh"
  468. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  469. p2 = Instance.new("Part", m)
  470. p2.BrickColor = BrickColor.new("Really black")
  471. p2.FormFactor = Enum.FormFactor.Custom
  472. p2.Size = Vector3.new(1, 2.9000001, 1)
  473. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  474. p2.CanCollide = false
  475. p2.Locked = true
  476. p2.Elasticity = 0
  477. p2.BottomSurface = Enum.SurfaceType.Smooth
  478. p2.TopSurface = Enum.SurfaceType.Smooth
  479. b2 = Instance.new("BlockMesh", p2)
  480. b2.Name = "Mesh"
  481. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  482. p3 = Instance.new("Part", m)
  483. p3.BrickColor = BrickColor.new("Really red")
  484. p3.Material = "Neon"
  485. p3.FormFactor = Enum.FormFactor.Custom
  486. p3.Size = Vector3.new(1, 1.10000005, 2.0999999)
  487. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  488. p3.CanCollide = false
  489. p3.Locked = true
  490. p3.Elasticity = 0
  491. p3.BottomSurface = Enum.SurfaceType.Smooth
  492. p3.TopSurface = Enum.SurfaceType.Smooth
  493. b3 = Instance.new("SpecialMesh", p3)
  494. b3.MeshType = Enum.MeshType.Wedge
  495. b3.Name = "Mesh"
  496. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  497. p4 = Instance.new("Part", m)
  498. p4.BrickColor = BrickColor.new("Really red")
  499. p4.Material = "Neon"
  500. p4.FormFactor = Enum.FormFactor.Custom
  501. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  502. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  503. p4.CanCollide = false
  504. p4.Locked = true
  505. p4.Elasticity = 0
  506. p4.BottomSurface = Enum.SurfaceType.Smooth
  507. p4.TopSurface = Enum.SurfaceType.Smooth
  508. b4 = Instance.new("SpecialMesh", p4)
  509. b4.MeshType = Enum.MeshType.Wedge
  510. b4.Name = "Mesh"
  511. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  512. p5 = Instance.new("Part", m)
  513. p5.BrickColor = BrickColor.new("Really red")
  514. p5.Material = "Neon"
  515. p5.FormFactor = Enum.FormFactor.Custom
  516. p5.Size = Vector3.new(1, 1.10000005, 3.10000005)
  517. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  518. p5.CanCollide = false
  519. p5.Locked = true
  520. p5.Elasticity = 0
  521. p5.BottomSurface = Enum.SurfaceType.Smooth
  522. p5.TopSurface = Enum.SurfaceType.Smooth
  523. b5 = Instance.new("SpecialMesh", p5)
  524. b5.MeshType = Enum.MeshType.Wedge
  525. b5.Name = "Mesh"
  526. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  527. p6 = Instance.new("Part", m)
  528. p6.Name = "Handle"
  529. p6.BrickColor = BrickColor.new("Really black")
  530. p6.FormFactor = Enum.FormFactor.Custom
  531. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  532. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  533. p6.CanCollide = false
  534. p6.Locked = true
  535. p6.Elasticity = 0
  536. p6.BottomSurface = Enum.SurfaceType.Smooth
  537. p6.TopSurface = Enum.SurfaceType.Smooth
  538. b6 = Instance.new("BlockMesh", p6)
  539. b6.Name = "Mesh"
  540. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  541. p7 = Instance.new("Part", m)
  542. p7.BrickColor = BrickColor.new("Really red")
  543. p7.Material = "Neon"
  544. p7.FormFactor = Enum.FormFactor.Custom
  545. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  546. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  547. p7.CanCollide = false
  548. p7.Locked = true
  549. p7.Elasticity = 0
  550. p7.BottomSurface = Enum.SurfaceType.Smooth
  551. p7.TopSurface = Enum.SurfaceType.Smooth
  552. b7 = Instance.new("SpecialMesh", p7)
  553. b7.MeshType = Enum.MeshType.Wedge
  554. b7.Name = "Mesh"
  555. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  556. p8 = Instance.new("Part", m)
  557. p8.BrickColor = BrickColor.new("Really red")
  558. p8.Material = "Neon"
  559. p8.FormFactor = Enum.FormFactor.Custom
  560. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  561. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  562. p8.CanCollide = false
  563. p8.Locked = true
  564. p8.Elasticity = 0
  565. p8.BottomSurface = Enum.SurfaceType.Smooth
  566. p8.TopSurface = Enum.SurfaceType.Smooth
  567. b8 = Instance.new("SpecialMesh", p8)
  568. b8.MeshType = Enum.MeshType.Wedge
  569. b8.Name = "Mesh"
  570. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  571. p9 = Instance.new("Part", m)
  572. p9.BrickColor = BrickColor.new("Really black")
  573. p9.FormFactor = Enum.FormFactor.Custom
  574. p9.Size = Vector3.new(1, 1.07999957, 1)
  575. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  576. p9.CanCollide = false
  577. p9.Locked = true
  578. p9.Elasticity = 0
  579. p9.BottomSurface = Enum.SurfaceType.Smooth
  580. p9.TopSurface = Enum.SurfaceType.Smooth
  581. b9 = Instance.new("BlockMesh", p9)
  582. b9.Name = "Mesh"
  583. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  584. p10 = Instance.new("Part", m)
  585. p10.BrickColor = BrickColor.new("Really black")
  586. p10.FormFactor = Enum.FormFactor.Custom
  587. p10.Size = Vector3.new(1, 1.41999948, 1)
  588. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  589. p10.CanCollide = false
  590. p10.Locked = true
  591. p10.Elasticity = 0
  592. p10.BottomSurface = Enum.SurfaceType.Smooth
  593. p10.TopSurface = Enum.SurfaceType.Smooth
  594. b10 = Instance.new("BlockMesh", p10)
  595. b10.Name = "Mesh"
  596. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  597. p11 = Instance.new("Part", m)
  598. p11.BrickColor = BrickColor.new("Really black")
  599. p11.FormFactor = Enum.FormFactor.Custom
  600. p11.Size = Vector3.new(1, 1.50999951, 1)
  601. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  602. p11.CanCollide = false
  603. p11.Locked = true
  604. p11.Elasticity = 0
  605. p11.BottomSurface = Enum.SurfaceType.Smooth
  606. p11.TopSurface = Enum.SurfaceType.Smooth
  607. b11 = Instance.new("BlockMesh", p11)
  608. b11.Name = "Mesh"
  609. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  610. p12 = Instance.new("Part", m)
  611. p12.Name = "BladeCenter"
  612. p12.BrickColor = BrickColor.new("Really red")
  613. p12.Material = "Neon"
  614. p12.FormFactor = Enum.FormFactor.Symmetric
  615. p12.Size = Vector3.new(1, 2, 2)
  616. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  617. p12.CanCollide = false
  618. p12.Locked = true
  619. p12.BottomSurface = Enum.SurfaceType.Smooth
  620. p12.TopSurface = Enum.SurfaceType.Smooth
  621. b12 = Instance.new("SpecialMesh", p12)
  622. b12.MeshType = Enum.MeshType.Brick
  623. b12.Name = "Mesh"
  624. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  625. p13 = Instance.new("Part", m)
  626. p13.BrickColor = BrickColor.new("Really black")
  627. p13.FormFactor = Enum.FormFactor.Custom
  628. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  629. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  630. p13.CanCollide = false
  631. p13.Locked = true
  632. p13.Elasticity = 0
  633. p13.BottomSurface = Enum.SurfaceType.Smooth
  634. p13.TopSurface = Enum.SurfaceType.Smooth
  635. b13 = Instance.new("BlockMesh", p13)
  636. b13.Name = "Mesh"
  637. b13.Scale = Vector3.new(1, 1, 0.400000006)
  638. p14 = Instance.new("Part", m)
  639. p14.BrickColor = BrickColor.new("Really black")
  640. p14.FormFactor = Enum.FormFactor.Custom
  641. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  642. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6410059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  643. p14.CanCollide = false
  644. p14.Locked = true
  645. p14.Elasticity = 0
  646. p14.BottomSurface = Enum.SurfaceType.Smooth
  647. p14.TopSurface = Enum.SurfaceType.Smooth
  648. b14 = Instance.new("BlockMesh", p14)
  649. b14.Name = "Mesh"
  650. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  651. p15 = Instance.new("Part", m)
  652. p15.BrickColor = BrickColor.new("Really black")
  653. p15.FormFactor = Enum.FormFactor.Custom
  654. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  655. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  656. p15.CanCollide = false
  657. p15.Locked = true
  658. p15.Elasticity = 0
  659. p15.BottomSurface = Enum.SurfaceType.Smooth
  660. p15.TopSurface = Enum.SurfaceType.Smooth
  661. b15 = Instance.new("BlockMesh", p15)
  662. b15.Name = "Mesh"
  663. b15.Scale = Vector3.new(1, 1, 0.400000006)
  664. p16 = Instance.new("Part", m)
  665. p16.BrickColor = BrickColor.new("Really black")
  666. p16.FormFactor = Enum.FormFactor.Custom
  667. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  668. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  669. p16.CanCollide = false
  670. p16.Locked = true
  671. p16.Elasticity = 0
  672. p16.BottomSurface = Enum.SurfaceType.Smooth
  673. p16.TopSurface = Enum.SurfaceType.Smooth
  674. b16 = Instance.new("BlockMesh", p16)
  675. b16.Name = "Mesh"
  676. b16.Scale = Vector3.new(1, 1, 0.400000006)
  677. p17 = Instance.new("Part", m)
  678. p17.BrickColor = BrickColor.new("Really black")
  679. p17.FormFactor = Enum.FormFactor.Custom
  680. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  681. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  682. p17.CanCollide = false
  683. p17.Locked = true
  684. p17.Elasticity = 0
  685. p17.BottomSurface = Enum.SurfaceType.Smooth
  686. p17.TopSurface = Enum.SurfaceType.Smooth
  687. b17 = Instance.new("BlockMesh", p17)
  688. b17.Name = "Mesh"
  689. b17.Scale = Vector3.new(1, 1, 0.400000006)
  690. p18 = Instance.new("WedgePart", m)
  691. p18.BrickColor = BrickColor.new("Really red")
  692. p18.Name = "BladePart1"
  693. p18.Material = "Neon"
  694. p18.Name = "Wedge"
  695. p18.FormFactor = Enum.FormFactor.Symmetric
  696. p18.Size = Vector3.new(1, 4, 2)
  697. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  698. p18.CanCollide = false
  699. p18.Locked = true
  700. p18.BottomSurface = Enum.SurfaceType.Smooth
  701. p18.TopSurface = Enum.SurfaceType.Smooth
  702. b18 = Instance.new("SpecialMesh", p18)
  703. b18.MeshType = Enum.MeshType.Wedge
  704. b18.Name = "Mesh"
  705. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  706. p19 = Instance.new("WedgePart", m)
  707. p19.BrickColor = BrickColor.new("Really red")
  708. p19.Name = "BladePart2"
  709. p19.Material = "Neon"
  710. p19.Name = "Wedge"
  711. p19.FormFactor = Enum.FormFactor.Symmetric
  712. p19.Size = Vector3.new(1, 4, 2)
  713. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  714. p19.CanCollide = false
  715. p19.Locked = true
  716. p19.BottomSurface = Enum.SurfaceType.Smooth
  717. p19.TopSurface = Enum.SurfaceType.Smooth
  718. b19 = Instance.new("SpecialMesh", p19)
  719. b19.MeshType = Enum.MeshType.Wedge
  720. b19.Name = "Mesh"
  721. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  722. p20 = Instance.new("Part", m)
  723. p20.BrickColor = BrickColor.new("Really black")
  724. p20.FormFactor = Enum.FormFactor.Custom
  725. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  726. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  727. p20.CanCollide = false
  728. p20.Locked = true
  729. p20.Elasticity = 0
  730. p20.BottomSurface = Enum.SurfaceType.Smooth
  731. p20.TopSurface = Enum.SurfaceType.Smooth
  732. b20 = Instance.new("BlockMesh", p20)
  733. b20.Name = "Mesh"
  734. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  735. p21 = Instance.new("Part", m)
  736. p21.BrickColor = BrickColor.new("Really red")
  737. p21.Material = "Neon"
  738. p21.FormFactor = Enum.FormFactor.Custom
  739. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  740. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  741. p21.CanCollide = false
  742. p21.Locked = true
  743. p21.Elasticity = 0
  744. p21.BottomSurface = Enum.SurfaceType.Smooth
  745. p21.TopSurface = Enum.SurfaceType.Smooth
  746. b21 = Instance.new("SpecialMesh", p21)
  747. b21.MeshType = Enum.MeshType.Wedge
  748. b21.Name = "Mesh"
  749. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  750. w1 = Instance.new("Weld", p1)
  751. w1.Name = "Part_Weld"
  752. w1.Part0 = p1
  753. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  754. w1.Part1 = p2
  755. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  756. w2 = Instance.new("Weld", p2)
  757. w2.Name = "Part_Weld"
  758. w2.Part0 = p2
  759. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  760. w2.Part1 = p3
  761. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  762. w3 = Instance.new("Weld", p3)
  763. w3.Name = "Part_Weld"
  764. w3.Part0 = p3
  765. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  766. w3.Part1 = p4
  767. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  768. w4 = Instance.new("Weld", p4)
  769. w4.Name = "Part_Weld"
  770. w4.Part0 = p4
  771. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  772. w4.Part1 = p5
  773. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  774. w5 = Instance.new("Weld", p5)
  775. w5.Name = "Part_Weld"
  776. w5.Part0 = p5
  777. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  778. w5.Part1 = p6
  779. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  780. w6 = Instance.new("Weld", p6)
  781. w6.Name = "Part_Weld"
  782. w6.Part0 = p6
  783. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  784. w6.Part1 = p7
  785. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  786. w7 = Instance.new("Weld", p7)
  787. w7.Name = "Part_Weld"
  788. w7.Part0 = p7
  789. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  790. w7.Part1 = p8
  791. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  792. w8 = Instance.new("Weld", p8)
  793. w8.Name = "Part_Weld"
  794. w8.Part0 = p8
  795. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  796. w8.Part1 = p9
  797. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  798. w9 = Instance.new("Weld", p9)
  799. w9.Name = "Part_Weld"
  800. w9.Part0 = p9
  801. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  802. w9.Part1 = p10
  803. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  804. w10 = Instance.new("Weld", p10)
  805. w10.Name = "Part_Weld"
  806. w10.Part0 = p10
  807. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  808. w10.Part1 = p11
  809. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  810. w11 = Instance.new("Weld", p11)
  811. w11.Name = "Part_Weld"
  812. w11.Part0 = p11
  813. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  814. w11.Part1 = p12
  815. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  816. w12 = Instance.new("Weld", p12)
  817. w12.Name = "Part_Weld"
  818. w12.Part0 = p12
  819. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  820. w12.Part1 = p13
  821. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  822. w13 = Instance.new("Weld", p13)
  823. w13.Name = "Part_Weld"
  824. w13.Part0 = p13
  825. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  826. w13.Part1 = p14
  827. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  828. w14 = Instance.new("Weld", p14)
  829. w14.Name = "Part_Weld"
  830. w14.Part0 = p14
  831. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  832. w14.Part1 = p15
  833. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  834. w15 = Instance.new("Weld", p15)
  835. w15.Name = "Part_Weld"
  836. w15.Part0 = p15
  837. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  838. w15.Part1 = p16
  839. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  840. w16 = Instance.new("Weld", p16)
  841. w16.Name = "Part_Weld"
  842. w16.Part0 = p16
  843. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  844. w16.Part1 = p17
  845. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  846. w17 = Instance.new("Weld", p17)
  847. w17.Name = "Wedge_Weld"
  848. w17.Part0 = p17
  849. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  850. w17.Part1 = p18
  851. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  852. w18 = Instance.new("Weld", p18)
  853. w18.Name = "Wedge_Weld"
  854. w18.Part0 = p18
  855. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  856. w18.Part1 = p19
  857. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  858. w19 = Instance.new("Weld", p19)
  859. w19.Name = "Part_Weld"
  860. w19.Part0 = p19
  861. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  862. w19.Part1 = p20
  863. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  864. w20 = Instance.new("Weld", p20)
  865. w20.Name = "Part_Weld"
  866. w20.Part0 = p20
  867. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  868. w20.Part1 = p21
  869. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  870. m.Parent = char
  871. m:MakeJoints()
  872. ----------------------------------------------------
  873. local cor = Instance.new("Part", char.Titanius)
  874. cor.Name = "Thingy"
  875. cor.Locked = true
  876. cor.BottomSurface = 0
  877. cor.CanCollide = false
  878. cor.Size = Vector3.new(1, 13, 1)
  879. cor.Transparency = 1
  880. cor.TopSurface = 0
  881. corw = Instance.new("Weld", cor)
  882. corw.Part0 = rarm
  883. corw.Part1 = cor
  884. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  885. corw.C1 = CFrame.new(0, 0, 0)
  886. weld1 = Instance.new("Weld", char.Titanius)
  887. weld1.Part0 = cor
  888. weld1.Part1 = p6
  889. weld1.C0 = CFrame.new(0, 0, 0)
  890. ----------------------------------------------------
  891. hitb = Instance.new("Part", char.Titanius)
  892. hitb.Name = "Thingy2"
  893. hitb.Locked = true
  894. hitb.BottomSurface = 0
  895. hitb.CanCollide = false
  896. hitb.Size = Vector3.new(0, 8, 6)
  897. hitb.Transparency = 1
  898. hitb.TopSurface = 0
  899. weld2 = Instance.new("Weld", char.Titanius)
  900. weld2.Part0 = hitb
  901. weld2.Part1 = p12
  902. weld2.C0 = CFrame.new(0, .6, 1)
  903. ----------------------------------------------------
  904. local m = Instance.new("Model")
  905. m.Name = "Claw"
  906. p1 = Instance.new("Part", m)
  907. p1.BrickColor = BrickColor.new("Really black")
  908. p1.FormFactor = Enum.FormFactor.Custom
  909. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  910. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  911. p1.CanCollide = false
  912. p1.Locked = true
  913. p1.BottomSurface = Enum.SurfaceType.Smooth
  914. p1.TopSurface = Enum.SurfaceType.Smooth
  915. b1 = Instance.new("BlockMesh", p1)
  916. b1.Name = "Mesh"
  917. p2 = Instance.new("WedgePart", m)
  918. p2.BrickColor = BrickColor.new("Really black")
  919. p2.Name = "Wedge"
  920. p2.FormFactor = Enum.FormFactor.Custom
  921. p2.Size = Vector3.new(3, 1, 0.5)
  922. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  923. p2.CanCollide = false
  924. p2.Locked = true
  925. p2.BottomSurface = Enum.SurfaceType.Smooth
  926. p2.TopSurface = Enum.SurfaceType.Smooth
  927. p3 = Instance.new("Part", m)
  928. p3.BrickColor = BrickColor.new("Really black")
  929. p3.FormFactor = Enum.FormFactor.Custom
  930. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  931. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  932. p3.CanCollide = false
  933. p3.Locked = true
  934. p3.BottomSurface = Enum.SurfaceType.Smooth
  935. p3.TopSurface = Enum.SurfaceType.Smooth
  936. b2 = Instance.new("BlockMesh", p3)
  937. b2.Name = "Mesh"
  938. p4 = Instance.new("WedgePart", m)
  939. p4.BrickColor = BrickColor.new("Really black")
  940. p4.Name = "Wedge"
  941. p4.FormFactor = Enum.FormFactor.Custom
  942. p4.Size = Vector3.new(3, 1, 0.5)
  943. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  944. p4.CanCollide = false
  945. p4.Locked = true
  946. p4.BottomSurface = Enum.SurfaceType.Smooth
  947. p4.TopSurface = Enum.SurfaceType.Smooth
  948. p5 = Instance.new("Part", m)
  949. p5.BrickColor = BrickColor.new("Really black")
  950. p5.FormFactor = Enum.FormFactor.Custom
  951. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  952. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  953. p5.CanCollide = false
  954. p5.Locked = true
  955. p5.BottomSurface = Enum.SurfaceType.Smooth
  956. p5.TopSurface = Enum.SurfaceType.Smooth
  957. b3 = Instance.new("BlockMesh", p5)
  958. b3.Name = "Mesh"
  959. p6 = Instance.new("Part", m)
  960. p6.BrickColor = BrickColor.new("Really black")
  961. p6.FormFactor = Enum.FormFactor.Custom
  962. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  963. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  964. p6.CanCollide = false
  965. p6.Locked = true
  966. p6.BottomSurface = Enum.SurfaceType.Smooth
  967. p6.TopSurface = Enum.SurfaceType.Smooth
  968. b4 = Instance.new("BlockMesh", p6)
  969. b4.Name = "Mesh"
  970. p7 = Instance.new("Part", m)
  971. p7.BrickColor = BrickColor.new("Really black")
  972. p7.FormFactor = Enum.FormFactor.Custom
  973. p7.Size = Vector3.new(3, 1, 1.10000005)
  974. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  975. p7.CanCollide = false
  976. p7.Locked = true
  977. p7.BottomSurface = Enum.SurfaceType.Smooth
  978. p7.TopSurface = Enum.SurfaceType.Smooth
  979. b5 = Instance.new("BlockMesh", p7)
  980. b5.Name = "Mesh"
  981. p8 = Instance.new("Part", m)
  982. p8.BrickColor = BrickColor.new("Really red")
  983. p8.Material = "Neon"
  984. p8.FormFactor = Enum.FormFactor.Symmetric
  985. p8.Size = Vector3.new(1, 1, 1)
  986. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  987. p8.CanCollide = false
  988. p8.Locked = true
  989. b6 = Instance.new("SpecialMesh", p8)
  990. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  991. b6.TextureId = ""
  992. b6.MeshType = Enum.MeshType.FileMesh
  993. b6.Name = "Mesh"
  994. b6.Scale = Vector3.new(1.10000005, 0.449999988, 0.449999988)
  995. p9 = Instance.new("Part", m)
  996. p9.BrickColor = BrickColor.new("Really black")
  997. p9.FormFactor = Enum.FormFactor.Custom
  998. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  999. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  1000. p9.CanCollide = false
  1001. p9.Locked = true
  1002. p9.BottomSurface = Enum.SurfaceType.Smooth
  1003. p9.TopSurface = Enum.SurfaceType.Smooth
  1004. b7 = Instance.new("BlockMesh", p9)
  1005. b7.Name = "Mesh"
  1006. p10 = Instance.new("Part", m)
  1007. p10.BrickColor = BrickColor.new("Really red")
  1008. p10.Material = "Neon"
  1009. p10.FormFactor = Enum.FormFactor.Symmetric
  1010. p10.Size = Vector3.new(1, 1, 1)
  1011. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  1012. p10.CanCollide = false
  1013. p10.Locked = true
  1014. b8 = Instance.new("SpecialMesh", p10)
  1015. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1016. b8.TextureId = ""
  1017. b8.MeshType = Enum.MeshType.FileMesh
  1018. b8.Name = "Mesh"
  1019. b8.Scale = Vector3.new(1.10000005, 0.449999988, 0.449999988)
  1020. p11 = Instance.new("Part", m)
  1021. p11.BrickColor = BrickColor.new("Really black")
  1022. p11.FormFactor = Enum.FormFactor.Custom
  1023. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  1024. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  1025. p11.CanCollide = false
  1026. p11.Locked = true
  1027. p11.BottomSurface = Enum.SurfaceType.Smooth
  1028. p11.TopSurface = Enum.SurfaceType.Smooth
  1029. b9 = Instance.new("BlockMesh", p11)
  1030. b9.Name = "Mesh"
  1031. p12 = Instance.new("Part", m)
  1032. p12.BrickColor = BrickColor.new("Really black")
  1033. p12.FormFactor = Enum.FormFactor.Custom
  1034. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  1035. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  1036. p12.CanCollide = false
  1037. p12.Locked = true
  1038. p12.BottomSurface = Enum.SurfaceType.Smooth
  1039. p12.TopSurface = Enum.SurfaceType.Smooth
  1040. b10 = Instance.new("BlockMesh", p12)
  1041. b10.Name = "Mesh"
  1042. p13 = Instance.new("Part", m)
  1043. p13.BrickColor = BrickColor.new("Really black")
  1044. p13.FormFactor = Enum.FormFactor.Custom
  1045. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  1046. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  1047. p13.CanCollide = false
  1048. p13.Locked = true
  1049. p13.BottomSurface = Enum.SurfaceType.Smooth
  1050. p13.TopSurface = Enum.SurfaceType.Smooth
  1051. b11 = Instance.new("BlockMesh", p13)
  1052. b11.Name = "Mesh"
  1053. p14 = Instance.new("Part", m)
  1054. p14.BrickColor = BrickColor.new("Really red")
  1055. p14.Material = "Neon"
  1056. p14.FormFactor = Enum.FormFactor.Symmetric
  1057. p14.Size = Vector3.new(1, 1, 1)
  1058. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  1059. p14.CanCollide = false
  1060. p14.Locked = true
  1061. b12 = Instance.new("SpecialMesh", p14)
  1062. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1063. b12.TextureId = ""
  1064. b12.MeshType = Enum.MeshType.FileMesh
  1065. b12.Name = "Mesh"
  1066. b12.Scale = Vector3.new(1.10000005, 0.449999988, 0.449999988)
  1067. p15 = Instance.new("Part", m)
  1068. p15.BrickColor = BrickColor.new("Medium stone grey")
  1069. p15.Transparency = 1
  1070. p15.Name = "ArmPart"
  1071. p15.FormFactor = Enum.FormFactor.Custom
  1072. p15.Size = Vector3.new(2, 1, 1)
  1073. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  1074. p15.CanCollide = false
  1075. p15.Locked = true
  1076. p15.BottomSurface = Enum.SurfaceType.Smooth
  1077. p15.TopSurface = Enum.SurfaceType.Smooth
  1078. b13 = Instance.new("BlockMesh", p15)
  1079. b13.Name = "Mesh"
  1080. p16 = Instance.new("Part", m)
  1081. p16.BrickColor = BrickColor.new("Really black")
  1082. p16.FormFactor = Enum.FormFactor.Custom
  1083. p16.Size = Vector3.new(3, 1, 2.4000001)
  1084. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  1085. p16.CanCollide = false
  1086. p16.Locked = true
  1087. p16.BottomSurface = Enum.SurfaceType.Smooth
  1088. p16.TopSurface = Enum.SurfaceType.Smooth
  1089. b14 = Instance.new("BlockMesh", p16)
  1090. b14.Name = "Mesh"
  1091. p17 = Instance.new("Part", m)
  1092. p17.BrickColor = BrickColor.new("Really black")
  1093. p17.FormFactor = Enum.FormFactor.Custom
  1094. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  1095. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  1096. p17.CanCollide = false
  1097. p17.Locked = true
  1098. p17.BottomSurface = Enum.SurfaceType.Smooth
  1099. p17.TopSurface = Enum.SurfaceType.Smooth
  1100. b15 = Instance.new("BlockMesh", p17)
  1101. b15.Name = "Mesh"
  1102. p18 = Instance.new("Part", m)
  1103. p18.BrickColor = BrickColor.new("Really red")
  1104. p18.Material = "Neon"
  1105. p18.FormFactor = Enum.FormFactor.Symmetric
  1106. p18.Size = Vector3.new(1, 1, 1)
  1107. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  1108. p18.CanCollide = false
  1109. p18.Locked = true
  1110. b16 = Instance.new("SpecialMesh", p18)
  1111. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1112. b16.TextureId = ""
  1113. b16.MeshType = Enum.MeshType.FileMesh
  1114. b16.Name = "Mesh"
  1115. b16.Scale = Vector3.new(1.10000005, 0.449999988, 0.449999988)
  1116. p19 = Instance.new("Part", m)
  1117. p19.BrickColor = BrickColor.new("Really red")
  1118. p19.Material = "Neon"
  1119. p19.FormFactor = Enum.FormFactor.Symmetric
  1120. p19.Size = Vector3.new(1, 1, 1)
  1121. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  1122. p19.CanCollide = false
  1123. p19.Locked = true
  1124. b17 = Instance.new("SpecialMesh", p19)
  1125. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1126. b17.TextureId = ""
  1127. b17.MeshType = Enum.MeshType.FileMesh
  1128. b17.Name = "Mesh"
  1129. b17.Scale = Vector3.new(1.10000005, 0.449999988, 0.449999988)
  1130. p20 = Instance.new("Part", m)
  1131. p20.BrickColor = BrickColor.new("Really black")
  1132. p20.FormFactor = Enum.FormFactor.Custom
  1133. p20.Size = Vector3.new(3, 1, 2.4000001)
  1134. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  1135. p20.CanCollide = false
  1136. p20.Locked = true
  1137. p20.BottomSurface = Enum.SurfaceType.Smooth
  1138. p20.TopSurface = Enum.SurfaceType.Smooth
  1139. b18 = Instance.new("BlockMesh", p20)
  1140. b18.Name = "Mesh"
  1141. p21 = Instance.new("Part", m)
  1142. p21.BrickColor = BrickColor.new("Really black")
  1143. p21.FormFactor = Enum.FormFactor.Custom
  1144. p21.Size = Vector3.new(3, 1, 1.19999993)
  1145. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  1146. p21.CanCollide = false
  1147. p21.Locked = true
  1148. p21.BottomSurface = Enum.SurfaceType.Smooth
  1149. p21.TopSurface = Enum.SurfaceType.Smooth
  1150. b19 = Instance.new("BlockMesh", p21)
  1151. b19.Name = "Mesh"
  1152. p22 = Instance.new("WedgePart", m)
  1153. p22.BrickColor = BrickColor.new("Really black")
  1154. p22.Name = "Wedge"
  1155. p22.FormFactor = Enum.FormFactor.Custom
  1156. p22.Size = Vector3.new(3, 1, 0.5)
  1157. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  1158. p22.CanCollide = false
  1159. p22.Locked = true
  1160. p22.BottomSurface = Enum.SurfaceType.Smooth
  1161. p22.TopSurface = Enum.SurfaceType.Smooth
  1162. p23 = Instance.new("Part", m)
  1163. p23.BrickColor = BrickColor.new("Really black")
  1164. p23.FormFactor = Enum.FormFactor.Custom
  1165. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1166. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  1167. p23.CanCollide = false
  1168. p23.Locked = true
  1169. p23.BottomSurface = Enum.SurfaceType.Smooth
  1170. p23.TopSurface = Enum.SurfaceType.Smooth
  1171. b20 = Instance.new("BlockMesh", p23)
  1172. b20.Name = "Mesh"
  1173. p24 = Instance.new("WedgePart", m)
  1174. p24.BrickColor = BrickColor.new("Really black")
  1175. p24.Name = "Wedge"
  1176. p24.FormFactor = Enum.FormFactor.Custom
  1177. p24.Size = Vector3.new(3, 1, 0.5)
  1178. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  1179. p24.CanCollide = false
  1180. p24.Locked = true
  1181. p24.BottomSurface = Enum.SurfaceType.Smooth
  1182. p24.TopSurface = Enum.SurfaceType.Smooth
  1183. p25 = Instance.new("Part", m)
  1184. p25.BrickColor = BrickColor.new("Bright yellow")
  1185. p25.Material = "Neon"
  1186. particlep25 = Instance.new("ParticleEmitter")
  1187. particlep25.Parent = p25
  1188. particlep25.Enabled = true
  1189. particlep25.LockedToPart = true
  1190. particlep25.Texture = "rbxassetid://286293993"
  1191. particlep25.EmissionDirection = "Right"
  1192. particlep25.Size = NumberSequence.new(1.8)
  1193. particlep25.Lifetime = NumberRange.new(0.09)
  1194. particlep25.Color = ColorSequence.new(Color3.new(255, 0, 0), Color3.new(255, 0, 0))
  1195. particlep25.Rate = 150
  1196. p25.FormFactor = Enum.FormFactor.Symmetric
  1197. p25.Size = Vector3.new(1, 1, 1)
  1198. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  1199. p25.CanCollide = false
  1200. p25.Locked = true
  1201. p25.BottomSurface = Enum.SurfaceType.Smooth
  1202. p25.TopSurface = Enum.SurfaceType.Smooth
  1203. b21 = Instance.new("SpecialMesh", p25)
  1204. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1205. b21.TextureId = ""
  1206. b21.MeshType = Enum.MeshType.FileMesh
  1207. b21.Name = "Mesh"
  1208. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1209. p26 = Instance.new("Part", m)
  1210. p26.BrickColor = BrickColor.new("Really black")
  1211. p26.FormFactor = Enum.FormFactor.Symmetric
  1212. p26.Size = Vector3.new(1, 1, 1)
  1213. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1214. p26.CanCollide = false
  1215. p26.Locked = true
  1216. p26.BottomSurface = Enum.SurfaceType.Smooth
  1217. p26.TopSurface = Enum.SurfaceType.Smooth
  1218. b22 = Instance.new("SpecialMesh", p26)
  1219. b22.MeshType = Enum.MeshType.Brick
  1220. b22.Name = "Mesh"
  1221. w1 = Instance.new("Weld", p1)
  1222. w1.Name = "Wedge_Weld"
  1223. w1.Part0 = p1
  1224. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1225. w1.Part1 = p2
  1226. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1227. w2 = Instance.new("Weld", p2)
  1228. w2.Name = "Part_Weld"
  1229. w2.Part0 = p2
  1230. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1231. w2.Part1 = p3
  1232. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1233. w3 = Instance.new("Weld", p3)
  1234. w3.Name = "Wedge_Weld"
  1235. w3.Part0 = p3
  1236. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1237. w3.Part1 = p4
  1238. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1239. w4 = Instance.new("Weld", p4)
  1240. w4.Name = "Part_Weld"
  1241. w4.Part0 = p4
  1242. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1243. w4.Part1 = p5
  1244. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1245. w5 = Instance.new("Weld", p5)
  1246. w5.Name = "Part_Weld"
  1247. w5.Part0 = p5
  1248. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1249. w5.Part1 = p6
  1250. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1251. w6 = Instance.new("Weld", p6)
  1252. w6.Name = "Part_Weld"
  1253. w6.Part0 = p6
  1254. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1255. w6.Part1 = p7
  1256. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1257. w7 = Instance.new("Weld", p7)
  1258. w7.Name = "Part_Weld"
  1259. w7.Part0 = p7
  1260. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1261. w7.Part1 = p8
  1262. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1263. w8 = Instance.new("Weld", p8)
  1264. w8.Name = "Part_Weld"
  1265. w8.Part0 = p8
  1266. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1267. w8.Part1 = p9
  1268. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1269. w9 = Instance.new("Weld", p9)
  1270. w9.Name = "Part_Weld"
  1271. w9.Part0 = p9
  1272. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1273. w9.Part1 = p10
  1274. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1275. w10 = Instance.new("Weld", p10)
  1276. w10.Name = "Part_Weld"
  1277. w10.Part0 = p10
  1278. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1279. w10.Part1 = p11
  1280. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1281. w11 = Instance.new("Weld", p11)
  1282. w11.Name = "Part_Weld"
  1283. w11.Part0 = p11
  1284. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46100418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1285. w11.Part1 = p12
  1286. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1287. w12 = Instance.new("Weld", p12)
  1288. w12.Name = "Part_Weld"
  1289. w12.Part0 = p12
  1290. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1291. w12.Part1 = p13
  1292. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1293. w13 = Instance.new("Weld", p13)
  1294. w13.Name = "Part_Weld"
  1295. w13.Part0 = p13
  1296. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1297. w13.Part1 = p14
  1298. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1299. w14 = Instance.new("Weld", p14)
  1300. w14.Name = "ArmPart_Weld"
  1301. w14.Part0 = p14
  1302. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1303. w14.Part1 = p15
  1304. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1305. w15 = Instance.new("Weld", p15)
  1306. w15.Name = "Part_Weld"
  1307. w15.Part0 = p15
  1308. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1309. w15.Part1 = p16
  1310. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1311. w16 = Instance.new("Weld", p16)
  1312. w16.Name = "Part_Weld"
  1313. w16.Part0 = p16
  1314. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1315. w16.Part1 = p17
  1316. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1317. w17 = Instance.new("Weld", p17)
  1318. w17.Name = "Part_Weld"
  1319. w17.Part0 = p17
  1320. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1321. w17.Part1 = p18
  1322. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1323. w18 = Instance.new("Weld", p18)
  1324. w18.Name = "Part_Weld"
  1325. w18.Part0 = p18
  1326. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1327. w18.Part1 = p19
  1328. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1329. w19 = Instance.new("Weld", p19)
  1330. w19.Name = "Part_Weld"
  1331. w19.Part0 = p19
  1332. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1333. w19.Part1 = p20
  1334. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1335. w20 = Instance.new("Weld", p20)
  1336. w20.Name = "Part_Weld"
  1337. w20.Part0 = p20
  1338. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1339. w20.Part1 = p21
  1340. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1341. w21 = Instance.new("Weld", p21)
  1342. w21.Name = "Wedge_Weld"
  1343. w21.Part0 = p21
  1344. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1345. w21.Part1 = p22
  1346. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1347. w22 = Instance.new("Weld", p22)
  1348. w22.Name = "Part_Weld"
  1349. w22.Part0 = p22
  1350. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1351. w22.Part1 = p23
  1352. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1353. w23 = Instance.new("Weld", p23)
  1354. w23.Name = "Wedge_Weld"
  1355. w23.Part0 = p23
  1356. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1357. w23.Part1 = p24
  1358. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1359. w24 = Instance.new("Weld", p24)
  1360. w24.Name = "Part_Weld"
  1361. w24.Part0 = p24
  1362. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1363. w24.Part1 = p25
  1364. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1365. w25 = Instance.new("Weld", p25)
  1366. w25.Name = "Part_Weld"
  1367. w25.Part0 = p25
  1368. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1369. w25.Part1 = p26
  1370. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1371. m.Parent = char
  1372. m:MakeJoints()
  1373. ----------------------------------------------------
  1374. local cor2 = Instance.new("Part", char.Claw)
  1375. cor2.Name = "Thingy"
  1376. cor2.Locked = true
  1377. cor2.BottomSurface = 0
  1378. cor2.CanCollide = false
  1379. cor2.Size = Vector3.new(2, 1, 1)
  1380. cor2.Transparency = 1
  1381. cor2.TopSurface = 0
  1382. corw2 = Instance.new("Weld", cor2)
  1383. corw2.Part0 = larm
  1384. corw2.Part1 = cor2
  1385. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1386. corw2.C1 = CFrame.new(0, 0, 0)
  1387. weld2 = Instance.new("Weld", char.Claw)
  1388. weld2.Part0 = cor2
  1389. weld2.Part1 = char.Claw.ArmPart
  1390. weld2.C0 = CFrame.new(0, 0, 0)
  1391. ----------------------------------------------------
  1392. function weld5(part0, part1, c0, c1)
  1393. weeld=Instance.new("Weld", part0)
  1394. weeld.Part0=part0
  1395. weeld.Part1=part1
  1396. weeld.C0=c0
  1397. weeld.C1=c1
  1398. return weeld
  1399. end
  1400. ----------------------------------------------------
  1401. function newRay(start,face,range,wat)
  1402. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1403. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1404. return rey,hit,pos
  1405. end
  1406. ----------------------------------------------------
  1407. mod5 = Instance.new("Model",char)
  1408.  
  1409. function FindNearestTorso(Position,Distance,SinglePlayer)
  1410. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1411. local List = {}
  1412. for i,v in pairs(workspace:GetChildren())do
  1413. if v:IsA("Model")then
  1414. if v:findFirstChild("Torso")then
  1415. if v ~= char then
  1416. if(v.Torso.Position -Position).magnitude <= Distance then
  1417. table.insert(List,v)
  1418. end
  1419. end
  1420. end
  1421. end
  1422. end
  1423. return List
  1424. end
  1425.  
  1426. function Landing()
  1427. part=Instance.new('Part',mod5)
  1428. part.Anchored=true
  1429. part.CanCollide=false
  1430. part.FormFactor='Custom'
  1431. part.Size=Vector3.new(.2,.2,.2)
  1432. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1433. part.Transparency=.7
  1434. part.BrickColor=BrickColor.new('Really black')
  1435. mesh=Instance.new('SpecialMesh',part)
  1436. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1437. mesh.Scale=Vector3.new(10,5,10)
  1438.  
  1439. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1440. if v:FindFirstChild('Humanoid') then
  1441. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1442. v.Humanoid.PlatformStand = true
  1443. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1444. end
  1445. end
  1446.  
  1447. coroutine.resume(coroutine.create(function()
  1448. for i=0,3.8,0.05 do
  1449. wait()
  1450. part.CFrame=part.CFrame
  1451. part.Transparency=i
  1452. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1453. end
  1454. part.Parent = nil
  1455. end))
  1456. end
  1457. ----------------------------------------------------
  1458. mod4 = Instance.new("Model",char)
  1459.  
  1460. ptez = {0.7, 0.8, 0.9, 1}
  1461.  
  1462. function FindNearestTorso(Position,Distance,SinglePlayer)
  1463. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1464. local List = {}
  1465. for i,v in pairs(workspace:GetChildren())do
  1466. if v:IsA("Model")then
  1467. if v:findFirstChild("Torso")then
  1468. if v ~= char then
  1469. if(v.Torso.Position -Position).magnitude <= Distance then
  1470. table.insert(List,v)
  1471. end
  1472. end
  1473. end
  1474. end
  1475. end
  1476. return List
  1477. end
  1478.  
  1479. function GroundPound()
  1480. part=Instance.new('Part',mod4)
  1481. part.Anchored=true
  1482. part.CanCollide=false
  1483. part.FormFactor='Custom'
  1484. part.Size=Vector3.new(.2,.2,.2)
  1485. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1486. part.Transparency=.7
  1487. part.BrickColor=BrickColor.new('Really black')
  1488. mesh=Instance.new('SpecialMesh',part)
  1489. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1490. mesh.Scale=Vector3.new(3,3,3)
  1491. part2=Instance.new('Part',mod4)
  1492. part2.Anchored=true
  1493. part2.CanCollide=false
  1494. part2.FormFactor='Custom'
  1495. part2.Size=Vector3.new(.2,.2,.2)
  1496. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1497. part2.Transparency=.7
  1498. part2.BrickColor=BrickColor.new('Really red')
  1499. mesh2=Instance.new('SpecialMesh',part2)
  1500. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1501. mesh2.Scale=Vector3.new(3,1.5,3)
  1502. x = Instance.new("Sound",char)
  1503. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1504. x.Pitch = ptez[math.random(1,#ptez)]
  1505. x.Volume = 1
  1506. wait(.1)
  1507. x:Play()
  1508. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1509. if v:FindFirstChild('Humanoid') then
  1510. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1511. end
  1512. end
  1513. coroutine.resume(coroutine.create(function()
  1514. for i=0,0.62,0.13 do
  1515. wait()
  1516. part.CFrame=part.CFrame
  1517. part.Transparency=i
  1518. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1519. part2.CFrame=part2.CFrame
  1520. part2.Transparency=i
  1521. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1522. end
  1523. part.Parent=nil
  1524. part2.Parent=nil
  1525. x:Destroy()
  1526. end))
  1527. end
  1528. ----------------------------------------------------
  1529. mod=Instance.new('Model',char)
  1530.  
  1531. function charge()
  1532. hed.Velocity=hed.CFrame.lookVector*100
  1533. part=Instance.new('Part',mod)
  1534. part.Anchored=true
  1535. part.CanCollide=false
  1536. part.FormFactor='Custom'
  1537. part.Size=Vector3.new(.2,.2,.2)
  1538. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1539. part.Transparency=.7
  1540. part.BrickColor=BrickColor.new('Black')
  1541. mesh=Instance.new('SpecialMesh',part)
  1542. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1543. mesh.Scale=Vector3.new(10,5,10)
  1544. part2=part:clone()
  1545. part2.Parent=mod
  1546. part2.BrickColor=BrickColor.new('Bright red')
  1547. mesh2=mesh:clone()
  1548. mesh2.Parent=part2
  1549. mesh2.Scale=Vector3.new(20,10,20)
  1550. part3=part2:clone()
  1551. part3.Parent = mod
  1552. part3.BrickColor=BrickColor.new('Really black')
  1553. mesh3=mesh2:clone()
  1554. mesh2.Parent=part3
  1555. mesh3.Scale=Vector3.new(30,15,30)
  1556. coroutine.resume(coroutine.create(function()
  1557. for i=0,1,0.1 do
  1558. wait()
  1559. part.CFrame=part.CFrame
  1560. part.Transparency=i
  1561. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1562. part2.CFrame=part2.CFrame
  1563. part2.Transparency=i
  1564. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1565. part3.CFrame=part3.CFrame
  1566. part3.Transparency=i
  1567. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1568. end
  1569. part.Parent=nil
  1570. part2.Parent=nil
  1571. part3.Parent = nil
  1572. end))
  1573. end
  1574. ----------------------------------------------------
  1575. function FindNearestTorso(Position,Distance,SinglePlayer)
  1576. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1577. local List = {}
  1578. for i,v in pairs(workspace:GetChildren())do
  1579. if v:IsA("Model")then
  1580. if v:findFirstChild("Torso")then
  1581. if v ~= char then
  1582. if(v.Torso.Position -Position).magnitude <= Distance then
  1583. table.insert(List,v)
  1584. end
  1585. end
  1586. end
  1587. end
  1588. end
  1589. return List
  1590. end
  1591.  
  1592. mod3 = Instance.new("Model",rleg)
  1593.  
  1594. function Stomp()
  1595. part=Instance.new('Part',mod3)
  1596. part.Anchored=true
  1597. part.CanCollide=false
  1598. part.FormFactor='Custom'
  1599. part.Size=Vector3.new(.2,.2,.2)
  1600. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1601. part.Transparency=.7
  1602. part.BrickColor=BrickColor.new('Really red')
  1603. mesh=Instance.new('SpecialMesh',part)
  1604. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1605. mesh.Scale=Vector3.new(25,25,25)
  1606. part2=part:clone()
  1607. part2.Parent=mod3
  1608. part2.BrickColor=BrickColor.new('Really red')
  1609. mesh2=mesh:clone()
  1610. mesh2.Parent=part2
  1611. mesh2.Scale=Vector3.new(15,15,15)
  1612. part3=part:clone()
  1613. part3.Parent=mod3
  1614. part3.TopSurface=0
  1615. part3.BottomSurface=0
  1616. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1617. mesh3=Instance.new('SpecialMesh',part3)
  1618. mesh3.MeshType = 3
  1619. mesh3.Scale=Vector3.new(12,12,12)
  1620. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1621. if v:FindFirstChild('Humanoid') then
  1622. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1623. v.Humanoid.PlatformStand = true
  1624. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 800
  1625. end
  1626. end
  1627. coroutine.resume(coroutine.create(function()
  1628. for i=0,3.8,0.05 do
  1629. wait()
  1630. part.CFrame=part.CFrame
  1631. part.Transparency=i
  1632. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1633. part2.CFrame=part2.CFrame
  1634. part2.Transparency=i
  1635. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1636. part3.CFrame=part3.CFrame
  1637. part3.Transparency=i
  1638. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1639. end
  1640. end))
  1641. end
  1642. ----------------------------------------------------
  1643.  
  1644. local acos = math.acos
  1645. local sqrt = math.sqrt
  1646. local Vec3 = Vector3.new
  1647. local fromAxisAngle = CFrame.fromAxisAngle
  1648.  
  1649. local function toAxisAngle(CFr)
  1650. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1651. local Angle = math.acos((R00+R11+R22-1)/2)
  1652. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1653. A = A == 0 and 0.00001 or A
  1654. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1655. B = B == 0 and 0.00001 or B
  1656. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1657. C = C == 0 and 0.00001 or C
  1658. local x = (R21-R12)/sqrt(A)
  1659. local y = (R02-R20)/sqrt(B)
  1660. local z = (R10-R01)/sqrt(C)
  1661. return Vec3(x,y,z),Angle
  1662. end
  1663.  
  1664. function ApplyTrig(Num,Func)
  1665. local Min,Max = Func(0),Func(1)
  1666. local i = Func(Num)
  1667. return (i-Min)/(Max-Min)
  1668. --[[if Func == "sin" then
  1669. return (math.sin((1-Num)*math.pi)+1)/2
  1670. elseif Func == "cos" then
  1671. return (math.cos((1-Num)*math.pi)+1)/2
  1672. end]]
  1673. end
  1674.  
  1675. function LerpCFrame(CFrame1,CFrame2,Num)
  1676. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1677. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1678. end
  1679.  
  1680. function Crater(Torso,Radius)
  1681. Spawn(function()
  1682. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1683. local Ignore = {}
  1684. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1685. if v.Character ~= nil then
  1686. Ignore[#Ignore+1] = v.Character
  1687. end
  1688. end
  1689. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1690. if Hit == nil then return end
  1691. local Parts = {}
  1692. for i = 1,360,10 do
  1693. local P = Instance.new("Part",Torso.Parent)
  1694. P.Anchored = true
  1695. P.FormFactor = "Custom"
  1696. P.BrickColor = Hit.BrickColor
  1697. P.Material = Hit.Material
  1698. P.TopSurface = "Smooth"
  1699. P.BottomSurface = "Smooth"
  1700. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1701. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1702. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  1703. if math.random(0,5) == 0 then -- rubble
  1704. local P = Instance.new("Part",Torso.Parent)
  1705. P.Anchored = true
  1706. P.FormFactor = "Custom"
  1707. P.BrickColor = Hit.BrickColor
  1708. P.Material = Hit.Material
  1709. P.TopSurface = "Smooth"
  1710. P.BottomSurface = "Smooth"
  1711. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1712. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  1713. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  1714. end
  1715. end
  1716. for i = 0,1,0.05 do
  1717. for i2,v in pairs(Parts) do
  1718. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1719. end
  1720. wait(0.02)
  1721. end
  1722. for i,v in pairs(Parts) do
  1723. if v[1].Size.X > 2.1 then
  1724. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1725. end
  1726. v[1].Anchored = false
  1727. end
  1728. for i = 0,1,0.05 do
  1729. for i2,v in pairs(Parts) do
  1730. v[1].Transparency = i
  1731. if i == 1 then
  1732. v[1]:Destroy()
  1733. elseif i >= 0.25 then
  1734. v[1].CanCollide = false
  1735. end
  1736. end
  1737. wait(0.02)
  1738. end
  1739. Parts = nil
  1740. end)
  1741. end
  1742.  
  1743. ----------------------------------------------------
  1744. mouse.KeyDown:connect(function(key)
  1745. if key == "r" then
  1746. larm.BrickColor = BrickColor.new("Bright red")
  1747. rarm.BrickColor = BrickColor.new("Bright red")
  1748. if Debounces.CanAttack == true then
  1749. Debounces.CanAttack = false
  1750. Debounces.on = true
  1751. Debounces.NoIdl = true
  1752. to = char.Titanius.Thingy2.Touched:connect(function(ht)
  1753. hit = ht.Parent
  1754. if ht and hit:IsA("Model") then
  1755. if hit:FindFirstChild("Humanoid") then
  1756. if hit.Name ~= p.Name then
  1757. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1758. Debounces.Slashed = true]]--
  1759. hit:FindFirstChild("Humanoid"):TakeDamage(19999999)
  1760. wait(1)
  1761. --Debounces.Slashed = false
  1762. --end
  1763. end
  1764. end
  1765. elseif ht and hit:IsA("Hat") then
  1766. if hit.Parent.Name ~= p.Name then
  1767. if hit.Parent:FindFirstChild("Humanoid") then
  1768. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1769. Debounces.Slashed = true]]--
  1770. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(109999999)
  1771. wait(1)
  1772. --Debounces.Slashed = false
  1773. end
  1774. end
  1775. end
  1776. end)
  1777. q = Instance.new("Sound",hed)
  1778. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1779. q.Pitch = 0.85
  1780. q.Looped = false
  1781. q1 = Instance.new("Sound",hed)
  1782. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1783. q1.Pitch = 0.85
  1784. q1.Looped = false
  1785. q:Play()
  1786. q1:Play()
  1787. for i = 1,20 do
  1788. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1789. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1790. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1791. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1792. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1793. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1794. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1795. if Debounces.on == false then break end
  1796. wait()
  1797. end
  1798. n = Instance.new("Sound",hed)
  1799. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1800. n.Pitch = 0.94
  1801. n.Looped = false
  1802. n1 = Instance.new("Sound",hed)
  1803. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1804. n1.Pitch = 0.94
  1805. n1.Looped = false
  1806. n:Play()
  1807. n1:Play()
  1808. b = Instance.new("Sound",hed)
  1809. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1810. b.Pitch = 0.94
  1811. b.Looped = false
  1812. b1 = Instance.new("Sound",hed)
  1813. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1814. b1.Pitch = 0.94
  1815. b1.Looped = false
  1816. b:Play()
  1817. b1:Play()
  1818. for i = 1,26 do
  1819. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1820. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1821. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1822. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1823. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1824. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1825. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1826. if Debounces.on == false then break end
  1827. wait()
  1828. end
  1829. wait(.5)
  1830. to:disconnect()
  1831. q:Destroy()
  1832. q1:Destroy()
  1833. n:Destroy()
  1834. n1:Destroy()
  1835. larm.BrickColor = BrickColor.new("Really black")
  1836. rarm.BrickColor = BrickColor.new("Really black")
  1837. if Debounces.CanAttack == false then
  1838. Debounces.CanAttack = true
  1839. Debounces.on = false
  1840. Debounces.NoIdl = false
  1841. end
  1842. end
  1843. end
  1844. end)
  1845. ----------------------------------------------------
  1846. mouse.KeyDown:connect(function(key)
  1847. if key == "q" then
  1848. larm.BrickColor = BrickColor.new("Bright red")
  1849. rarm.BrickColor = BrickColor.new("Bright red")
  1850. if Debounces.CanAttack == true then
  1851. Debounces.CanAttack = false
  1852. Debounces.on = true
  1853. Debounces.NoIdl = true
  1854. to = char.Titanius.Thingy2.Touched:connect(function(ht)
  1855. hit = ht.Parent
  1856. if ht and hit:IsA("Model") then
  1857. if hit:FindFirstChild("Humanoid") then
  1858. if hit.Name ~= p.Name then
  1859. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1860. Debounces.Slashed = true]]--
  1861. hit:FindFirstChild("Humanoid"):TakeDamage(499999999)
  1862. wait(1)
  1863. --Debounces.Slashed = false
  1864. --end
  1865. end
  1866. end
  1867. elseif ht and hit:IsA("Hat") then
  1868. if hit.Parent.Name ~= p.Name then
  1869. if hit.Parent:FindFirstChild("Humanoid") then
  1870. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1871. Debounces.Slashed = true]]--
  1872. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(499999999)
  1873. wait(1)
  1874. --Debounces.Slashed = false
  1875. end
  1876. end
  1877. end
  1878. end)
  1879. for i = 1, 20 do
  1880. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1881. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1882. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1883. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1884. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1885. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1886. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1887. if Debounces.on == false then break end
  1888. wait()
  1889. end
  1890. z = Instance.new("Sound",hed)
  1891. z.SoundId = "rbxassetid://160069154"
  1892. z.Looped = false
  1893. z.Pitch = .9
  1894. z1 = Instance.new("Sound",hed)
  1895. z1.SoundId = "rbxassetid://160069154"
  1896. z1.Looped = false
  1897. z1.Pitch = .9
  1898. wait(0.01)
  1899. z:Play()
  1900. z1:Play()
  1901. for i = 1, 12 do
  1902. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1903. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1904. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1905. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1906. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1907. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1908. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1909. if Debounces.on == false then break end
  1910. wait()
  1911. end
  1912. for i = 1, 12 do
  1913. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1914. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1915. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1916. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1917. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1918. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1919. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1920. if Debounces.on == false then break end
  1921. wait()
  1922. end
  1923. z = Instance.new("Sound",hed)
  1924. z.SoundId = "rbxassetid://168586621"
  1925. z.Looped = false
  1926. z.Pitch = 1
  1927. z1 = Instance.new("Sound",hed)
  1928. z1.SoundId = "rbxassetid://168586621"
  1929. z1.Looped = false
  1930. z1.Pitch = 1
  1931. wait(0.01)
  1932. z:Play()
  1933. z1:Play()
  1934. for i = 1, 12 do
  1935. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1936. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1937. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1938. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1939. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1940. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1941. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1942. if Debounces.on == false then break end
  1943. wait()
  1944. end
  1945. to:disconnect()
  1946. larm.BrickColor = BrickColor.new("Really black")
  1947. rarm.BrickColor = BrickColor.new("Really black")
  1948. if Debounces.CanAttack == false then
  1949. Debounces.CanAttack = true
  1950. Debounces.on = false
  1951. Debounces.NoIdl = false
  1952. end
  1953. end
  1954. end
  1955. end)
  1956. ----------------------------------------------------
  1957. Sit = false
  1958. mouse.KeyDown:connect(function(key)
  1959. if key == "v" then
  1960. if Sit == false then
  1961. Sit = true
  1962. hum.WalkSpeed = 100
  1963. stanceToggle = "Sitting"
  1964. elseif Sit == true then
  1965. Sit = false
  1966. hum.WalkSpeed = 100
  1967. stanceToggle = "Normal"
  1968. end
  1969. end
  1970. end)
  1971. ----------------------------------------------------
  1972. mouse.KeyDown:connect(function(key)
  1973. if key == "t" then
  1974. if Debounces.CanAttack == true then
  1975. Debounces.CanAttack = false
  1976. Debounces.on = true
  1977. Debounces.NoIdl = true
  1978. for i = 1, 20 do
  1979. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1980. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1981. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1982. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1983. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1984. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1985. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1986. if Debounces.on == false then break end
  1987. wait()
  1988. end
  1989. Spawn(function()
  1990. local Parts = {}
  1991. for Y = -5,5 do
  1992. local P = Instance.new("Part",char)
  1993. P.Anchored = true
  1994. P.FormFactor = "Custom"
  1995. P.CanCollide = false
  1996. P.Size = Vector3.new(1,2,1)
  1997. P.TopSurface = "SmoothNoOutlines"
  1998. P.BottomSurface = "SmoothNoOutlines"
  1999. P.BrickColor = BrickColor.new("Really black")
  2000. P.Name = tostring(Y)
  2001. local i = (Y+5)/(10)
  2002. i = 1-math.cos(math.pi*i-(math.pi/2))
  2003. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  2004. --[[P.Touched:connect(function(ht)
  2005. local hit = ht.Parent
  2006. if hit:FindFirstChild("Humanoid") then
  2007. hit.Humanoid:TakeDamage(math.random(10000020,10000030))
  2008. end
  2009. end)]]--
  2010. s = Instance.new("Sound",P)
  2011. s.SoundId = "rbxassetid://228343271"
  2012. s.Volume = .7
  2013. s.Pitch = 0.9
  2014. s:Play()
  2015. P.Touched:connect(function(ht)
  2016. hit = ht.Parent
  2017. if ht and hit:IsA("Model") then
  2018. if hit:FindFirstChild("Humanoid") then
  2019. if hit.Name ~= p.Name then
  2020. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2021. Debounces.Slashed = true]]--
  2022. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(10000020,10000030))
  2023. hit:FindFirstChild("Humanoid").PlatformStand = true
  2024. wait(1)
  2025. --Debounces.Slashed = false
  2026. --end
  2027. end
  2028. end
  2029. elseif ht and hit:IsA("Hat") then
  2030. if hit.Parent.Name ~= p.Name then
  2031. if hit.Parent:FindFirstChild("Humanoid") then
  2032. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2033. Debounces.Slashed = true]]--
  2034. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (10000020,10000030))
  2035. hit:FindFirstChild("Humanoid").PlatformStand = true
  2036. wait(1)
  2037. --Debounces.Slashed = false
  2038. --end
  2039. end
  2040. end
  2041. end
  2042. end)
  2043. Parts[#Parts+1] = P
  2044. end
  2045. local BREAKIT = false
  2046. local CParts = {}
  2047. local Rocks = {}
  2048. local LastPos = nil
  2049. for i = 1,70 do
  2050. for i2,v in pairs(Parts) do
  2051. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  2052. local cf = v.CFrame
  2053. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  2054. v.CFrame = cf
  2055. v.Transparency = v.Transparency+0.02
  2056. if v.Transparency >= 0.975 then BREAKIT = true end
  2057. if v.Name == "0" then
  2058. local Ignore = {}
  2059. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2060. if v.Character ~= nil then
  2061. Ignore[#Ignore+1] = v.Character
  2062. end
  2063. end
  2064. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-100,0))
  2065. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  2066. if Hit ~= nil then
  2067. if #Rocks == 0 then
  2068. for i = 1,5 do
  2069. local P = Instance.new("Part",char)
  2070. Rocks[#Rocks+1] = P
  2071. P.Anchored = true
  2072. P.FormFactor = "Custom"
  2073. P.BrickColor = Hit.BrickColor
  2074. P.Material = Hit.Material
  2075. P.TopSurface = "Smooth"
  2076. P.BottomSurface = "Smooth"
  2077. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  2078. end
  2079. end
  2080. for i,P in pairs(Rocks) do
  2081. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  2082. end
  2083. local P = Instance.new("Part",char)
  2084. CParts[#CParts+1] = {P,tick()}
  2085. P.Anchored = true
  2086. P.FormFactor = "Custom"
  2087. P.BrickColor = Hit.BrickColor
  2088. P.Material = Hit.Material
  2089. P.TopSurface = "Smooth"
  2090. P.BottomSurface = "Smooth"
  2091. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  2092. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  2093. Pos = Pos.p
  2094. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  2095. local P = P:Clone()
  2096. CParts[#CParts+1] = {P,tick()}
  2097. P.Parent = char
  2098. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  2099. Pos = Pos.p
  2100. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  2101. if LastPos ~= nil then
  2102. local P = P:Clone()
  2103. CParts[#CParts+1] = {P,tick()}
  2104. P.Parent = char
  2105. P.BrickColor = BrickColor.new("Really black")
  2106. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  2107. Pos = Pos.p
  2108. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  2109. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  2110. --P.Velocity = Vector3.new(0,-1000,0)
  2111. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  2112. end
  2113. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  2114. end
  2115. end
  2116. end
  2117. if BREAKIT then break end
  2118. wait(0.002)
  2119. end
  2120. for i,v in pairs(Rocks) do
  2121. CParts[#CParts+1] = {v,tick()}
  2122. end
  2123. for i,v in pairs(Parts) do
  2124. v:Destroy()
  2125. end
  2126. Parts = nil
  2127. while true do
  2128. local t = tick()
  2129. local p = nil
  2130. for i,v in pairs(CParts) do
  2131. if t-v[2] > 4 then
  2132. v[1].Transparency = v[1].Transparency+0.05
  2133. if v[1].Transparency >= 1 then
  2134. v[1]:Destroy()
  2135. CParts[i] = nil
  2136. end
  2137. end
  2138. p = v
  2139. end
  2140. if p == nil then break end
  2141. wait(0.002)
  2142. end
  2143. for i,v in pairs(CParts) do
  2144. v:Destroy()
  2145. end
  2146. CParts = {}
  2147. end)
  2148. for i = 1, 20 do
  2149. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  2150. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  2151. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  2152. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  2153. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  2154. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  2155. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  2156. if Debounces.on == false then break end
  2157. wait()
  2158. end
  2159. if Debounces.CanAttack == false then
  2160. Debounces.CanAttack = true
  2161. Debounces.on = false
  2162. Debounces.NoIdl = false
  2163. end
  2164. end
  2165. end
  2166. end)
  2167. ----------------------------------------------------
  2168. mouse.KeyDown:connect(function(key)
  2169. if key == "e" then
  2170. larm.BrickColor = BrickColor.new("Bright red")
  2171. rarm.BrickColor = BrickColor.new("Bright red")
  2172. if Debounces.CanAttack == true then
  2173. Debounces.CanAttack = false
  2174. Debounces.on = true
  2175. Debounces.NoIdl = true
  2176. for i = 1, 18 do
  2177. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  2178. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2179. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2180. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2181. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2182. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2183. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2184. if Debounces.on == false then break end
  2185. wait()
  2186. end
  2187. local HandCF = CFrame.new(char.Titanius.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2188. local rng = Instance.new("Part", char.Titanius.Handle)
  2189. rng.Anchored = true
  2190. rng.BrickColor = BrickColor.new("Really black")
  2191. rng.CanCollide = true
  2192. rng.FormFactor = 3
  2193. rng.Name = "Ring"
  2194. rng.Size = Vector3.new(1, 1, 1)
  2195. rng.CanCollide = false
  2196. rng.Transparency = 0.35
  2197. rng.TopSurface = 0
  2198. rng.BottomSurface = 0
  2199. rng.CFrame = HandCF
  2200. local rngm = Instance.new("SpecialMesh", rng)
  2201. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2202. rngm.Scale = Vector3.new(1, 1, 2)
  2203. x = Instance.new("Sound", hed)
  2204. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2205. x.Looped = false
  2206. x.Pitch = .7
  2207. x.Volume = 1
  2208. x1 = Instance.new("Sound", hed)
  2209. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2210. x1.Looped = false
  2211. x1.Pitch = .7
  2212. x1.Volume = 1
  2213. x:Play()
  2214. x1:Play()
  2215. rngto = rng.Touched:connect(function(ht)
  2216. hit = ht.Parent
  2217. if ht and hit:IsA("Model") then
  2218. if hit:FindFirstChild("Humanoid") then
  2219. if hit.Name ~= p.Name then
  2220. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2221. Debounces.Slashed = true]]--
  2222. hit:FindFirstChild("Humanoid"):TakeDamage(1000000)
  2223. hit:FindFirstChild("Humanoid").PlatformStand = true
  2224. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2225. --Debounces.Slashed = false
  2226. --end
  2227. end
  2228. end
  2229. elseif ht and hit:IsA("Hat") then
  2230. if hit.Parent.Name ~= p.Name then
  2231. if hit.Parent:FindFirstChild("Humanoid") then
  2232. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2233. Debounces.Slashed = true]]--
  2234. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(100000)
  2235. hit:FindFirstChild("Humanoid").PlatformStand = true
  2236. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2237. --Debounces.Slashed = false
  2238. end
  2239. end
  2240. end
  2241. end)
  2242. coroutine.wrap(function()
  2243. for i = 1, 60, 2 do
  2244. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2245. rng.Size = rngm.Scale
  2246. rng.CFrame = HandCF
  2247. rng.Transparency = i/60
  2248. wait()
  2249. end
  2250. wait()
  2251. rng:Destroy()
  2252. end)()
  2253. for i = 1, 18 do
  2254. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  2255. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  2256. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2257. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2258. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2259. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2260. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2261. if Debounces.on == false then break end
  2262. wait()
  2263. end
  2264. larm.BrickColor = BrickColor.new("Really black")
  2265. rarm.BrickColor = BrickColor.new("Really black")
  2266. x:Destroy()
  2267. x1:Destroy()
  2268. if Debounces.CanAttack == false then
  2269. Debounces.CanAttack = true
  2270. Debounces.on = false
  2271. Debounces.NoIdl = false
  2272. end
  2273. end
  2274. end
  2275. end)
  2276. ----------------------------------------------------
  2277. mouse.KeyDown:connect(function(key)
  2278. if key == "y" then
  2279. if Debounces.CanAttack == true then
  2280. Debounces.CanAttack = false
  2281. Debounces.on = true
  2282. Debounces.NoIdl = true
  2283. for i = 1, 15 do
  2284. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2285. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2286. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2287. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2288. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2289. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2290. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2291. if Debounces.on == false then break end
  2292. wait()
  2293. end
  2294. x = Instance.new("Sound",char)
  2295. x.SoundId = "rbxassetid://228343271"
  2296. x.Pitch = 1
  2297. x.Volume = .8
  2298. wait(.1)
  2299. x:Play()
  2300. Debounces.on = false
  2301. Debounces.Here = false
  2302. shot = shot + 1
  2303. local rng = Instance.new("Part", char)
  2304. rng.Anchored = true
  2305. rng.BrickColor = BrickColor.new("Really black")
  2306. rng.CanCollide = false
  2307. rng.FormFactor = 3
  2308. rng.Name = "Ring"
  2309. rng.Size = Vector3.new(1, 1, 1)
  2310. rng.Transparency = 0.35
  2311. rng.TopSurface = 0
  2312. rng.BottomSurface = 0
  2313. rng2 = rng:clone()
  2314. rng3 = rng2:clone()
  2315. rng4 = rng2:clone()
  2316. local rngm = Instance.new("SpecialMesh", rng)
  2317. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2318. rngm.Scale = Vector3.new(10, 10, 1)
  2319. rngm2 = rngm:clone()
  2320. rngm2.Scale = Vector3.new(5, 5, 1)
  2321. rngm3=rngm2:clone()
  2322. rngm3.Parent = rng3
  2323. rngm3.Scale = Vector3.new(8, 8, 1)
  2324. rngm4 = rngm2:clone()
  2325. rngm4.Parent = rng4
  2326. rngm4.Scale = Vector3.new(6, 6, 1)
  2327. local bem = Instance.new("Part", char)
  2328. bem.Anchored = true
  2329. bem.BrickColor = BrickColor.new("Really red")
  2330. bem.CanCollide = false
  2331. bem.FormFactor = 3
  2332. bem.Name = "Beam" .. shot
  2333. bem.Size = Vector3.new(1, 1, 1)
  2334. bem.Transparency = 0.35
  2335. bem.TopSurface = 0
  2336. bem.BottomSurface = 0
  2337. local bemm = Instance.new("SpecialMesh", bem)
  2338. bemm.MeshType = 4
  2339. bemm.Scale = Vector3.new(1, 4, 4)
  2340. local out = Instance.new("Part", char)
  2341. out.Anchored = true
  2342. out.BrickColor = BrickColor.new("Really red")
  2343. out.CanCollide = false
  2344. out.FormFactor = 3
  2345. out.Name = "Out"
  2346. out.Size = Vector3.new(4, 4, 4)
  2347. out.Transparency = 0.35
  2348. out.TopSurface = 0
  2349. out.BottomSurface = 0
  2350. local outm = Instance.new("SpecialMesh", out)
  2351. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2352. outm.Scale = Vector3.new(4, 4, 4)
  2353. local bnd = Instance.new("Part", char)
  2354. bnd.Anchored = true
  2355. bnd.BrickColor = BrickColor.new("Really red")
  2356. bnd.CanCollide = false
  2357. bnd.FormFactor = 3
  2358. bnd.Name = "Bend"
  2359. bnd.Size = Vector3.new(1, 1, 1)
  2360. bnd.Transparency = 1
  2361. bnd.TopSurface = 0
  2362. bnd.BottomSurface = 0
  2363. local bndm = Instance.new("SpecialMesh", bnd)
  2364. bndm.MeshType = 3
  2365. bndm.Scale = Vector3.new(8, 8, 8)
  2366. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2367. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2368. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2369. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2370. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2371. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2372. Debounces.Shewt = true
  2373. coroutine.wrap(function()
  2374. for i = 1, 20, 0.2 do
  2375. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2376. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2377. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2378. rng.Transparency = i/20
  2379. rng3.Transparency = 1/16
  2380. rng4.Transparency = i/12
  2381. wait()
  2382. end
  2383. wait()
  2384. rng:Destroy()
  2385. end)()
  2386. if Debounces.Shewt == true then
  2387. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2388. hit = ht.Parent
  2389. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2390. if HasntTouched(hit.Name) == true and deb == false then
  2391. deb = true
  2392. coroutine.wrap(function()
  2393. hit:FindFirstChild("Humanoid").PlatformStand = true
  2394. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2395. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(10000020,10000030))
  2396. end)()
  2397. table.insert(Touche, hit.Name)
  2398. deb = false
  2399. end
  2400. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2401. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2402. deb = true
  2403. coroutine.wrap(function()
  2404. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2405. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2406. wait(1)
  2407. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2408. end)()
  2409. table.insert(Touche, hit.Parent.Name)
  2410. deb = false
  2411. for i, v in pairs(Touche) do
  2412. print(v)
  2413. end
  2414. end
  2415. end
  2416. end)
  2417. end
  2418. for i = 0, 260, 8 do
  2419. bem.Size = Vector3.new(i, 2, 2)
  2420. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2421. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2422. bnd.Size = Vector3.new(1,1,1)
  2423. bndm.Scale = Vector3.new(8,8,8)
  2424. if i % 10 == 0 then
  2425. local newRng = rng2:Clone()
  2426. newRng.Parent = char
  2427. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2428. local newRngm = rngm2:clone()
  2429. newRngm.Parent=newRng
  2430. coroutine.wrap(function()
  2431. for i = 1, 10, 0.2 do
  2432. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2433. newRng.Transparency = i/10
  2434. wait()
  2435. end
  2436. wait()
  2437. newRng:Destroy()
  2438. end)()
  2439. end
  2440. wait()
  2441. end
  2442. wait()
  2443. Debounces.Shewt = false
  2444. bem:Destroy()
  2445. out:Destroy()
  2446. bnd:Destroy()
  2447. Debounces.Ready = false
  2448. for i, v in pairs(Touche) do
  2449. table.remove(Touche, i)
  2450. end
  2451. wait()
  2452. table.insert(Touche, char.Name)
  2453. Debounces.NoIdl = false
  2454. if Debounces.CanAttack == false then
  2455. Debounces.CanAttack = true
  2456. end
  2457. end
  2458. end
  2459. end)
  2460. ----------------------------------------------------
  2461. sidz = {"231917888", "231917845", "231917806"}
  2462. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2463. mouse.KeyDown:connect(function(key)
  2464. if key == "f" then
  2465. if Debounces.CanAttack == true then
  2466. Debounces.CanAttack = false
  2467. Debounces.on = true
  2468. Debounces.NoIdl = true
  2469. for i = 1, 10 do
  2470. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.4)
  2471. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.4)
  2472. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2473. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2474. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2475. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2476. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2477. if Debounces.on == false then break end
  2478. wait()
  2479. end
  2480. z = Instance.new("Sound",char)
  2481. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2482. z.Pitch = ptz[math.random(1,#ptz)]
  2483. z.Volume = 1
  2484. z1 = Instance.new("Sound",char)
  2485. z1.SoundId = z.SoundId
  2486. z1.Pitch = z.Pitch
  2487. z1.Volume = 1
  2488. wait(1)
  2489. z:Play()
  2490. z1:Play()
  2491. Stomp()
  2492. for i = 1, 20 do
  2493. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.6)
  2494. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.6)
  2495. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2496. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2497. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2498. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2499. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2500. if Debounces.on == false then break end
  2501. wait()
  2502. end
  2503. if Debounces.CanAttack == false then
  2504. Debounces.CanAttack = true
  2505. Debounces.on = false
  2506. Debounces.NoIdl = false
  2507. larm.BrickColor = BrickColor.new("Really black")
  2508. rarm.BrickColor = BrickColor.new("Really black")
  2509. end
  2510. end
  2511. end
  2512. end)
  2513. ----------------------------------------------------
  2514. mouse.KeyDown:connect(function(key)
  2515. if key == "g" then
  2516. if Debounces.CanAttack == true then
  2517. Debounces.CanAttack = false
  2518. Debounces.on = true
  2519. Debounces.NoIdl = true
  2520. chrg = lleg.Touched:connect(function(ht)
  2521. hit = ht.Parent
  2522. if ht and hit:IsA("Model") then
  2523. if hit:FindFirstChild("Humanoid") then
  2524. if hit.Name ~= p.Name then
  2525. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2526. Debounces.Slashed = true]]--
  2527. hit:FindFirstChild("Humanoid"):TakeDamage(29999999)
  2528. hit:FindFirstChild("Humanoid").PlatformStand = true
  2529. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2530. --Debounces.Slashed = false
  2531. --end
  2532. end
  2533. end
  2534. elseif ht and hit:IsA("Hat") then
  2535. if hit.Parent.Name ~= p.Name then
  2536. if hit.Parent:FindFirstChild("Humanoid") then
  2537. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2538. Debounces.Slashed = true]]--
  2539. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2999999999)
  2540. hit:FindFirstChild("Humanoid").PlatformStand = true
  2541. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2542. --Debounces.Slashed = false
  2543. end
  2544. end
  2545. end
  2546. end)
  2547. for i = 1, 14 do
  2548. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2549. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2550. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2551. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2552. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2553. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2554. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2555. if Debounces.on == false then break end
  2556. wait()
  2557. end
  2558. charge()
  2559. z = Instance.new("Sound",char)
  2560. z.SoundId = "rbxassetid://100632875"
  2561. z.Volume = 1
  2562. z.Pitch = .8
  2563. z1 = Instance.new("Sound",char)
  2564. z1.SoundId = "rbxassetid://100632875"
  2565. z1.Volume = 1
  2566. z1.Pitch = .9
  2567. z:Play()
  2568. z1:Play()
  2569. wait(1)
  2570. z:Destroy()
  2571. z1:Destroy()
  2572. chrg:disconnect()
  2573. if Debounces.CanAttack == false then
  2574. Debounces.CanAttack = true
  2575. Debounces.on = false
  2576. Debounces.NoIdl = false
  2577. larm.BrickColor = BrickColor.new("Really black")
  2578. rarm.BrickColor = BrickColor.new("Really black")
  2579. end
  2580. end
  2581. end
  2582. end)
  2583. ----------------------------------------------------
  2584. pt = {0.7, 0.8, 0.9}
  2585. mouse.KeyDown:connect(function(key)
  2586. if key == "h" then
  2587. if Debounces.CanJoke == true then
  2588. Debounces.CanJoke = false
  2589. u = Instance.new("Sound")
  2590. u.SoundId = "http://www.roblox.com/asset/?id=333446256"
  2591. u.Parent = char
  2592. u.Looped = false
  2593. u.Pitch = pt[math.random(1,#pt)]
  2594. u.Volume = 1
  2595. u2 = Instance.new("Sound")
  2596. u2.SoundId = "http://www.roblox.com/asset/?id=333446256"
  2597. u2.Parent = char
  2598. u2.Looped = false
  2599. u2.Pitch = u.Pitch
  2600. u2.Volume = 1
  2601. wait(.01)
  2602. u:Play()
  2603. u2:Play()
  2604. wait(6)
  2605. u:Destroy()
  2606. u2:Destroy()
  2607. if Debounces.CanJoke == false then
  2608. Debounces.CanJoke = true
  2609. end
  2610. end
  2611. end
  2612. end)
  2613. ----------------------------------------------------
  2614. --Insert awesome nuke cmd here--
  2615.  
  2616. ----------------------------------------------------
  2617. mouse.KeyDown:connect(function(key)
  2618. if key == "l" then
  2619. if Debounces.CanJoke == true then
  2620. Debounces.CanJoke = false
  2621. z = Instance.new("Sound",char)
  2622. z.SoundId = "rbxassetid://233774928"
  2623. z.Pitch = .76
  2624. z.Volume = 1
  2625. wait()
  2626. z:Play()
  2627. wait(6)
  2628. z:Destroy()
  2629. if Debounces.CanJoke == false then
  2630. Debounces.CanJoke = true
  2631. end
  2632. end
  2633. end
  2634. end)
  2635. ----------------------------------------------------
  2636. mouse.KeyDown:connect(function(key)
  2637. if key == "j" then
  2638. if Debounces.CanJoke == true then
  2639. Debounces.CanJoke = false
  2640. z = Instance.new("Sound",char)
  2641. z.SoundId = "rbxassetid://135017456"
  2642. z.Pitch = .76
  2643. z.Volume = 1
  2644. wait()
  2645. z:Play()
  2646. wait(6)
  2647. z:Destroy()
  2648. if Debounces.CanJoke == false then
  2649. Debounces.CanJoke = true
  2650. end
  2651. end
  2652. end
  2653. end)
  2654. ----------------------------------------------------
  2655. mouse.KeyDown:connect(function(key)
  2656. if key == "k" then
  2657. if Debounces.CanJoke == true then
  2658. Debounces.CanJoke = false
  2659. z = Instance.new("Sound",char)
  2660. z.SoundId = "rbxassetid://135017578"
  2661. z.Pitch = .76
  2662. z.Volume = 1
  2663. wait()
  2664. z:Play()
  2665. wait(4)
  2666. z:Destroy()
  2667. if Debounces.CanJoke == false then
  2668. Debounces.CanJoke = true
  2669. end
  2670. end
  2671. end
  2672. end)
  2673. ----------------------------------------------------
  2674. mouse.KeyDown:connect(function(key)
  2675. if key == "x" then
  2676. if Debounces.CanAttack == true then
  2677. Debounces.CanAttack = false
  2678. Debounces.NoIdl = true
  2679. Debounces.on = true
  2680. Debounces.ks = true
  2681. for i = 1, 10 do
  2682. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2683. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2684. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2685. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2686. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2687. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2688. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2689. if Debounces.on == false then break end
  2690. wait()
  2691. end
  2692. z = Instance.new("Sound",hed)
  2693. z.SoundId = "rbxassetid://169445092"
  2694. z.Volume = 1
  2695. wait(0.1)
  2696. z:Play()
  2697. kik = rleg.Touched:connect(function(ht)
  2698. hit = ht.Parent
  2699. if ht and hit:IsA("Model") then
  2700. if hit:FindFirstChild("Humanoid") then
  2701. if hit.Name ~= p.Name then
  2702. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2703. Debounces.Slashed = true]]--
  2704. if Debounces.ks==true then
  2705. z = Instance.new("Sound",hed)
  2706. z.SoundId = "rbxassetid://169380525"
  2707. z.Volume = 1
  2708. z:Play()
  2709. Debounces.ks=false
  2710. end
  2711. hit:FindFirstChild("Humanoid"):TakeDamage(29999999)
  2712. hit:FindFirstChild("Humanoid").PlatformStand = true
  2713. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2714. --Debounces.Slashed = false
  2715. --end
  2716. end
  2717. end
  2718. elseif ht and hit:IsA("Hat") then
  2719. if hit.Parent.Name ~= p.Name then
  2720. if hit.Parent:FindFirstChild("Humanoid") then
  2721. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2722. Debounces.Slashed = true]]--
  2723. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2999999)
  2724. hit:FindFirstChild("Humanoid").PlatformStand = true
  2725. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2726. --Debounces.Slashed = false
  2727. --end
  2728. end
  2729. end
  2730. end
  2731. end)
  2732. for i = 1, 8 do
  2733. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2734. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2735. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2736. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2737. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2738. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2739. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2740. if Debounces.on == false then break end
  2741. wait()
  2742. end
  2743. kik:disconnect()
  2744. if Debounces.CanAttack == false then
  2745. Debounces.CanAttack = true
  2746. Debounces.on = false
  2747. Debounces.NoIdl = false
  2748. end
  2749. end
  2750. end
  2751. end)
  2752. ----------------------------------------------------
  2753. mouse.KeyDown:connect(function(key)
  2754. if key == "c" then
  2755. if Debounces.CanAttack == true then
  2756. Debounces.CanAttack = false
  2757. Debounces.NoIdl = true
  2758. Debounces.on = true
  2759. SIDZ = {"231917744", "231917742"}
  2760. PTZ = {0.7, 0.8, 0.9, 1}
  2761. for i = 1, 20 do
  2762. wait()
  2763. for i,v in pairs(char.Titanius:children()) do
  2764. if v:IsA("Part") or v:IsA("WedgePart") then
  2765. v.Transparency = v.Transparency + 0.05
  2766. end
  2767. end
  2768. end
  2769. function FindNearestTorso(Position,Distance,SinglePlayer)
  2770. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2771. local List = {}
  2772. for i,v in pairs(workspace:GetChildren())do
  2773. if v:IsA("Model")then
  2774. if v:findFirstChild("Torso")then
  2775. if v ~= char then
  2776. if(v.Torso.Position -Position).magnitude <= Distance then
  2777. table.insert(List,v)
  2778. end
  2779. end
  2780. end
  2781. end
  2782. end
  2783. return List
  2784. end
  2785. GroundPound()
  2786. for i = 1, 5 do
  2787. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2788. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2789. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2790. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2791. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2792. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2793. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2794. if Debounces.on == false then break end
  2795. wait()
  2796. end
  2797. GroundPound()
  2798. for i = 1, 5 do
  2799. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2800. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2801. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2802. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2803. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2804. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2805. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2806. if Debounces.on == false then break end
  2807. wait()
  2808. end
  2809. GroundPound()
  2810. for i = 1, 5 do
  2811. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2812. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2813. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2814. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2815. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2816. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2817. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2818. if Debounces.on == false then break end
  2819. wait()
  2820. end
  2821. GroundPound()
  2822. for i = 1, 5 do
  2823. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2824. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2825. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2826. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2827. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2828. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2829. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2830. if Debounces.on == false then break end
  2831. wait()
  2832. end
  2833. GroundPound()
  2834. for i = 1, 5 do
  2835. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2836. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2837. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2838. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2839. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2840. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2841. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2842. if Debounces.on == false then break end
  2843. wait()
  2844. end
  2845. GroundPound()
  2846. for i = 1, 5 do
  2847. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2848. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2849. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2850. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2851. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2852. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2853. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2854. if Debounces.on == false then break end
  2855. wait()
  2856. end
  2857. for i = 1, 18 do
  2858. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2859. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2860. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2861. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2862. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2863. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2864. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2865. if Debounces.on == false then break end
  2866. wait()
  2867. end
  2868. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2869. if v:FindFirstChild('Humanoid') then
  2870. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2871. v.Humanoid.PlatformStand = true
  2872. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2873. end
  2874. end
  2875. x = Instance.new("Sound",char)
  2876. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2877. x.Pitch = PTZ[math.random(1,#PTZ)]
  2878. x.Volume = 1
  2879. wait(0.1)
  2880. x:Play()
  2881. Crater(hed,20)
  2882. for i = 1, 14 do
  2883. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2884. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2885. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2886. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2887. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2888. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2889. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2890. if Debounces.on == false then break end
  2891. wait()
  2892. end
  2893. if Debounces.CanAttack == false then
  2894. Debounces.CanAttack = true
  2895. Debounces.on = false
  2896. Debounces.NoIdl = false
  2897. for i = 1, 20 do
  2898. wait()
  2899. for i,v in pairs(char.Titanius:children()) do
  2900. if v:IsA("Part") or v:IsA("WedgePart") then
  2901. v.Transparency = v.Transparency - 0.05
  2902. end
  2903. end
  2904. end
  2905. end
  2906. end
  2907. end
  2908. end)
  2909. ----------------------------------------------------176349813
  2910. mouse.KeyDown:connect(function(key)
  2911. if key == "b" then
  2912. hum.WalkSpeed = 100
  2913. if Debounces.CanAttack == true then
  2914. Debounces.CanAttack = false
  2915. Debounces.NoIdl = true
  2916. Debounces.on = true
  2917. for i = 1,20 do
  2918. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2919. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2920. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2921. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2922. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2923. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2924. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2925. if Debounces.on == false then break end
  2926. wait()
  2927. end
  2928. wait(1)
  2929. v = Instance.new("Sound")
  2930. v.SoundId = "rbxassetid://199978176"
  2931. v.Parent = char
  2932. v.Looped = false
  2933. v.Pitch = 1
  2934. v.Volume = 3
  2935. wait(.01)
  2936. v:Play()
  2937.  
  2938. if Daytime == true then
  2939. Daytime = false
  2940. l.TimeOfDay = 24
  2941. else
  2942. Daytime = true
  2943. l.TimeOfDay = 12
  2944. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2945. end
  2946.  
  2947. local Shockwave = function()
  2948. local rng1 = Instance.new("Part", char)
  2949. rng1.Anchored = true
  2950. rng1.BrickColor = BrickColor.new("Really black")
  2951. rng1.CanCollide = false
  2952. rng1.FormFactor = 3
  2953. rng1.Name = "Ring"
  2954. rng1.Size = Vector3.new(1, 1, 1)
  2955. rng1.Transparency = 0.35
  2956. rng1.TopSurface = 0
  2957. rng1.BottomSurface = 0
  2958. local rngm1 = Instance.new("SpecialMesh", rng)
  2959. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2960. rngm1.Scale = Vector3.new(10, 10, 1)
  2961. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2962. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2963. Wave.Name = "Shockwave"
  2964. Wave.BrickColor = BrickColor.new("Really black")
  2965. Wave.Size = Vector3.new(1, 1, 1)
  2966. Wave.Shape = "Ball"
  2967. Wave.CanCollide = false
  2968. Wave.Anchored = true
  2969. Wave.TopSurface = 0
  2970. Wave.BottomSurface = 0
  2971. Wave.Touched:connect(function(hit)
  2972. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2973. local Occlude = true
  2974. local NotOccludes = {
  2975. char.Name;
  2976. "Wings";
  2977. "Scythe";
  2978. "Thingy";
  2979. "Thingy2"; -- put all of the names in a table pls
  2980. }
  2981. for i,v in pairs(NotOccludes) do
  2982. if hit.Parent.Name == v then
  2983. Occlude = false
  2984. end
  2985. end
  2986. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  2987. if Occlude then
  2988. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2989. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2990. end
  2991. end
  2992. end)
  2993.  
  2994. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2995.  
  2996. coroutine.wrap(function()
  2997. for i = 1, 20, 0.2 do
  2998. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2999. rng1.Transparency = i/20
  3000. wait()
  3001. end
  3002. wait()
  3003. rng1:Destroy()
  3004. end)()
  3005.  
  3006. Delay(0, function()
  3007.  
  3008. if Daytime == false then
  3009. for i = 1, 50, 1 do
  3010. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  3011. Wave.CFrame = char.Torso.CFrame
  3012. local t = i / 50
  3013. Wave.Transparency = t
  3014. wait()
  3015. end
  3016. else
  3017. for i = 1, 50, 1 do
  3018. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  3019. Wave.CFrame = char.Torso.CFrame
  3020. local t = i / 50
  3021. Wave.Transparency = t
  3022. wait()
  3023. end
  3024. end
  3025. Wave:Destroy()
  3026. end)
  3027. Delay(0, function()
  3028. while wait() do
  3029. if Wave ~= nil then
  3030. Wave.CFrame = char.Torso.CFrame
  3031. else
  3032. break
  3033. end
  3034. end
  3035. end)
  3036. end
  3037. Shockwave()
  3038. for i = 1, 15 do
  3039. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  3040. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  3041. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  3042. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  3043. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  3044. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  3045. if Debounces.on == false then break end
  3046. wait()
  3047. end
  3048. for i = 1, 15 do
  3049. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  3050. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  3051. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  3052. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  3053. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  3054. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  3055. if Debounces.on == false then break end
  3056. wait()
  3057. end
  3058. for i = 1, 15 do
  3059. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  3060. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  3061. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  3062. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  3063. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  3064. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  3065. if Debounces.on == false then break end
  3066. wait()
  3067. end
  3068. for i = 1, 15 do
  3069. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  3070. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  3071. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  3072. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  3073. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  3074. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  3075. if Debounces.on == false then break end
  3076. wait()
  3077. end
  3078. for i = 1, 15 do
  3079. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  3080. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  3081. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  3082. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  3083. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  3084. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  3085. if Debounces.on == false then break end
  3086. wait()
  3087. end
  3088. for i = 1, 15 do
  3089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  3090. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  3091. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  3092. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  3093. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  3094. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  3095. if Debounces.on == false then break end
  3096. wait()
  3097. end
  3098. wait(1.4)
  3099. Debounces.NoIdl = false
  3100. hum.WalkSpeed = 100
  3101. Debounces.on = false
  3102. wait()
  3103. if Debounces.CanAttack == false then
  3104. Debounces.CanAttack = true
  3105. v:Destroy()
  3106. end
  3107. end
  3108. end
  3109. end)
  3110. ----------------------------------------------------
  3111. mouse.KeyDown:connect(function(key)
  3112. if key == "m" then
  3113. hum.WalkSpeed = 0
  3114. if Debounces.CanAttack == true then
  3115. Debounces.CanAttack = false
  3116. Debounces.on = true
  3117. Debounces.NoIdl = true
  3118. x = Instance.new("Sound",char)
  3119. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  3120. x.Looped = false
  3121. x.Pitch = 1.1
  3122. x.Volume = 1
  3123. x:Play()
  3124. x2 = Instance.new("Sound",char)
  3125. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  3126. x2.Looped = false
  3127. x2.Pitch = .7
  3128. x2.Volume = 1
  3129. wait(.1)
  3130. x:Play()
  3131. x2:Play()
  3132. for i = 1, 20 do
  3133. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  3134. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  3135. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  3136. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  3137. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  3138. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  3139. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  3140. if Debounces.on == false then break end
  3141. wait()
  3142. x:Destroy()
  3143. x2:Destroy()
  3144. end
  3145. wait(1)
  3146. local rng = Instance.new("Part", char)
  3147. rng.Anchored = true
  3148. rng.BrickColor = BrickColor.new("Really black")
  3149. rng.CanCollide = false
  3150. rng.FormFactor = 3
  3151. rng.Name = "Ring"
  3152. rng.Size = Vector3.new(1, 1, 1)
  3153. rng.Transparency = 0.35
  3154. rng.TopSurface = 0
  3155. rng.BottomSurface = 0
  3156. rng.Position = torso.Position - Vector3.new(0,2,0)
  3157. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3158. local rngm = Instance.new("SpecialMesh", rng)
  3159. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3160. rngm.Scale = Vector3.new(1, 1, 2)
  3161. x = Instance.new("Sound",char)
  3162. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3163. x.Looped = false
  3164. x.Pitch = .7
  3165. x.Volume = 1
  3166. x:Play()
  3167. coroutine.wrap(function()
  3168. for i = 1, 60, 2 do
  3169. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3170. rng.Transparency = i/60
  3171. wait()
  3172. end
  3173. wait()
  3174. rng:Destroy()
  3175. end)()
  3176. hum.WalkSpeed = 50
  3177. BV = Instance.new("BodyVelocity", torso)
  3178. BV.maxForce = Vector3.new(0,100000,0)
  3179. BV.P = 100000
  3180. BV.velocity = Vector3.new(0,800,0)
  3181. for i = 1, 20 do
  3182. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  3183. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  3184. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  3185. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  3186. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  3187. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  3188. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3189. if Debounces.on == false then break end
  3190. wait()
  3191. end
  3192. x:Destroy()
  3193. BV:Destroy()
  3194. for i = 1, 30 do
  3195. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3196. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  3197. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  3198. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  3199. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  3200. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  3201. if Debounces.on == false then break end
  3202. wait()
  3203. end
  3204. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  3205. for i = 1, 30 do
  3206. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3207. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3208. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  3209. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  3210. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3211. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  3212. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3213. if Debounces.on == false then break end
  3214. wait()
  3215. end
  3216. end
  3217. Debounces.on = false
  3218. Debounces.NoIdl = false
  3219. local ry,ht,ps=nil,nil,nil
  3220. while ht==nil do
  3221. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3222. wait()
  3223. end
  3224. z = Instance.new("Sound",char)
  3225. z.SoundId = "rbxassetid://142070127"
  3226. z.Volume = 1
  3227. wait(.1)
  3228. z:Play()
  3229. Landing()
  3230. hum.WalkSpeed = 100
  3231. if Debounces.CanAttack == false then
  3232. Debounces.CanAttack = true
  3233. end
  3234. end
  3235. end
  3236. end)
  3237. ----------------------------------------------------
  3238. Grab = false
  3239. mouse.KeyDown:connect(function(key)
  3240. if key == "z" then
  3241. Debounces.on = true
  3242. Debounces.NoIdl = true
  3243. if Grab == false then
  3244. gp = nil
  3245. con1=larm.Touched:connect(function(hit) -- this is grab
  3246. ht = hit.Parent
  3247. hum1=ht:FindFirstChild('Humanoid')
  3248. if hum1 ~= nil then
  3249. hum1.PlatformStand=true
  3250. gp = ht
  3251. Grab = true
  3252. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3253. asd.Parent = larm
  3254. asd.Name = "asd"
  3255. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3256. elseif hum1 == nil then
  3257. con1:disconnect()
  3258. wait() return
  3259. end
  3260. end)
  3261. for i = 1, 18 do
  3262. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  3263. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  3264. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3265. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3266. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3267. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  3268. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3269. if Debounces.on == false then break end
  3270. wait()
  3271. end
  3272. con1:disconnect()
  3273. Debounces.on = false
  3274. Debounces.NoIdl = false
  3275. elseif Grab == true then
  3276. Grab = false
  3277. for i = 1, 20 do
  3278. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  3279. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  3280. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3281. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3282. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3283. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3284. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3285. if Debounces.on == false then end
  3286. wait()
  3287. end
  3288. if gp ~= nil then
  3289. for i,v in pairs(larm:GetChildren()) do
  3290. if v.Name == "asd" and v:IsA("Weld") then
  3291. v:Remove()
  3292. end
  3293. end
  3294. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3295. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3296. bv.P = 125000000000000
  3297. bv.velocity = char.Head.CFrame.lookVector * 1000
  3298. for i = 1, 12 do
  3299. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  3300. if Debounces.on == false then end
  3301. wait()
  3302. end
  3303. ht=nil
  3304. Spawn(function()
  3305. wait(0.5)
  3306. bv:Destroy()
  3307. end)
  3308. Debounces.on = false
  3309. Debounces.NoIdl = false
  3310. elseif ht == nil then wait()
  3311. Grab = false
  3312. Debounces.on = false
  3313. Debounces.NoIdl = false
  3314. end
  3315. end
  3316. end
  3317. end)
  3318. ----------------------------------------------------
  3319. mouse.KeyDown:connect(function(key)
  3320. if string.byte(key) == 52 then
  3321. char.Humanoid.WalkSpeed = 100
  3322. end
  3323. end)
  3324. mouse.KeyUp:connect(function(key)
  3325. if string.byte(key) == 52 then
  3326. char.Humanoid.WalkSpeed = 100
  3327. end
  3328. end)
  3329. ----------------------------------------------------
  3330.  
  3331. --------------------------------------------------
  3332. local animpose = "Idle"
  3333. local lastanimpose = "Idle"
  3334. local sine = 0
  3335. local change = 1
  3336. local val = 0
  3337. local ffing = false
  3338. ----------------------------------------------------
  3339. --[[x = Instance.new("Sound", char)
  3340. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3341. x.Looped = true
  3342. x.Volume = 1
  3343. x.Pitch = 1
  3344. local footsteps = false]]--
  3345. -------------------------------
  3346. game:GetService("RunService").RenderStepped:connect(function()
  3347. --[[if char.Humanoid.Jump == true then
  3348. jump = true
  3349. else
  3350. jump = false
  3351. end]]
  3352. char.Humanoid.FreeFalling:connect(function(f)
  3353. if f then
  3354. ffing = true
  3355. else
  3356. ffing = false
  3357. end
  3358. end)
  3359. sine = sine + change
  3360. if jumpn == true then
  3361. animpose = "Jumping"
  3362. elseif ffing == true then
  3363. animpose = "Freefalling"
  3364. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3365. animpose = "Idle"
  3366. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3367. animpose = "Walking"
  3368. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3369. animpose = "Running"
  3370. end
  3371. if animpose ~= lastanimpose then
  3372. sine = 0
  3373. if Debounces.NoIdl == false then
  3374. if animpose == "Idle" then
  3375. for i = 1, 2 do
  3376. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  3377. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  3378. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3379. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3380. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3381. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3382. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3383. end
  3384. elseif animpose == "Walking" then
  3385. for i = 1, 2 do
  3386. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  3387. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3388. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  3389. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3390. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3391. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3392. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3393. end
  3394. elseif animpose == "Running" then
  3395. for i = 1, 2 do
  3396. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3397. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3398. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3399. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3400. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3401. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3402. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3403. end
  3404. wait()
  3405. end
  3406. else
  3407. end
  3408. end
  3409. lastanimpose = animpose
  3410. if Debounces.NoIdl == false then
  3411. if animpose == "Idle" then
  3412. if stanceToggle == "Normal" then
  3413. change = 0.5
  3414. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  3415. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  3416. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  3417. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3418. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3419. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3420. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3421. elseif stanceToggle == "Sitting" then
  3422. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3423. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3424. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3425. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3426. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3427. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3428. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3429. end
  3430. elseif animpose == "Walking" then
  3431. if stanceToggle == "Normal" then
  3432. change = 1
  3433. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  3434. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  3435. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  3436. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  3437. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  3438. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  3439. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3440. end
  3441. elseif animpose == "Running" then
  3442. change = 1
  3443. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3444. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3445. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3446. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3447. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3448. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3449. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3450. end
  3451. end
  3452. --[[if animpose == "Walking" then
  3453. if footsteps == false then
  3454. x:Play()
  3455. footsteps = true
  3456. end
  3457. x.Pitch = 1.1
  3458. elseif animpose == "Idle" then
  3459. x:Stop()
  3460. footsteps = false
  3461. elseif animpose == "Running" then
  3462. x.Pitch = 1.2
  3463. if footsteps == false then
  3464. x:Play()
  3465. footsteps = true
  3466. end
  3467. end]]--
  3468. end)
  3469. -- ~ CL 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement