Advertisement
PixelDerpIsUber2

Untitled

Jan 23rd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 170.21 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. plr = game.Players.LocalPlayer
  153. char = plr.Character
  154. hum = char.Humanoid
  155. t = char.Torso
  156. h = char.Head
  157. ra = char["Right Arm"]
  158. la = char["Left Arm"]
  159. rl = char["Right Leg"]
  160. ll = char["Left Leg"]
  161. tors = char.Torso
  162. lleg = char["Left Leg"]
  163. root = char.HumanoidRootPart
  164. hed = char.Head
  165. rleg = char["Right Leg"]
  166. rarm = char["Right Arm"]
  167. larm = char["Left Arm"]
  168. vt = Vector3.new
  169. bc = BrickColor.new
  170. br = BrickColor.random
  171. it = Instance.new
  172. cf = CFrame.new
  173.  
  174. function CreatePart(parent,transparency,reflectance,material,brickcolor)
  175. local p = Instance.new("Part")
  176. p.Parent = parent
  177. p.Size = Vector3.new(1,1,1)
  178. p.Transparency = transparency
  179. p.Reflectance = reflectance
  180. p.CanCollide = false
  181. p.BrickColor = brickcolor
  182. p.Material = material
  183. return p
  184. end
  185.  
  186. function CreateMesh(parent,meshtype,x1,y1,z1)
  187. local mesh = Instance.new("SpecialMesh",parent)
  188. mesh.MeshType = meshtype
  189. mesh.Scale = Vector3.new(x1,y1,z1)
  190. return mesh
  191. end
  192.  
  193. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  194. local mesh = Instance.new("SpecialMesh",parent)
  195. mesh.MeshType = "SpecialMesh"
  196. mesh.MeshId = meshid
  197. mesh.Scale = Vector3.new(x1,y1,z1)
  198. return mesh
  199. end
  200.  
  201. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  202. local weld = Instance.new("Weld")
  203. weld.Parent = parent
  204. weld.Part0 = part0
  205. weld.Part1 = part1
  206. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  207. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  208. return weld
  209. end
  210. ---------------- left gaunlet
  211. local handle = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  212. CreateMesh(handle,"Brick",1.1,0.4,1.1)
  213. CreateWeld(handle,larm,handle,0,0.45,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  214. local handleout = CreatePart(char,0,0,"Neon",BrickColor.new("Royal purple"))
  215. CreateMesh(handleout,"Brick",1.075,0.45,1.075)
  216. CreateWeld(handleout,larm,handleout,0,0.45,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  217. local handleout2 = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  218. CreateMesh(handleout2,"Brick",1.05,0.485,1.05)
  219. CreateWeld(handleout2,larm,handleout2,0,0.45,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  220.  
  221. local box = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  222. CreateMesh(box,"Brick",1.2,0.5,0.5)
  223. CreateWeld(box,handle,box,0.05,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  224. local boxout = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue"))
  225. CreateMesh(boxout,"Brick",1.185,0.525,0.525)
  226. CreateWeld(boxout,handle,boxout,0.05,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  227. local boxout2 = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  228. CreateMesh(boxout2,"Brick",1.15,0.585,0.585)
  229. CreateWeld(boxout2,handle,boxout2,0.05,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  230.  
  231. local boxoutrand = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue"))
  232. CreateMesh(boxoutrand,"Brick",1,0.35,0.35)
  233. CreateWeld(boxoutrand,handle,boxoutrand,-0.075,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  234.  
  235. local glowstrip = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue"))
  236. CreateMesh(glowstrip,"Brick",0.65,0.05,1.15)
  237. CreateWeld(glowstrip,larm,glowstrip,0.15,0.365,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  238. local glowstrip2 = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue"))
  239. CreateMesh(glowstrip2,"Brick",0.65,0.05,1.15)
  240. CreateWeld(glowstrip2,larm,glowstrip2,0.15,0.465,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  241. local glowstrip3 = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue"))
  242. CreateMesh(glowstrip3,"Brick",0.65,0.05,1.15)
  243. CreateWeld(glowstrip3,larm,glowstrip3,0.15,0.565,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  244.  
  245. local diamond = CreatePart(char,0,0,"Neon",BrickColor.new("Royal purple"))
  246. CreateMesh(diamond,"Brick",0.25,0.25,1.15)
  247. CreateWeld(diamond,handle,diamond,-0.35,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  248.  
  249. --- gun here
  250.  
  251. local handle = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  252. CreateMesh(handle,"Brick",0.75,0.4,0.4)
  253. CreateWeld(handle,larm,handle,-0.1,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  254.  
  255. local barrel = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  256. CreateMesh(barrel,"Brick",0.45,1,0.45)
  257. CreateWeld(barrel,handle,barrel,-0.25,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  258. local barrelglow = CreatePart(char,0,0,"Neon",BrickColor.new("Royal purple"))
  259. CreateMesh(barrelglow,"Brick",0.375,0.965,0.375)
  260. CreateWeld(barrelglow,handle,barrelglow,-0.25,0.55,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  261. local barrelup = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  262. CreateMesh(barrelup,"Brick",0.385,0.535,0.4625)
  263. CreateWeld(barrelup,barrel,barrelup,-0.065,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  264. local barrelupglow = CreatePart(char,0,0,"Neon",BrickColor.new("Bright blue"))
  265. CreateMesh(barrelupglow,"Brick",0.325,0.585,0.455)
  266. CreateWeld(barrelupglow,barrel,barrelupglow,-0.065,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  267. local barrel2 = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Black"))
  268. CreateMesh(barrel2,"Brick",0.325,1.5,0.325)
  269. CreateWeld(barrel2,handle,barrel2,-0.25,1.25,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  270. local barrelhole = CreatePart(char,0,0,"SmoothPlastic",BrickColor.new("Really black"))
  271. CreateMesh(barrelhole,"Brick",0.25,0.25,0.25)
  272. CreateWeld(barrelhole,barrel2,barrelhole,0,0.65,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  273. ---
  274.  
  275. local gunmode = false
  276.  
  277. Player=game:GetService("Players").LocalPlayer
  278. Character=Player.Character
  279. PlayerGui=Player.PlayerGui
  280. Backpack=Player.Backpack
  281. Torso=Character.Torso
  282. Head=Character.Head
  283. Humanoid=Character.Humanoid
  284. m=Instance.new('Model',Character)
  285. LeftArm=Character["Left Arm"]
  286. LeftLeg=Character["Left Leg"]
  287. RightArm=Character["Right Arm"]
  288. RightLeg=Character["Right Leg"]
  289. LS=Torso["Left Shoulder"]
  290. LH=Torso["Left Hip"]
  291. RS=Torso["Right Shoulder"]
  292. RH=Torso["Right Hip"]
  293. Face = Head.face
  294. Neck=Torso.Neck
  295. it=Instance.new
  296. attacktype=1
  297. vt=Vector3.new
  298. cf=CFrame.new
  299. euler=CFrame.fromEulerAnglesXYZ
  300. angles=CFrame.Angles
  301. cloaked=false
  302. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  303. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  304. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  305. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  306. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  307. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  308. RootPart=Character.HumanoidRootPart
  309. RootJoint=RootPart.RootJoint
  310. RootCF=euler(-1.57,0,3.14)
  311. attack = false
  312. attackdebounce = false
  313. deb=false
  314. equipped=true
  315. hand=false
  316. MMouse=nil
  317. combo=0
  318. mana=0
  319. trispeed=.2
  320. attackmode='none'
  321. local idle=0
  322. local Anim="Idle"
  323. local Effects={}
  324. local gun=false
  325. local shoot=false
  326. local sine = 0
  327. local change = 1
  328. player=nil
  329.  
  330. mouse=Player:GetMouse()
  331. --save shoulders
  332. RSH, LSH=nil, nil
  333. --welds
  334. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  335. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  336. LH=Torso["Left Hip"]
  337. RH=Torso["Right Hip"]
  338. TorsoColor=Torso.BrickColor
  339. function NoOutline(Part)
  340. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  341. end
  342. player=Player
  343. ch=Character
  344. RSH=ch.Torso["Right Shoulder"]
  345. LSH=ch.Torso["Left Shoulder"]
  346. --
  347. RSH.Parent=nil
  348. LSH.Parent=nil
  349. --
  350. RW.Name="Right Shoulder"
  351. RW.Part0=ch.Torso
  352. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  353. RW.C1=cf(0, 0.5, 0)
  354. RW.Part1=ch["Right Arm"]
  355. RW.Parent=ch.Torso
  356. --
  357. LW.Name="Left Shoulder"
  358. LW.Part0=ch.Torso
  359. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  360. LW.C1=cf(0, 0.5, 0)
  361. LW.Part1=ch["Left Arm"]
  362. LW.Parent=ch.Torso
  363.  
  364. local Stats=Instance.new("BoolValue")
  365. Stats.Name="Stats"
  366. Stats.Parent=Character
  367. local Atk=Instance.new("NumberValue")
  368. Atk.Name="Damage"
  369. Atk.Parent=Stats
  370. Atk.Value=1
  371. local Def=Instance.new("NumberValue")
  372. Def.Name="Defense"
  373. Def.Parent=Stats
  374. Def.Value=1
  375. local Speed=Instance.new("NumberValue")
  376. Speed.Name="Speed"
  377. Speed.Parent=Stats
  378. Speed.Value=1
  379. local Mvmt=Instance.new("NumberValue")
  380. Mvmt.Name="Movement"
  381. Mvmt.Parent=Stats
  382. Mvmt.Value=1
  383.  
  384. local donum=0
  385.  
  386.  
  387. function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  388. local fp=it("Part")
  389. fp.formFactor=formfactor
  390. fp.Parent=parent
  391. fp.Reflectance=reflectance
  392. fp.Transparency=transparency
  393. fp.CanCollide=false
  394. fp.Locked=true
  395. fp.BrickColor=brickcolor
  396. fp.Name=name
  397. fp.Size=size
  398. fp.Position=Torso.Position
  399. NoOutline(fp)
  400. fp.Material="SmoothPlastic"
  401. fp:BreakJoints()
  402. return fp
  403. end
  404.  
  405. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  406. local mesh=it(Mesh)
  407. mesh.Parent=part
  408. if Mesh=="SpecialMesh" then
  409. mesh.MeshType=meshtype
  410. if meshid~="nil" then
  411. mesh.MeshId="http://www.roblox.com/asset/?id="..meshid
  412. end
  413. end
  414. mesh.Offset=offset
  415. mesh.Scale=scale
  416. return mesh
  417. end
  418.  
  419. function weld(parent,part0,part1,c0)
  420. local weld=it("Weld")
  421. weld.Parent=parent
  422. weld.Part0=part0
  423. weld.Part1=part1
  424. weld.C0=c0
  425. return weld
  426. end
  427.  
  428. local Color1=Torso.BrickColor
  429.  
  430. local bodvel=Instance.new("BodyVelocity")
  431. local bg=Instance.new("BodyGyro")
  432.  
  433. function swait(num)
  434. if num==0 or num==nil then
  435. game:service'RunService'.Stepped:wait(0)
  436. else
  437. for i=0,num do
  438. game:service'RunService'.Stepped:wait(0)
  439. end
  440. end
  441. end
  442.  
  443.  
  444. so = function(id,par,vol,pit)
  445. coroutine.resume(coroutine.create(function()
  446. local sou = Instance.new("Sound",par or workspace)
  447. sou.Volume=vol
  448. sou.Pitch=pit or 1
  449. sou.SoundId=id
  450. swait()
  451. sou:play()
  452. game:GetService("Debris"):AddItem(sou,6)
  453. end))
  454. end
  455.  
  456. function clerp(a,b,t)
  457. local qa = {QuaternionFromCFrame(a)}
  458. local qb = {QuaternionFromCFrame(b)}
  459. local ax, ay, az = a.x, a.y, a.z
  460. local bx, by, bz = b.x, b.y, b.z
  461. local _t = 1-t
  462. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  463. end
  464.  
  465. function QuaternionFromCFrame(cf)
  466. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  467. local trace = m00 + m11 + m22
  468. if trace > 0 then
  469. local s = math.sqrt(1 + trace)
  470. local recip = 0.5/s
  471. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  472. else
  473. local i = 0
  474. if m11 > m00 then
  475. i = 1
  476. end
  477. if m22 > (i == 0 and m00 or m11) then
  478. i = 2
  479. end
  480. if i == 0 then
  481. local s = math.sqrt(m00-m11-m22+1)
  482. local recip = 0.5/s
  483. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  484. elseif i == 1 then
  485. local s = math.sqrt(m11-m22-m00+1)
  486. local recip = 0.5/s
  487. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  488. elseif i == 2 then
  489. local s = math.sqrt(m22-m00-m11+1)
  490. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  491. end
  492. end
  493. end
  494.  
  495. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  496. local xs, ys, zs = x + x, y + y, z + z
  497. local wx, wy, wz = w*xs, w*ys, w*zs
  498. local xx = x*xs
  499. local xy = x*ys
  500. local xz = x*zs
  501. local yy = y*ys
  502. local yz = y*zs
  503. local zz = z*zs
  504. return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy))
  505. end
  506.  
  507. function QuaternionSlerp(a, b, t)
  508. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  509. local startInterp, finishInterp;
  510. if cosTheta >= 0.0001 then
  511. if (1 - cosTheta) > 0.0001 then
  512. local theta = math.acos(cosTheta)
  513. local invSinTheta = 1/math.sin(theta)
  514. startInterp = math.sin((1-t)*theta)*invSinTheta
  515. finishInterp = math.sin(t*theta)*invSinTheta
  516. else
  517. startInterp = 1-t
  518. finishInterp = t
  519. end
  520. else
  521. if (1+cosTheta) > 0.0001 then
  522. local theta = math.acos(-cosTheta)
  523. local invSinTheta = 1/math.sin(theta)
  524. startInterp = math.sin((t-1)*theta)*invSinTheta
  525. finishInterp = math.sin(t*theta)*invSinTheta
  526. else
  527. startInterp = t-1
  528. finishInterp = t
  529. end
  530. end
  531. return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp
  532. end
  533.  
  534. local function CFrameFromTopBack(at, top, back)
  535. local right = top:Cross(back)
  536. return CFrame.new(at.x, at.y, at.z,
  537. right.x, top.x, back.x,
  538. right.y, top.y, back.y,
  539. right.z, top.z, back.z)
  540. end
  541.  
  542. function Triangle(a, b, c)
  543. local edg1 = (c-a):Dot((b-a).unit)
  544. local edg2 = (a-b):Dot((c-b).unit)
  545. local edg3 = (b-c):Dot((a-c).unit)
  546. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  547. a, b, c = a, b, c
  548. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  549. a, b, c = b, c, a
  550. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  551. a, b, c = c, a, b
  552. else
  553. assert(false, "unreachable")
  554. end
  555.  
  556. local len1 = (c-a):Dot((b-a).unit)
  557. local len2 = (b-a).magnitude - len1
  558. local width = (a + (b-a).unit*len1 - c).magnitude
  559.  
  560. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  561.  
  562. local list = {}
  563.  
  564. if len1 > 0.01 then
  565. local w1 = Instance.new('WedgePart', m)
  566. game:GetService("Debris"):AddItem(w1,5)
  567. w1.Material = "SmoothPlastic"
  568. w1.FormFactor = 'Custom'
  569. w1.BrickColor = BrickColor.new("Really red")
  570. w1.Transparency = 0
  571. w1.Reflectance = 0
  572. w1.Material = "SmoothPlastic"
  573. w1.CanCollide = false
  574. local l1 = Instance.new("PointLight",w1)
  575. l1.Color = Color3.new(170,0,0)
  576. NoOutline(w1)
  577. local sz = Vector3.new(0.2, width, len1)
  578. w1.Size = sz
  579. local sp = Instance.new("SpecialMesh",w1)
  580. sp.MeshType = "Wedge"
  581. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  582. w1:BreakJoints()
  583. w1.Anchored = true
  584. w1.Parent = workspace
  585. w1.Transparency = 0.7
  586. table.insert(Effects,{w1,"Disappear",.01})
  587. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  588. table.insert(list,w1)
  589. end
  590.  
  591. if len2 > 0.01 then
  592. local w2 = Instance.new('WedgePart', m)
  593. game:GetService("Debris"):AddItem(w2,5)
  594. w2.Material = "SmoothPlastic"
  595. w2.FormFactor = 'Custom'
  596. w2.BrickColor = BrickColor.new("Really red")
  597. w2.Transparency = 0
  598. w2.Reflectance = 0
  599. w2.Material = "SmoothPlastic"
  600. w2.CanCollide = false
  601. local l2 = Instance.new("PointLight",w2)
  602. l2.Color = Color3.new(170,0,0)
  603. NoOutline(w2)
  604. local sz = Vector3.new(0.2, width, len2)
  605. w2.Size = sz
  606. local sp = Instance.new("SpecialMesh",w2)
  607. sp.MeshType = "Wedge"
  608. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  609. w2:BreakJoints()
  610. w2.Anchored = true
  611. w2.Parent = workspace
  612. w2.Transparency = 0.7
  613. table.insert(Effects,{w2,"Disappear",.01})
  614. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  615. table.insert(list,w2)
  616. end
  617. return unpack(list)
  618. end
  619.  
  620.  
  621. Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  622. if hit.Parent==nil then
  623. return
  624. end
  625. h=hit.Parent:FindFirstChild("Humanoid")
  626. for _,v in pairs(hit.Parent:children()) do
  627. if v:IsA("Humanoid") then
  628. h=v
  629. end
  630. end
  631. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  632. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  633. end
  634. if hit.Parent.className=="Hat" then
  635. hit=hit.Parent.Parent:findFirstChild("Head")
  636. end
  637. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  638. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  639. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  640. return
  641. end]]
  642. -- hs(hit,1.2)
  643. c=Instance.new("ObjectValue")
  644. c.Name="creator"
  645. c.Value=game:service("Players").LocalPlayer
  646. c.Parent=h
  647. game:GetService("Debris"):AddItem(c,.5)
  648. Damage=math.random(minim,maxim)
  649. -- h:TakeDamage(Damage)
  650. blocked=false
  651. block=hit.Parent:findFirstChild("Block")
  652. if block~=nil then
  653. print(block.className)
  654. if block.className=="NumberValue" then
  655. if block.Value>0 then
  656. blocked=true
  657. if decreaseblock==nil then
  658. block.Value=block.Value-1
  659. end
  660. end
  661. end
  662. if block.className=="IntValue" then
  663. if block.Value>0 then
  664. blocked=true
  665. if decreaseblock~=nil then
  666. block.Value=block.Value-1
  667. end
  668. end
  669. end
  670. end
  671. if blocked==false then
  672. -- h:TakeDamage(Damage)
  673. h.Health=h.Health-Damage
  674. showDamage(hit.Parent,Damage,.5,BrickColor.new("Really red"))
  675. else
  676. h.Health=h.Health-(Damage/2)
  677. showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
  678. end
  679. if Type=="Knockdown" then
  680. hum=hit.Parent.Humanoid
  681. hum.PlatformStand=true
  682. coroutine.resume(coroutine.create(function(HHumanoid)
  683. swait(1)
  684. HHumanoid.PlatformStand=false
  685. end),hum)
  686. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  687. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  688. local bodvol=Instance.new("BodyVelocity")
  689. bodvol.velocity=angle*knockback
  690. bodvol.P=5000
  691. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  692. bodvol.Parent=hit
  693. rl=Instance.new("BodyAngularVelocity")
  694. rl.P=3000
  695. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  696. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  697. rl.Parent=hit
  698. game:GetService("Debris"):AddItem(bodvol,.5)
  699. game:GetService("Debris"):AddItem(rl,.5)
  700. elseif Type=="Normal" then
  701. vp=Instance.new("BodyVelocity")
  702. vp.P=500
  703. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  704. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  705. if KnockbackType==1 then
  706. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  707. elseif KnockbackType==2 then
  708. vp.velocity=Property.CFrame.lookVector*knockback
  709. end
  710. if knockback>0 then
  711. vp.Parent=hit.Parent.Torso
  712. end
  713. game:GetService("Debris"):AddItem(vp,.5)
  714. elseif Type=="Up" then
  715. local bodyVelocity=Instance.new("BodyVelocity")
  716. bodyVelocity.velocity=vt(0,60,0)
  717. bodyVelocity.P=5000
  718. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  719. bodyVelocity.Parent=hit
  720. game:GetService("Debris"):AddItem(bodyVelocity,1)
  721. rl=Instance.new("BodyAngularVelocity")
  722. rl.P=3000
  723. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  724. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  725. rl.Parent=hit
  726. game:GetService("Debris"):AddItem(rl,.5)
  727. elseif Type=="Snare" then
  728. bp=Instance.new("BodyPosition")
  729. bp.P=2000
  730. bp.D=100
  731. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  732. bp.position=hit.Parent.Torso.Position
  733. bp.Parent=hit.Parent.Torso
  734. game:GetService("Debris"):AddItem(bp,1)
  735. elseif Type=="Target" then
  736. if Targetting==false then
  737. ZTarget=hit.Parent.Torso
  738. coroutine.resume(coroutine.create(function(Part)
  739. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  740. swait(5)
  741. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  742. end),ZTarget)
  743. TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  744. targetgui=Instance.new("BillboardGui")
  745. targetgui.Parent=ZTarget
  746. targetgui.Size=UDim2.new(10,100,10,100)
  747. targ=Instance.new("ImageLabel")
  748. targ.Parent=targetgui
  749. targ.BackgroundTransparency=1
  750. targ.Image="rbxassetid://4834067"
  751. targ.Size=UDim2.new(1,0,1,0)
  752. cam.CameraType="Scriptable"
  753. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  754. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  755. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  756. Targetting=true
  757. RocketTarget=ZTarget
  758. for i=1,Property do
  759. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  760. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  761. swait()
  762. end
  763. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  764. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  765. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  766. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  767. end
  768. Targetting=false
  769. RocketTarget=nil
  770. targetgui.Parent=nil
  771. cam.CameraType="Custom"
  772. end
  773. end
  774. debounce=Instance.new("BoolValue")
  775. debounce.Name="DebounceHit"
  776. debounce.Parent=hit.Parent
  777. debounce.Value=true
  778. game:GetService("Debris"):AddItem(debounce,Delay)
  779. c=Instance.new("ObjectValue")
  780. c.Name="creator"
  781. c.Value=Player
  782. c.Parent=h
  783. game:GetService("Debris"):AddItem(c,.5)
  784. CRIT=false
  785. hitDeb=true
  786. AttackPos=6
  787. end
  788. end
  789.  
  790. showDamage=function(Char,Dealt,du,Color)
  791. m=Instance.new("Model")
  792. m.Name=tostring(Dealt)
  793. h=Instance.new("Humanoid")
  794. h.Health=0
  795. h.MaxHealth=0
  796. h.Parent=m
  797. c=Instance.new("Part")
  798. c.Transparency=0
  799. c.BrickColor=Color
  800. c.Name="Head"
  801. c.TopSurface=0
  802. c.BottomSurface=0
  803. c.formFactor="Plate"
  804. c.Size=Vector3.new(1,.4,1)
  805. ms=Instance.new("CylinderMesh")
  806. ms.Scale=Vector3.new(.8,.8,.8)
  807. local hitsounds={"199149137","199149186","199149221","199149235","199149269","199149297"}
  808. local dam = Instance.new("Sound",c)
  809. local rndm=math.random(1,#hitsounds)
  810. local r=rndm
  811. dam.SoundId = "http://www.roblox.com/asset/?id="..hitsounds[r]
  812. dam.Volume = 1.25
  813. dam.Pitch = 1
  814. dam:Play()
  815. if CRIT==true then
  816. ms.Scale=Vector3.new(1,1.25,1)
  817. end
  818. ms.Parent=c
  819. c.Reflectance=0
  820. Instance.new("BodyGyro").Parent=c
  821. c.Parent=m
  822. if Char:findFirstChild("Head")~=nil then
  823. c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
  824. elseif Char.Parent:findFirstChild("Head")~=nil then
  825. c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
  826. end
  827. f=Instance.new("BodyPosition")
  828. f.P=2000
  829. f.D=100
  830. f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  831. f.position=c.Position+Vector3.new(0,3,0)
  832. f.Parent=c
  833. game:GetService("Debris"):AddItem(m,.5+du)
  834. c.CanCollide=false
  835. m.Parent=workspace
  836. c.CanCollide=false
  837. end
  838.  
  839. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  840. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  841. end
  842.  
  843. function SkullEffect(brickcolor,cframe,x1,y1,z1,delay)
  844. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  845. prt.Anchored=true
  846. prt.CFrame=cframe
  847. local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=4770583",vt(0,0,0),vt(x1,y1,z1))
  848. --http://www.roblox.com/asset/?id=4770560
  849. game:GetService("Debris"):AddItem(prt,2)
  850. CF=prt.CFrame
  851. coroutine.resume(coroutine.create(function(Part,Mesh,TehCF)
  852. for i=0,1,0.2 do
  853. wait()
  854. Part.CFrame=CF*cf(0,0,-0.4)
  855. end
  856. for i=0,1,delay do
  857. wait()
  858. --Part.CFrame=CF*cf((math.random(-1,0)+math.random())/5,(math.random(-1,0)+math.random())/5,(math.random(-1,0)+math.random())/5)
  859. Mesh.Scale=Mesh.Scale
  860. end
  861. for i=0,1,0.1 do
  862. wait()
  863. Part.Transparency=i
  864. end
  865. Part.Parent=nil
  866. end),prt,msh,CF)
  867. end
  868.  
  869. function MagicBlock(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  870. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  871. prt.Anchored=true
  872. prt.CFrame=cframe
  873. msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1))
  874. game:GetService("Debris"):AddItem(prt,5)
  875. coroutine.resume(coroutine.create(function(Part,Mesh)
  876. for i=0,1,delay do
  877. wait()
  878. Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  879. Part.Transparency=i
  880. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  881. end
  882. Part.Parent=nil
  883. end),prt,msh)
  884. end
  885.  
  886. function MagicBlock2(brickcolor,cframe,Parent,x1,y1,z1,x3,y3,z3,delay)
  887. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  888. prt.Anchored=false
  889. prt.CFrame=cframe
  890. msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1))
  891. local wld=weld(prt,prt,Parent,cframe)
  892. game:GetService("Debris"):AddItem(prt,5)
  893. coroutine.resume(coroutine.create(function(Part,Mesh,Weld)
  894. for i=0,1,delay do
  895. wait()
  896. Weld.C0=euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))*cframe
  897. --Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  898. Part.Transparency=i
  899. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  900. end
  901. Part.Parent=nil
  902. end),prt,msh,wld)
  903. end
  904.  
  905. function MagicBlock3(brickcolor,cframe,Parent,x1,y1,z1,x3,y3,z3,delay)
  906. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  907. prt.Anchored=false
  908. prt.CFrame=cframe
  909. msh=mesh("BlockMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1))
  910. local wld=weld(prt,prt,Parent,euler(0,0,0)*cf(0,0,0))
  911. game:GetService("Debris"):AddItem(prt,5)
  912. coroutine.resume(coroutine.create(function(Part,Mesh,Weld)
  913. for i=0,1,delay do
  914. wait()
  915. Weld.C0=euler(i*20,0,0)
  916. --Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  917. Part.Transparency=i
  918. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  919. end
  920. Part.Parent=nil
  921. end),prt,msh,wld)
  922. end
  923.  
  924. function MagicCircle2(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  925. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  926. prt.Anchored=true
  927. prt.CFrame=cframe
  928. local msh=mesh("CylinderMesh",prt,"","",vt(0,0,0),vt(x1,y1,z1))
  929. game:GetService("Debris"):AddItem(prt,2)
  930. coroutine.resume(coroutine.create(function(Part,Mesh)
  931. for i=0,1,delay do
  932. wait()
  933. Part.CFrame=Part.CFrame
  934. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  935. local prt2=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  936. prt2.Anchored=true
  937. prt2.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  938. local msh2=mesh("SpecialMesh",prt2,"Sphere","",vt(0,0,0),vt(0.5,0.5,0.5))
  939. game:GetService("Debris"):AddItem(prt2,2)
  940. coroutine.resume(coroutine.create(function(Part,Mesh)
  941. for i=0,1,0.1 do
  942. wait()
  943. Part.CFrame=Part.CFrame*cf(0,0.5,0)
  944. end
  945. Part.Parent=nil
  946. end),prt2,msh2)
  947. end
  948. for i=0,1,delay*2 do
  949. wait()
  950. Part.CFrame=Part.CFrame
  951. Mesh.Scale=vt((x1+x3)-(x1+x3)*i,(y1+y3)-(y1+y3)*i,(z1+z3)-(z1+z3)*i)
  952. end
  953. Part.Parent=nil
  954. end),prt,msh)
  955. end
  956.  
  957. function MagicCircle(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  958. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  959. prt.Anchored=true
  960. prt.CFrame=cframe
  961. local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
  962. game:GetService("Debris"):AddItem(prt,2)
  963. coroutine.resume(coroutine.create(function(Part,Mesh)
  964. for i=0,1,delay do
  965. wait()
  966. Part.CFrame=Part.CFrame
  967. Part.Transparency=i
  968. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  969. end
  970. Part.Parent=nil
  971. end),prt,msh)
  972. end
  973.  
  974. function MagicRing(brickcolor,cframe,x1,y1,z1,x2,y2,z2,x3,y3,z3)
  975. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  976. prt.Anchored=true
  977. prt.CFrame=cframe*euler(x2,y2,z2)
  978. --"http://www.roblox.com/asset/?id=168892465"
  979. local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=3270017",vt(0,0,0),vt(x1,y1,z1))
  980. game:GetService("Debris"):AddItem(prt,2)
  981. coroutine.resume(coroutine.create(function(Part,Mesh)
  982. for i=0,1,0.03 do
  983. wait()
  984. Part.CFrame=Part.CFrame
  985. Part.Transparency=i
  986. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  987. end
  988. Part.Parent=nil
  989. end),prt,msh)
  990. end
  991.  
  992. function BreakEffect(brickcolor,cframe,x1,y1,z1)
  993. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  994. prt.Anchored=true
  995. prt.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  996. local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
  997. game:GetService("Debris"):AddItem(prt,2)
  998. coroutine.resume(coroutine.create(function(Part,CF,Numbb,randnumb)
  999. CF=Part.CFrame
  1000. Numbb=0
  1001. randnumb=math.random()/10
  1002. rand1=math.random()/10
  1003. for i=0,1,rand1 do
  1004. wait()
  1005. CF=CF*cf(0,math.random()/2,0)
  1006. --Part.CFrame=Part.CFrame*euler(0.5,0,0)*cf(0,1,0)
  1007. Part.CFrame=CF*euler(Numbb,0,0)
  1008. Part.Transparency=i
  1009. Numbb=Numbb+randnumb
  1010. end
  1011. Part.Parent=nil
  1012. end),prt,CF,Numbb,randnumb)
  1013. end
  1014.  
  1015. function MagicWaveThing(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  1016. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  1017. prt.Anchored=true
  1018. prt.CFrame=cframe
  1019. msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=1051557",vt(0,0,0),vt(x1,y1,z1))
  1020. game:GetService("Debris"):AddItem(prt,5)
  1021. coroutine.resume(coroutine.create(function(Part,Mesh)
  1022. for i=0,1,delay do
  1023. wait()
  1024. Part.CFrame=Part.CFrame*euler(0,0.7,0)
  1025. Part.Transparency=i
  1026. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  1027. end
  1028. Part.Parent=nil
  1029. end),prt,msh)
  1030. end
  1031.  
  1032. function WaveEffect(brickcolor,cframe,x1,y1,z1,x3,y3,z3,delay)
  1033. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  1034. prt.Anchored=true
  1035. prt.CFrame=cframe
  1036. msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=20329976",vt(0,0,0),vt(x1,y1,z1))
  1037. game:GetService("Debris"):AddItem(prt,2)
  1038. coroutine.resume(coroutine.create(function(Part,Mesh)
  1039. for i=0,1,delay do
  1040. wait()
  1041. Part.CFrame=Part.CFrame*cf(0,y3/2,0)
  1042. Part.Transparency=i
  1043. Mesh.Scale=Mesh.Scale+vt(x3,y3,z3)
  1044. end
  1045. Part.Parent=nil
  1046. end),prt,msh)
  1047. end
  1048.  
  1049. function StravEffect(brickcolor,cframe,x,y,z,x1,y1,z1,delay)
  1050. local prt=part(3,workspace,0,0,brickcolor,"Effect",vt(0.5,0.5,0.5))
  1051. prt.Anchored=true
  1052. prt.CFrame=cframe*cf(x,y,z)
  1053. msh=mesh("SpecialMesh",prt,"FileMesh","rbxassetid://168892363",vt(0,0,0),vt(x1,y1,z1))
  1054. game:GetService("Debris"):AddItem(prt,5)
  1055. coroutine.resume(coroutine.create(function(Part,Mesh,ex,why,zee)
  1056. local num=math.random()
  1057. local num2=math.random(-3,2)+math.random()
  1058. local numm=0
  1059. for i=0,1,delay*2 do
  1060. swait()
  1061. Part.CFrame=cframe*euler(0,numm*num*10,0)*cf(ex,why,zee)*cf(-i*10,num2,0)
  1062. Part.Transparency=i
  1063. numm=numm+0.01
  1064. end
  1065. Part.Parent=nil
  1066. Mesh.Parent=nil
  1067. end),prt,msh,x,y,z)
  1068. end
  1069.  
  1070. function dmgstart(dmg,what)
  1071. hitcon = what.Touched:connect(function(hit)
  1072. local hum = hit.Parent:FindFirstChild("Humanoid")
  1073. if hum and not hum:IsDescendantOf(Character) then
  1074. hum:TakeDamage(dmg)
  1075. end
  1076. end)
  1077. end
  1078.  
  1079. function dmgstop()
  1080. hitcon:disconnect()
  1081. end
  1082.  
  1083. function Cloak()
  1084. Face.Parent=nil
  1085. cloaked=true
  1086. for _,v in pairs(Torso.Parent:children()) do
  1087. if v.className=="Part" and v.Name~="HumanoidRootPart" then
  1088. coroutine.resume(coroutine.create(function()
  1089. for i=0,1,0.2 do
  1090. wait()
  1091. v.Transparency=i
  1092. end
  1093. v.Transparency=1
  1094. end))
  1095. end
  1096. if v.className=="Hat" then
  1097. hatp=v.Handle
  1098. coroutine.resume(coroutine.create(function(derp)
  1099. for i=0,1,0.2 do
  1100. wait()
  1101. derp.Transparency=i
  1102. end
  1103. derp.Transparency=1
  1104. end),hatp)
  1105. end
  1106. end
  1107. for _,v in pairs(m:children()) do
  1108. if v.className=="Part" then
  1109. coroutine.resume(coroutine.create(function()
  1110. for i=0,1,0.2 do
  1111. wait()
  1112. v.Transparency=i
  1113. end
  1114. v.Transparency=1
  1115. end))
  1116. end
  1117. end
  1118. end
  1119.  
  1120. function UnCloak()
  1121. so("http://roblox.com/asset/?id=2767090",Torso,1,1.1)
  1122. Face.Parent=Head
  1123. cloaked=false
  1124. for _,v in pairs(Torso.Parent:children()) do
  1125. if v.className=="Part" and v.Name~="HumanoidRootPart" then
  1126. coroutine.resume(coroutine.create(function()
  1127. for i=0,1,0.1 do
  1128. wait()
  1129. v.Transparency=v.Transparency-0.1
  1130. end
  1131. v.Transparency=0
  1132. end))
  1133. end
  1134. if v.className=="Hat" then
  1135. hatp=v.Handle
  1136. coroutine.resume(coroutine.create(function(derp)
  1137. for i=0,1,0.1 do
  1138. wait()
  1139. derp.Transparency=derp.Transparency-0.1
  1140. end
  1141. derp.Transparency=0
  1142. end),hatp)
  1143. end
  1144. end
  1145. for _,v in pairs(m:children()) do
  1146. if v.className=="Part" and v.Name~="hitbox" and v.Name~='tip' then
  1147. coroutine.resume(coroutine.create(function()
  1148. for i=0,1,0.1 do
  1149. wait()
  1150. v.Transparency=v.Transparency-0.1
  1151. end
  1152. v.Transparency=0
  1153. end))
  1154. v.Transparency=0
  1155. end
  1156. end
  1157. end
  1158.  
  1159. Player=game:GetService('Players').LocalPlayer
  1160. Character=Player.Character
  1161. Mouse=Player:GetMouse()
  1162. m=Instance.new('Model',Character)
  1163.  
  1164.  
  1165. local function weldBetween(a, b)
  1166. local weldd = Instance.new("ManualWeld")
  1167. weldd.Part0 = a
  1168. weldd.Part1 = b
  1169. weldd.C0 = CFrame.new()
  1170. weldd.C1 = b.CFrame:inverse() * a.CFrame
  1171. weldd.Parent = a
  1172. return weldd
  1173. end
  1174.  
  1175. it=Instance.new
  1176.  
  1177. function nooutline(part)
  1178. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  1179. end
  1180.  
  1181. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  1182. local fp=it("Part")
  1183. fp.formFactor=formfactor
  1184. fp.Parent=parent
  1185. fp.Reflectance=reflectance
  1186. fp.Transparency=transparency
  1187. fp.CanCollide=false
  1188. fp.Locked=true
  1189. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  1190. fp.Name=name
  1191. fp.Size=size
  1192. fp.Position=Character.Torso.Position
  1193. nooutline(fp)
  1194. fp.Material=material
  1195. fp:BreakJoints()
  1196. return fp
  1197. end
  1198.  
  1199. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  1200. local mesh=it(Mesh)
  1201. mesh.Parent=part
  1202. if Mesh=="SpecialMesh" then
  1203. mesh.MeshType=meshtype
  1204. mesh.MeshId=meshid
  1205. end
  1206. mesh.Offset=offset
  1207. mesh.Scale=scale
  1208. return mesh
  1209. end
  1210.  
  1211. function weld(parent,part0,part1,c0,c1)
  1212. local weld=it("Weld")
  1213. weld.Parent=parent
  1214. weld.Part0=part0
  1215. weld.Part1=part1
  1216. weld.C0=c0
  1217. weld.C1=c1
  1218. return weld
  1219. end
  1220.  
  1221. Player=game:GetService('Players').LocalPlayer
  1222. Character=Player.Character
  1223. Mouse=Player:GetMouse()
  1224. m=Instance.new('Model',Character)
  1225. it=Instance.new
  1226. function nooutline(part)
  1227. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  1228. end
  1229. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  1230. local fp=it("Part")
  1231. fp.formFactor=formfactor
  1232. fp.Parent=parent
  1233. fp.Reflectance=reflectance
  1234. fp.Transparency=transparency
  1235. fp.CanCollide=false
  1236. fp.Locked=true
  1237. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  1238. fp.Name=name
  1239. fp.Size=size
  1240. fp.Position=Character.Torso.Position
  1241. nooutline(fp)
  1242. fp.Material=material
  1243. fp:BreakJoints()
  1244. return fp
  1245. end
  1246. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  1247. local mesh=it(Mesh)
  1248. mesh.Parent=part
  1249. if Mesh=="SpecialMesh" then
  1250. mesh.MeshType=meshtype
  1251. mesh.MeshId=meshid
  1252. end
  1253. mesh.Offset=offset
  1254. mesh.Scale=scale
  1255. return mesh
  1256. end
  1257. function weld(parent,part0,part1,c0,c1)
  1258. local weld=it("Weld")
  1259. weld.Parent=parent
  1260. weld.Part0=part0
  1261. weld.Part1=part1
  1262. weld.C0=c0
  1263. weld.C1=c1
  1264. return weld
  1265. end
  1266.  
  1267. Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Mid gray","Handle",Vector3.new(0.275000006, 1.73512506, 0.280375004))
  1268. HandleWeld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, -1.10559327e-007, 0, 1.10559313e-007, 0.999999881, -6.82671057e-008, 7.54756585e-015, 6.82671129e-008, 1),CFrame.new(-0.069039166, -0.113463402, 1.04289675, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1269. mesh("SpecialMesh",Handle,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1.04999995, 0.5))
  1270. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.228, 0.213375002))
  1271. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.76659834, -0.297748327, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007))
  1272. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  1273. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.214124978, 0.205375016))
  1274. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.86247182, 0.341249466, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  1275. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.75, 0.75))
  1276. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.228, 0.213375002))
  1277. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.76659834, 0.369124293, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  1278. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  1279. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.252000004, 0.213375002))
  1280. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.78813934e-006, -1.95409656, 0.369124651, 1, -3.5029597e-008, -5.96046519e-008, -5.96046306e-008, 6.17193905e-007, -1, 3.50296325e-008, 1, 6.17193905e-007))
  1281. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  1282. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.252000004, 0.213375002))
  1283. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-8.94069672e-007, -1.95409656, -0.297748804, -1, -5.23922949e-008, 5.96046519e-008, -5.96046803e-008, 6.17193905e-007, -1, 5.23922594e-008, -1, -6.17193905e-007))
  1284. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.569999993, 0.125, 0.375))
  1285. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  1286. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13575315, -0.0312535167, 1.63871276, -5.96046448e-008, -0.707106888, -0.707106709, 1, 1.651742e-007, -2.49467973e-007, 2.93196308e-007, -0.707106709, 0.707106888))
  1287. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1288. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.413124949, 0.622375011))
  1289. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.98023224e-007, -1.16725111, -1.41408849, 1, 1.56260029e-007, -2.68220901e-007, -7.91682311e-008, -0.707106948, -0.70710665, -3.00153374e-007, 0.70710665, -0.707106888))
  1290. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1291. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.204125047, 0.287375003))
  1292. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.02655792e-006, -1.16711032, -0.0589969158, 1, 1.08027862e-007, 0, -5.37960721e-014, 4.97983308e-007, -1, -1.08027862e-007, 1, 4.97983308e-007))
  1293. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1294. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.448374987))
  1295. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, -2.35079217, 0.103010416, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007))
  1296. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012))
  1297. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.200000003, 0.213375002))
  1298. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.71972668, 0.400372267, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  1299. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  1300. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  1301. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-8.94069672e-007, -2.02871776, -0.278748035, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007))
  1302. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  1303. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  1304. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(8.94069672e-007, -2.02871752, 0.419371605, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  1305. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  1306. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.223999977, 0.375375003))
  1307. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.15255737e-007, -2.16047049, 0.508368373, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  1308. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.699999988, 0.5))
  1309. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.405000031, 0.200000003, 0.280375004))
  1310. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.35976458, -0.0312541127, 1.86352515, 5.96046448e-008, 0.500000238, -0.866025329, -1, -3.57641632e-008, -8.94739998e-008, -7.57096927e-008, 0.866025269, 0.500000238))
  1311. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1312. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.203125, 0.234375))
  1313. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -1.08190203, 0.2501719, 1, -3.12822095e-007, 5.96046519e-008, -1.13020228e-007, -0.173648566, 0.98480773, -2.97719339e-007, -0.98480767, -0.173648566))
  1314. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.502499998, 0.400000006))
  1315. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.409124941, 0.360375017))
  1316. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.05311584e-006, 1.95058596, 0.253540456, -1, 1.02354932e-007, -1.49011612e-007, -1.17442823e-007, 0.258818656, 0.965925932, 1.3743427e-007, 0.965925992, -0.258818686))
  1317. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  1318. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  1319. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.68847609, 0.419371486, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  1320. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  1321. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.207000002, 0.213375002))
  1322. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.74860382e-007, -1.99747372, 0.400373936, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  1323. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  1324. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.4375, 0.25))
  1325. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.18813586, 0.908314347, -1, -1.16559704e-008, -1.49011612e-007, -1.31319965e-007, 0.544638991, 0.838670731, 7.13820114e-008, 0.838670731, -0.544638932))
  1326. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  1327. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.405000031, 0.200000003, 0.280375004))
  1328. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.35976434, -0.0312459469, 1.86352515, -1.49011612e-007, -0.500000238, 0.866025269, 1, -3.47141249e-009, 1.70059607e-007, -8.20235115e-008, 0.866025269, 0.500000238))
  1329. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1330. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.409124911, 0.268375039))
  1331. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.03983688e-006, 1.82663035, 1.68847704, -1, 2.51590194e-007, -1.49011612e-007, -2.54842973e-007, -0.500000179, 0.866025329, 1.43377648e-007, 0.866025269, 0.500000179))
  1332. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  1333. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.698124886, 0.372374952))
  1334. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1335. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.455000013, 1, 1))
  1336. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  1337. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.08616257e-006, 1.6884762, -0.278747916, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007))
  1338. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 0.5, 0.5))
  1339. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.330124885, 0.214375019))
  1340. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.74860382e-007, 2.75683522, 1.15006804, 1, 2.61612684e-007, -5.96046519e-008, -4.6201059e-008, 0.386711121, 0.922201037, 2.64309278e-007, -0.922201037, 0.386711121))
  1341. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001))
  1342. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  1343. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.90734863e-006, 1.20410335, -0.1381253, 1, -1.30388145e-007, 5.96046519e-008, -5.96047158e-008, -4.97983308e-007, 1, -1.30388116e-007, -1, -4.97983308e-007))
  1344. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1345. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  1346. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.13575315, -0.0312504768, 1.638713, 0, 0.707106888, 0.707106709, -1, -1.57551966e-007, 1.57552009e-007, 2.2281219e-007, -0.707106709, 0.707106888))
  1347. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1348. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  1349. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.999259949, -0.0312482715, -0.496301651, 8.94069814e-008, 0.707106769, -0.707106829, 1, -2.08849031e-007, -8.2408441e-008, -2.0595013e-007, -0.707106829, -0.707106709))
  1350. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1351. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.200000003, 0.303375006))
  1352. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.20410311, 0.278748631, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1353. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1354. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.745124936, 0.280375004))
  1355. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.302499771, 0.0937513113, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1356. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1357. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.415125012, 0.234375))
  1358. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.659994602, 0.135124326, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1359. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  1360. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.630125046, 0.280375004))
  1361. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.25361502, 0.392871499, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  1362. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.395000011, 0.75, 0.25))
  1363. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.248124972, 0.311374992))
  1364. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.954994917, 0.140751123, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1365. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1366. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.375, 0.21875))
  1367. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.50817347, 0.125254035, -1, 6.68158862e-008, -1.49011612e-007, -1.4901164e-007, -4.97983194e-007, 1, 6.68158151e-008, 1, 4.97983194e-007))
  1368. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 1))
  1369. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.35512504, 0.283374995))
  1370. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, 0.91299367, 0.281997681, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  1371. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5))
  1372. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.203125, 0.234375))
  1373. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.781131983, 0.0222299099, -1, 2.86555604e-007, -5.96046519e-008, -1.08459133e-007, -0.173648685, 0.98480773, 2.71851889e-007, 0.98480773, 0.173648685))
  1374. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  1375. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.35512504, 0.416375011))
  1376. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, 0.522374153, 0.125002146, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  1377. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5))
  1378. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  1379. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.99925971, -0.0312514305, -0.496301413, 0, -0.707106709, 0.707106829, -1, 1.69960003e-007, 1.69959961e-007, -2.40359725e-007, -0.707106888, -0.707106769))
  1380. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1381. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004))
  1382. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.51446462, -0.0312519073, 0.511714339, 0, -4.38378066e-007, 1, -1, 2.45074915e-007, 1.0743547e-013, -2.45074915e-007, -1, -4.38378066e-007))
  1383. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1384. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.54112494, 0.367374986))
  1385. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.57627869e-007, -1.79205251, -0.0442371368, 1, 1.5625281e-007, -2.68220901e-007, -2.68220987e-007, 6.17193848e-007, -1, -1.56252639e-007, 1, 6.17193905e-007))
  1386. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.600000024))
  1387. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.630125046, 0.280375004))
  1388. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -0.552494049, 0.0937507153, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1389. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1390. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Mid gray","Part",Vector3.new(0.275000006, 0.216124982, 0.280375004))
  1391. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.78813934e-007, 0.63488543, 0.590048075, -1, 2.21816833e-007, 5.96046519e-008, -1.14701351e-007, -0.707106829, 0.707106769, 1.98995039e-007, 0.707106769, 0.707106829))
  1392. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1.04999995, 0.5))
  1393. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.309124947, 0.343375027))
  1394. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.9935112e-006, 1.40163493, 1.65097666, -1, 2.51590194e-007, -1.49011612e-007, -2.54842973e-007, -0.500000179, 0.866025329, 1.43377648e-007, 0.866025269, 0.500000179))
  1395. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  1396. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.998124957, 0.280375004))
  1397. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, 0.428994179, 0.0937510729, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1398. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1399. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.405125052, 0.211375013))
  1400. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, 0.446621895, 0.0734990835, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  1401. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5))
  1402. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.413124949, 0.622375011))
  1403. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, 0.967765272, 0.720929861, -1, 2.21816833e-007, 5.96046519e-008, -1.14701351e-007, -0.707106829, 0.707106769, 1.98995039e-007, 0.707106769, 0.707106829))
  1404. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1405. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.320124894, 0.316374987))
  1406. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1407. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.457500011, 1, 1))
  1408. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.322125077, 0.363375008))
  1409. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.84774399e-006, 0.960361481, 0.0573717356, 1, -6.68157512e-008, -5.96046519e-008, 5.96046164e-008, -4.97983308e-007, 1, -6.68157796e-008, -1, -4.97983308e-007))
  1410. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  1411. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.51412493, 0.622375011))
  1412. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.51446474, -0.287093759, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1413. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1414. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.204125047, 0.210375011))
  1415. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, -1.12023759, -0.0676275492, -1, -2.06059703e-008, 0, -7.19086588e-015, 3.48970019e-007, -1, 2.06059703e-008, -1, -3.48970019e-007))
  1416. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1417. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.261124998, 0.245374992))
  1418. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -0.201990128, 0.0982512236, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1419. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.375, 1.04999995, 0.5))
  1420. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.206125051, 0.280375004))
  1421. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.38418579e-007, -0.137369633, 0.0937509537, -1, 9.86020154e-008, -1.49011612e-007, -1.49011655e-007, -4.38377924e-007, 1, 9.86019515e-008, 1, 4.38377953e-007))
  1422. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5))
  1423. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.578125, 0.234375))
  1424. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.63588333e-006, -1.29723644, 0.0231808424, 1, -1.86023783e-007, -5.96046519e-008, 5.96045879e-008, -3.48969991e-007, 1, -1.86023797e-007, -1, -3.48969991e-007))
  1425. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  1426. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.225500003, 0.210125014))
  1427. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.00167286396, 0.746741295, -0.00556850433, -1, 6.68158222e-008, -5.96046519e-008, 5.96046803e-008, 4.38378009e-007, -1, -6.68157938e-008, -1, -4.38378009e-007))
  1428. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  1429. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.214125022, 0.234375))
  1430. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.81469727e-006, 0.381998301, -0.135124564, -1, -5.23922843e-008, 1.49011612e-007, -1.4901164e-007, 4.97983251e-007, -1, 5.23922097e-008, -1, -4.97983251e-007))
  1431. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.400000006))
  1432. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.270000011, 0.21875, 0.234375))
  1433. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.35113907e-006, -1.64879727, 0.0388069153, 1, -1.86023783e-007, -5.96046519e-008, 5.96045879e-008, -3.48969991e-007, 1, -1.86023797e-007, -1, -3.48969991e-007))
  1434. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1435. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.200000003, 0.449500024, 0.236624971))
  1436. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, -1.14855242, -0.0782039165, -1, 1.1814204e-007, -5.96046519e-008, -8.81511255e-008, -0.258819431, 0.965925753, 9.8689604e-008, 0.965925813, 0.258819431))
  1437. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  1438. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.200000003, 0.46875, 0.220999971))
  1439. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -1.17250943, 0.949309707, -1, -1.16559704e-008, -1.49011612e-007, -1.31319965e-007, 0.544638991, 0.838670731, 7.13820114e-008, 0.838670731, -0.544638932))
  1440. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  1441. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.35212487, 0.214375019))
  1442. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.7106328, -4.67702293, 1, -5.28256834e-008, 3.27825546e-007, -1.54116776e-007, -0.948323309, 0.317305803, 2.94122714e-007, -0.317305803, -0.948323369))
  1443. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.5, 0.100000001))
  1444. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.288000047, 0.200000003, 0.27837503))
  1445. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.00251865, -0.0312470198, -0.784425139, -5.96046448e-008, 0.362437576, 0.932008028, 1, 8.8373362e-008, 2.95864595e-008, -7.16414377e-008, 0.932008028, -0.362437606))
  1446. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1447. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  1448. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-007, -3.18676305, -1.53718555, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  1449. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  1450. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.49000001, 0.200000003, 0.290374994))
  1451. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.73874784, -0.0312489271, 0.358844757, -8.94069814e-008, -0.0130901812, 0.999914408, 1, 5.69744678e-008, 9.01605191e-008, -5.81498085e-008, 0.999914408, 0.0130901812))
  1452. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1453. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.24712491, 0.214375019))
  1454. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.37090683e-006, 3.7712388, 4.10999966, 1, 2.20300279e-007, -3.27825546e-007, 7.26464435e-008, 0.713250935, 0.70090878, 3.88232309e-007, -0.70090884, 0.713250995))
  1455. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.600000024, 0.100000001))
  1456. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.621124864, 0.214375019))
  1457. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-007, 3.43644333, -0.254856586, 1, 2.8833017e-007, 5.96046519e-008, -4.31625189e-008, -0.0566928945, 0.998391747, 2.91245613e-007, -0.998391688, -0.0566928908))
  1458. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001))
  1459. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.940000057, 0.200000003, 0.285374999))
  1460. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.0734067, -0.0312533975, 4.65720272, 1.49011626e-007, 0.694658399, -0.719339788, -1, 3.30585053e-008, -1.75226305e-007, -9.79421202e-008, 0.719339788, 0.694658399))
  1461. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1462. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.84512496, 0.422374964))
  1463. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, 3.25642681, 0.00496280193, 1, 2.88228279e-007, 5.96046519e-008, -5.96046021e-008, -1.70154109e-007, 1, 2.88228279e-007, -1, -1.70154095e-007))
  1464. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1465. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 1.04612494, 0.214375019))
  1466. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.03983688e-006, 6.0806818, -0.48661232, 1, 2.83280116e-007, 0, 3.20681721e-008, -0.113203041, 0.993571877, 2.81459165e-007, -0.993571937, -0.113203049))
  1467. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  1468. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.49000001, 0.200000003, 0.290374994))
  1469. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.73874784, -0.0312509537, 0.358844757, 0, 0.0130901793, -0.999914348, -1, -5.85088848e-008, -7.65957409e-010, -5.85139013e-008, 0.999914408, 0.0130901802))
  1470. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1471. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.46012485, 0.422374964))
  1472. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.05311584e-006, 5.85410023, -0.495341063, 1, 2.75573711e-007, 1.49011612e-007, -1.16857876e-007, -0.113203339, 0.993571877, 2.90670897e-007, -0.993571937, -0.113203347))
  1473. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1474. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.210000038, 0.200000003, 0.285374999))
  1475. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.630329967, -0.0312533975, 7.20098686, 1.11758709e-008, 0.99984777, -0.017452918, -1, 8.5759515e-009, -1.49042407e-007, -1.48870043e-007, 0.0174529161, 0.99984777))
  1476. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
  1477. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.78499997, 0.200000003, 0.301375002))
  1478. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.64131165, -0.0312466621, 0.814543009, -1.78813963e-007, -0.104528897, 0.994521916, 1, 6.1102142e-008, 1.86221044e-007, -8.02329012e-008, 0.994521916, 0.104528897))
  1479. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1480. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.678124905, 0.214375019))
  1481. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-007, 5.27017689, -0.0733480453, 1, 2.8833017e-007, 5.96046519e-008, -4.31626219e-008, -0.0566925369, 0.998391747, 2.91245584e-007, -0.998391688, -0.0566925332))
  1482. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.800000012, 0.100000001))
  1483. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.210000038, 0.200000003, 0.285374999))
  1484. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.630329847, -0.0312465429, 7.20098686, -9.87201929e-008, -0.99984777, 0.017452918, 1, -9.613413e-008, 1.49012436e-007, -1.47311923e-007, 0.0174529161, 0.99984777))
  1485. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
  1486. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.47012496, 0.214375019))
  1487. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.11272049e-006, 4.9387393, -4.49442863, 1, 2.42971879e-007, 2.68220901e-007, -1.46989407e-008, -0.713250041, 0.700909734, 3.61609949e-007, -0.700909734, -0.713250101))
  1488. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.699999988, 0.100000001))
  1489. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.288000047, 0.200000003, 0.27837503))
  1490. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.00251842, -0.0312527418, -0.784425259, -2.98023224e-008, -0.362437576, -0.932008028, -1, -3.9197058e-008, 4.7219352e-008, -5.36460405e-008, 0.932008028, -0.362437606))
  1491. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1492. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.533124864, 0.214375019))
  1493. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 4.10316849, -0.103866458, 1, 2.8833017e-007, 5.96046519e-008, -4.31625473e-008, -0.0566928051, 0.998391747, 2.91245584e-007, -0.998391688, -0.0566928014))
  1494. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  1495. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  1496. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.33085537, -1.5976094, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  1497. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  1498. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.235124931, 1.6693753))
  1499. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.64916229e-006, -0.673488855, 5.65330791, -1, 2.57733284e-008, -4.1723257e-007, 2.16240803e-008, -0.993572056, -0.11320243, -4.17468186e-007, -0.113202423, 0.993571997))
  1500. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1))
  1501. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.480124891, 0.214375019))
  1502. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 2.6059866, 0.051631093, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008))
  1503. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 0.100000001))
  1504. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.235124931, 1.6693753))
  1505. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.29153442e-006, -0.399590373, 4.02885008, -1, 2.75204592e-009, -4.1723257e-007, 2.09061284e-008, -0.998391747, -0.0566919968, -4.16717569e-007, -0.0566919968, 0.998391747))
  1506. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1))
  1507. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.237124875, 0.214375019))
  1508. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.08616257e-006, 2.20885611, -3.10965157, 1, 1.22782865e-007, 3.27825546e-007, -8.59755218e-008, -0.82164669, 0.569997251, 3.39342648e-007, -0.569997191, -0.821646631))
  1509. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.800000012, 0.100000001))
  1510. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.65712488, 0.359375))
  1511. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-006, 4.40055227, -0.0314526558, 1, 2.82533193e-007, 5.96046519e-008, -4.34911662e-008, -0.0566928945, 0.998391747, 2.85457958e-007, -0.998391688, -0.0566928908))
  1512. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1513. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.488124937, 0.359375))
  1514. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(9.53674316e-007, 2.57349205, 0.495863676, 1, 2.95756422e-007, 5.96046519e-008, -9.27020594e-008, 0.113203131, 0.993571877, 2.87107866e-007, -0.993571937, 0.113203138))
  1515. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1516. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.655375004))
  1517. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.84774399e-006, 1.02953684, 2.8258214, -1, -1.09740803e-007, -3.27825546e-007, -2.40661642e-008, -0.923879445, 0.382683516, -3.44867317e-007, 0.382683575, 0.923879564))
  1518. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.899999976))
  1519. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  1520. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.40289879, -1.62781823, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  1521. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  1522. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.488124937, 0.418375015))
  1523. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.07288361e-006, 2.60998273, -0.0503669977, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008))
  1524. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976))
  1525. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 0.217000008, 0.200375021))
  1526. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -3.25880861, -1.56739795, 1, 8.19928516e-008, -2.68220901e-007, -2.15646111e-007, -0.386710614, -0.922201157, -1.79337775e-007, 0.922201157, -0.386710614))
  1527. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 0.200000003, 0.600000024))
  1528. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.265124857, 0.214375019))
  1529. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, 3.70434904, 2.44769764, 1, 3.05401159e-007, -1.49011612e-007, -3.84168999e-008, 0.537299871, 0.843391299, 3.37636607e-007, -0.843391299, 0.537299871))
  1530. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  1531. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.618124902, 0.209375009))
  1532. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.07288361e-006, 2.67497754, -0.154865503, 1, 2.90808202e-007, 5.96046519e-008, -5.96046306e-008, -8.07461475e-008, 1, 2.90808202e-007, -1, -8.07461333e-008))
  1533. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976))
  1534. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.484124899, 0.227375031))
  1535. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13248825e-006, 2.07749343, -1.55897069, -1, 2.0314171e-007, -1.49011612e-007, 3.82758287e-008, 0.707107008, 0.70710659, 2.49009986e-007, 0.70710659, -0.707106948))
  1536. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 0.300000012, 1))
  1537. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.454124868, 0.214375019))
  1538. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.09944153e-006, 4.72574425, -0.500342607, 1, 2.72365185e-007, 1.49011612e-007, -1.17221134e-007, -0.113203213, 0.993571877, 2.87482976e-007, -0.993571877, -0.113203213))
  1539. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 0.899999976, 0.100000001))
  1540. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.65712488, 0.422374964))
  1541. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.25169754e-006, 4.40054798, -0.205949783, 1, 2.82533193e-007, 5.96046519e-008, -4.34911662e-008, -0.0566928945, 0.998391747, 2.85457958e-007, -0.998391688, -0.0566928908))
  1542. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1543. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.446125001, 0.496375084))
  1544. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, 0.313133836, 6.93109894, -1, 3.38840884e-008, 5.96046519e-008, -3.38840529e-008, -1, 5.74912178e-007, 5.96046661e-008, 5.74912178e-007, 1))
  1545. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.899999976))
  1546. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.421999991, 0.200000003, 0.280375004))
  1547. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.558792, -0.0312539935, -0.45239532, 2.98023224e-008, -0.707106769, -0.707106829, -1, -7.48441451e-008, 3.26972902e-008, -7.60432783e-008, 0.707106829, -0.707106709))
  1548. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1549. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.277124941, 0.702375054))
  1550. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.44779181, 0.103008986, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007))
  1551. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.5, 0.800000012))
  1552. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.422124922, 0.412375003))
  1553. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.31130219e-006, -1.70811987, 0.370481491, 1, 1.56259688e-007, -2.68220901e-007, -2.99524515e-007, 0.258819312, -0.965925872, -8.15145142e-008, 0.965925872, 0.258819312))
  1554. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.5))
  1555. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  1556. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.7285347e-006, -1.7005955, 0.278747916, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  1557. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1558. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.421999991, 0.200000003, 0.280375004))
  1559. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.55879188, -0.0312462449, -0.452395201, 5.96046448e-008, 0.707106769, 0.707106829, 1, -4.38479519e-009, -7.99089008e-008, -5.34036033e-008, 0.707106829, -0.707106709))
  1560. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1561. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.204124942, 0.464375019))
  1562. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, -2.27592182, 0.103008866, 1, 2.03386463e-007, -1.49011612e-007, -1.4901174e-007, 6.17194019e-007, -1, -2.03386378e-007, 1, 6.17194075e-007))
  1563. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012))
  1564. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.23299998, 0.295375019))
  1565. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.08616257e-006, -0.537618876, 2.27821803, -1, 3.50292382e-008, 2.68220901e-007, -3.50290357e-008, -1, 7.53727932e-007, 2.6822093e-007, 7.53727932e-007, 1))
  1566. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  1567. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.418375015))
  1568. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.54972076e-006, 1.79147363, 1.84832418, -1, -2.19832074e-007, -2.68220901e-007, -3.42159723e-008, -0.707107008, 0.70710659, -3.45105576e-007, 0.70710659, 0.707106948))
  1569. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.899999976))
  1570. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Institutional white","Part",Vector3.new(0.275000006, 0.200124964, 0.287375033))
  1571. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-6.55651093e-007, -0.200989008, 2.46776938, -1, 3.38840884e-008, 5.96046519e-008, -3.38840529e-008, -1, 5.74912178e-007, 5.96046661e-008, 5.74912178e-007, 1))
  1572. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 1, 0.899999976))
  1573. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.216999978, 0.295375019))
  1574. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-007, -0.42824471, 2.46571684, -1, 3.50217348e-008, 2.68220901e-007, -3.50215323e-008, -1, 7.53727875e-007, 2.6822093e-007, 7.53727875e-007, 1))
  1575. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.75, 0.25))
  1576. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.418375015))
  1577. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, 1.93505025, 1.70474756, 1, 1.8804613e-007, -2.68220901e-007, 5.6691988e-008, 0.707107067, 0.707106471, 3.22629546e-007, -0.707106531, 0.707107067))
  1578. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.899999976))
  1579. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.207000002, 0.303375006))
  1580. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.7285347e-006, -1.70059586, -0.138124347, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007))
  1581. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1582. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.331124961, 0.412375003))
  1583. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.98023224e-007, -1.41137242, -1.47533894, 1, 1.56260029e-007, -2.68220901e-007, -7.91682311e-008, -0.707106948, -0.70710665, -3.00153374e-007, 0.70710665, -0.707106888))
  1584. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.5))
  1585. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.709124923, 0.47437498))
  1586. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.25169754e-006, -1.87605298, 0.196760774, 1, 1.5625281e-007, -2.68220901e-007, -2.68220987e-007, 6.17193848e-007, -1, -1.56252639e-007, 1, 6.17193905e-007))
  1587. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.800000012))
  1588. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.277124912, 0.227375031))
  1589. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.15904617e-006, 2.51099396, -0.945535302, -1, 2.51590308e-007, -1.49011612e-007, -3.25266569e-009, 0.50000006, 0.866025388, 2.92389416e-007, 0.866025448, -0.50000006))
  1590. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 0.300000012, 1))
  1591. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Institutional white","Part",Vector3.new(0.275000006, 0.200124964, 0.287375033))
  1592. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.01327896e-006, 0.00686681271, 2.46776795, 1, 4.04674836e-008, 5.96046519e-008, -4.04674481e-008, 1, -5.74912178e-007, -5.96046803e-008, 5.74912178e-007, 1))
  1593. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.560000002, 1, 0.899999976))
  1594. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.84512496, 0.359375))
  1595. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.17232513e-007, 3.25642681, 0.179460406, 1, 2.88228279e-007, 5.96046519e-008, -5.96046021e-008, -1.70154109e-007, 1, 2.88228279e-007, -1, -1.70154095e-007))
  1596. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 0.5))
  1597. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.453000009, 0.200000003, 0.280375004))
  1598. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.95527112, -0.0312464833, 0.483453929, 1.19209275e-007, 0.258818507, 0.965925932, 1, -8.24298763e-009, -1.21205815e-007, -2.34081945e-008, 0.965925932, -0.258818507))
  1599. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1600. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.453000009, 0.200000003, 0.280375004))
  1601. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.95527112, -0.0312538147, 0.483453929, -2.98023224e-008, -0.258818537, -0.965925992, -1, -2.11072013e-008, 3.65092774e-008, -2.98372704e-008, 0.965925932, -0.258818537))
  1602. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1603. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.3125, 0.320125014))
  1604. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.00167268515, -1.01674032, 0.0665671825, -1, -2.06061035e-008, 5.96046519e-008, 5.96046661e-008, -4.97983308e-007, 1, -2.06060733e-008, 1, 4.97983308e-007))
  1605. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  1606. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.698124886, 0.732374966))
  1607. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1608. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.425000012, 1, 1))
  1609. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.698124886, 0.534374952))
  1610. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1611. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.452499986, 1, 1))
  1612. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.368124902, 0.378374994))
  1613. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.20537186e-006, 1.49373317, 0.509495497, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007))
  1614. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 1))
  1615. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.567124963, 0.311374992))
  1616. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 0.994490385, 0.140751123, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1617. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 0.5))
  1618. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.418250024, 0.25))
  1619. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.96046448e-008, -1.13293266, -0.127015591, -1, 1.1814204e-007, -5.96046519e-008, -8.81511255e-008, -0.258819431, 0.965925753, 9.8689604e-008, 0.965925813, 0.258819431))
  1620. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.25))
  1621. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.403124899, 0.352375001))
  1622. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.55247092, -0.700873375, -1, 3.75780473e-009, -1.49011612e-007, -1.02709933e-007, 0.707106948, 0.707106709, 1.08024309e-007, 0.70710665, -0.707106888))
  1623. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  1624. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.625, 0.200000003, 0.296375006))
  1625. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.97657108, -0.0312469006, 0.569297791, -1.78813934e-007, -0.0523363948, 0.99862951, 1, 7.44965192e-008, 1.82963561e-007, -8.39700789e-008, 0.99862957, 0.0523363985))
  1626. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1627. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.940000057, 0.200000003, 0.285374999))
  1628. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.0734067, -0.0312458873, 4.6572032, -2.38418608e-007, -0.694658399, 0.719339788, 1, -7.77344482e-008, 2.56373596e-007, -1.22174583e-007, 0.719339788, 0.694658399))
  1629. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1630. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.625, 0.200000003, 0.296375006))
  1631. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.97657156, -0.0312528014, 0.569297791, 8.94069672e-008, 0.0523363948, -0.99862957, -1, -7.9065849e-008, -9.36733713e-008, -8.38600229e-008, 0.99862957, 0.0523363948))
  1632. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1633. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 1.66212487, 0.359375))
  1634. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.84774399e-006, 5.95509291, -0.320841074, 1, 2.75573711e-007, 1.49011612e-007, -1.16857876e-007, -0.113203339, 0.993571877, 2.90670897e-007, -0.993571937, -0.113203347))
  1635. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1636. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(1.78499997, 0.200000003, 0.301375002))
  1637. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.64131165, -0.0312528014, 0.814543009, 8.94069672e-008, 0.104528897, -0.994521856, -1, -7.01918026e-008, -9.72769385e-008, -7.99755355e-008, 0.994521916, 0.104528904))
  1638. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1639. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.204125047, 0.207375005))
  1640. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.78813934e-006, -1.16710985, 0.175246477, -1, -2.06059703e-008, 0, -7.19086588e-015, 3.48970019e-007, -1, 2.06059703e-008, -1, -3.48970019e-007))
  1641. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.5))
  1642. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.223124996, 0.234375))
  1643. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, -0.964124441, -0.0247514248, 1, -3.01422034e-007, 5.96046519e-008, -3.31073302e-008, 0.0871552527, 0.99619478, -3.05469911e-007, -0.99619478, 0.0871552527))
  1644. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.400000006))
  1645. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.244125068, 0.416375011))
  1646. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.1920929e-007, -0.686996341, -0.125002146, -1, -5.23922274e-008, 1.49011612e-007, -1.49011626e-007, 3.48969991e-007, -1, 5.23921742e-008, -1, -3.48969991e-007))
  1647. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.560000002, 0.5))
  1648. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.206125051, 0.280375004))
  1649. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0, 0.168619156, -0.0937508345, -1, -5.23922559e-008, 1.49011612e-007, -1.4901164e-007, 4.97983251e-007, -1, 5.23921813e-008, -1, -4.97983251e-007))
  1650. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.560000002, 0.5))
  1651. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.398124993, 0.303375006))
  1652. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.84774399e-006, 1.4540993, 0.200625658, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1653. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 1))
  1654. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.239124984, 0.205375016))
  1655. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.85597229, 0.341248155, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  1656. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1, 1))
  1657. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.698124886, 0.534374952))
  1658. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1659. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.452499986, 1, 1))
  1660. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.315999985, 0.310375005))
  1661. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.68220901e-006, 2.08321929, -0.579118371, 1, -3.05231737e-007, 5.96046519e-008, -5.96048082e-008, -4.97983308e-007, 1, -3.05231708e-007, -1, -4.97983308e-007))
  1662. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.5))
  1663. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  1664. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.99925971, -0.0312514305, -0.496301413, 0, -0.707106709, 0.707106829, -1, 1.69960003e-007, 1.69959961e-007, -2.40359725e-007, -0.707106888, -0.707106769))
  1665. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1666. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.207000002, 0.213375002))
  1667. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-7.74860382e-007, -1.99747372, -0.297748566, -1, -1.71600149e-007, 5.96046519e-008, -5.96047229e-008, 4.38378009e-007, -1, 1.71600121e-007, -1, -4.38378009e-007))
  1668. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  1669. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.311124951, 0.267374992))
  1670. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(2.14576721e-006, -1.94385314, 0.47499609, 1, -6.68158364e-008, 5.96046519e-008, 5.96046803e-008, 4.38378009e-007, -1, 6.6815808e-008, 1, 4.38378009e-007))
  1671. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.495000005, 1, 1))
  1672. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Bright blue","Part",Vector3.new(0.275000006, 0.200000003, 0.213375002))
  1673. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.96695328e-006, 1.71972692, -0.297746897, 1, -1.86023797e-007, 5.96046519e-008, -5.96047443e-008, -4.97983308e-007, 1, -1.86023769e-007, -1, -4.97983308e-007))
  1674. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.25, 0.5))
  1675. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004))
  1676. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.51446462, -0.0312519073, 0.511714339, 0, -4.38378066e-007, 1, -1, 2.45074915e-007, 1.0743547e-013, -2.45074915e-007, -1, -4.38378066e-007))
  1677. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1678. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.496000022, 0.200000003, 0.280375004))
  1679. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.13575315, -0.0312535167, 1.63871276, -5.96046448e-008, -0.707106888, -0.707106709, 1, 1.651742e-007, -2.49467973e-007, 2.93196308e-007, -0.707106709, 0.707106888))
  1680. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1681. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.643000007, 0.200000003, 0.280375004))
  1682. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.51446474, -0.0312479734, 0.511714339, 5.96046519e-008, 4.38378066e-007, -1, 1, -2.45074915e-007, 5.96045453e-008, -2.45074887e-007, -1, -4.38378095e-007))
  1683. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1684. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.577124953, 0.303375006))
  1685. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.96695328e-006, 1.2623533, 0.27874887, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007))
  1686. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.870000005, 0.5))
  1687. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.304124922, 0.267374992))
  1688. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.14576721e-006, 1.6403501, 0.474995613, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007))
  1689. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.495000005, 1, 1))
  1690. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.330124915, 0.226374999))
  1691. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.2649765e-006, 1.84085846, 0.585492015, -1, 1.54237696e-007, -1.49011612e-007, -1.49011683e-007, -4.38377924e-007, 1, 1.54237625e-007, 1, 4.38377953e-007))
  1692. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 1))
  1693. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.25999999, 0.578125, 0.21875))
  1694. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.00167268515, 1.04017782, 0.125254273, 1, 2.06060218e-008, 5.96046519e-008, 5.96046448e-008, 3.48969991e-007, -1, -2.06060431e-008, 1, 3.48969991e-007))
  1695. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 1))
  1696. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.239124984, 0.303375006))
  1697. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.90734863e-006, 1.85597229, 0.341248155, -1, 2.73445636e-007, -5.96046519e-008, -5.96047869e-008, -4.97983308e-007, 1, 2.73445607e-007, 1, 4.97983308e-007))
  1698. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1, 1))
  1699. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.423000038, 0.200000003, 0.280375004))
  1700. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(1.828511, -0.0312466025, 1.86352599, -1.49011612e-007, -0.500000238, 0.866025269, 1, -3.47173224e-009, 1.70059423e-007, -8.20231492e-008, 0.866025269, 0.500000238))
  1701. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1702. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.23712492, 0.375375003))
  1703. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.23306799, -0.714783967, 1, 1.28876025e-007, -1.49011612e-007, -8.8350177e-008, -0.38268286, -0.923879802, -1.76090154e-007, 0.923879862, -0.38268289))
  1704. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012))
  1705. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.410999984, 0.469375014))
  1706. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(7.15255737e-007, -2.25397205, 0.350374818, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  1707. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.850000024, 0.699999988))
  1708. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.293000042, 0.200000003, 0.280375004))
  1709. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(0.930041909, -0.0312547088, 2.61983705, 2.68220924e-006, -0.866025388, 0.500000238, 1, 1.34954996e-006, -3.0269282e-006, 1.94662152e-006, 0.500000238, 0.866025388))
  1710. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1711. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.315999985, 0.303375006))
  1712. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(3.75509262e-006, -2.0832181, 0.73186779, 1, 8.41783816e-008, -5.96046519e-008, -5.96046874e-008, 4.38378009e-007, -1, -8.41783532e-008, 1, 4.38378009e-007))
  1713. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1, 0.5))
  1714. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.275000006, 0.698124886, 0.638374984))
  1715. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-2.02655792e-006, 1.51446426, -0.0117214918, -1, 2.45074915e-007, -5.96046519e-008, -5.96047798e-008, -5.27786028e-007, 1, 2.45074887e-007, 1, 5.27786028e-007))
  1716. mesh("SpecialMesh",Part,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.449999988, 1, 1))
  1717. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.293000042, 0.200000003, 0.280375004))
  1718. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-0.930041909, -0.03124547, 2.61983705, -2.75671505e-006, 0.866025388, -0.500000238, -1, -1.43972136e-006, 3.0197582e-006, 1.89532614e-006, 0.500000238, 0.866025329))
  1719. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1720. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.275000006, 0.238124937, 0.381375015))
  1721. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-006, -2.16469121, -0.908047557, -1, -9.70897673e-008, -1.49011612e-007, 1.00514129e-007, 0.382683396, -0.923879564, 1.46723522e-007, -0.923879564, -0.382683367))
  1722. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.524999976, 1.04999995, 0.800000012))
  1723. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.235124931, 0.586375237))
  1724. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.70876694e-006, -4.59392071, 4.83900547, -1, 3.01723389e-007, -3.27825546e-007, 2.23408545e-008, -0.700909495, -0.713250279, -4.44980344e-007, -0.713250279, 0.700909495))
  1725. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1.04999995, 1))
  1726. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.28125, 0.234375))
  1727. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-5.96046448e-008, -1.44312787, -0.230922222, 1, -1.99133694e-007, -5.96046519e-008, 9.3278274e-008, 0.173647881, 0.984807849, -1.85758211e-007, -0.984807849, 0.173647881))
  1728. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.04999995, 0.400000006))
  1729. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.423000038, 0.200000003, 0.280375004))
  1730. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.82851136, -0.0312532187, 1.86352599, 5.96046448e-008, 0.500000238, -0.866025329, -1, -3.57638221e-008, -8.94738008e-008, -7.57092948e-008, 0.866025269, 0.500000238))
  1731. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
  1732. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.287124902, 0.227375031))
  1733. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-3.03983688e-006, 2.52654123, 0.448077202, -1, 2.51590194e-007, -1.49011612e-007, -1.49011683e-007, -2.59562086e-007, 1, 2.51590166e-007, 1, 2.59562114e-007))
  1734. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.349999994, 1, 1))
  1735. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.22512494, 0.42337501))
  1736. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(5.36441803e-007, 2.19158387, 0.875249863, 1, 2.87006458e-007, -5.96046519e-008, -2.30892709e-008, 0.279828936, 0.960049868, 2.92219624e-007, -0.960049927, 0.279828966))
  1737. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 1, 0.5))
  1738. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.408374965))
  1739. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(4.76837158e-007, -2.34476542, -0.473634839, 1, 1.52993096e-007, -1.49011612e-007, -1.04336792e-007, -0.258818269, -0.965926051, -1.86346938e-007, 0.965926051, -0.258818269))
  1740. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012))
  1741. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Metal,0,0,"Black","Part",Vector3.new(0.275000006, 0.221124932, 0.408374965))
  1742. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-1.1920929e-006, -2.29170871, -0.671645045, -1, -1.21206767e-007, -1.49011612e-007, 1.12563526e-007, 0.258819103, -0.965925813, 1.55643789e-007, -0.965925813, -0.258819103))
  1743. mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 1.04999995, 0.800000012))
  1744. Hitbox=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,1,"Medium stone grey","Hitbox",Vector3.new(4.90999985, 1.2299999, 0.200000003))
  1745. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, -1, 2.17809955e-007, -5.96046519e-008, -5.96047656e-008, -4.97983308e-007, 1, 2.17809927e-007, 1, 4.97983308e-007),CFrame.new(-4.90843725, -0.0829741955, 0.0609716177, 0, -6.82671129e-008, -1, 1.1055932e-007, 1, -6.82671129e-008, 1, -1.1055932e-007, 7.547565e-015))
  1746.  
  1747. mouse.Button1Down:connect(function()
  1748. if attack==false and attacktype==1 then
  1749. attacktype=2
  1750. attackone()
  1751. elseif attack==false and attacktype==2 then
  1752. attacktype=3
  1753. attacktwo()
  1754. elseif attack==false and attacktype==3 then
  1755. attacktype=4
  1756. attackthree()
  1757. elseif attack==false and attacktype==4 then
  1758. attacktype=1
  1759. attackfour()
  1760. end
  1761. end)
  1762.  
  1763. function bladespin()
  1764. attack=true
  1765. con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,5,7,math.random(10,20),"Normal",RootPart,.2,1) end)
  1766. for i=0,1,0.1 do
  1767. swait()
  1768. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(-10)),.4)
  1769. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(-75),0,math.rad(0)),.4)
  1770. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1771. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1772. end
  1773. for z = 0, 2 do
  1774. so("http://roblox.com/asset/?id=199146359",Hitbox,1.15,1.05)
  1775. for i=0,1,0.5 do
  1776. swait()
  1777. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4)
  1778. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
  1779. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4)
  1780. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1781. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4)
  1782. end
  1783. for i=0,1,0.5 do
  1784. swait()
  1785. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4)
  1786. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(180)),.4)
  1787. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4)
  1788. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1789. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4)
  1790. end
  1791. for i=0,1,0.5 do
  1792. swait()
  1793. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4)
  1794. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(240)),.4)
  1795. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4)
  1796. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1797. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4)
  1798. end
  1799. for i=0,1,0.5 do
  1800. swait()
  1801. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.4)
  1802. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(360)),.4)
  1803. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4)
  1804. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1805. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4)
  1806. end
  1807. end
  1808. attack=false
  1809. con1:disconnect()
  1810. end
  1811.  
  1812. function flashingslash()
  1813. attack=true
  1814. for i=0,2,0.1 do
  1815. swait()
  1816. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3)
  1817. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
  1818. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-80),math.rad(-80))*angles(math.rad(-75),0,math.rad(0)),.4)
  1819. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1820. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1821. end
  1822. so("http://roblox.com/asset/?id=540358153",Hitbox,1,0.9)
  1823. local b = Instance.new("Part")
  1824. b.Parent = char
  1825. b.Material = "Neon"
  1826. b.Color = BrickColor.new("White").Color
  1827. b.CanCollide = false
  1828. b.Shape = "Ball"
  1829. b.CFrame = Hitbox.CFrame
  1830. b.Anchored = true
  1831. b.Transparency = 0
  1832. b.Size = vt(0.5,0.5,0.5)
  1833. local z = Instance.new("SpecialMesh",b)
  1834. z.MeshType = "Sphere"
  1835. con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,13,16,math.random(10,20),"Normal",RootPart,.2,1) end)
  1836. for i=0,2,0.1 do
  1837. swait()
  1838. z.Scale = z.Scale + vt(7.5,-0.01,-0.01)
  1839. b.Transparency = b.Transparency + 0.05
  1840. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3)
  1841. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-2.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1842. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(70),math.rad(90))*angles(math.rad(-75),0,math.rad(0)),.9)
  1843. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1844. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1845. end
  1846. con1:disconnect()
  1847. attack = false
  1848. b:Destroy()
  1849. end
  1850.  
  1851. function executionstab()
  1852. attack=true
  1853. for i=0,5,0.1 do
  1854. swait()
  1855. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3)
  1856. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
  1857. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-80),math.rad(-80))*angles(math.rad(-75),0,math.rad(0)),.4)
  1858. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1859. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1860. end
  1861. so("http://roblox.com/asset/?id=540358153",Hitbox,1.5,0.75)
  1862. local b = Instance.new("Part")
  1863. b.Parent = char
  1864. b.Material = "Neon"
  1865. b.Color = BrickColor.new("Really red").Color
  1866. b.CanCollide = false
  1867. b.Shape = "Ball"
  1868. b.CFrame = Hitbox.CFrame
  1869. b.Anchored = true
  1870. b.Transparency = 0
  1871. b.Size = vt(0.5*2,0.5*2,0.5*2)
  1872. local z = Instance.new("SpecialMesh",b)
  1873. z.MeshType = "Sphere"
  1874. con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,50,60,math.random(10,20),"Normal",RootPart,.2,1) end)
  1875. for i=0,5,0.1 do
  1876. swait()
  1877. z.Scale = z.Scale + vt(15,-0.01*2,-0.01*2)
  1878. b.Transparency = b.Transparency + 0.05
  1879. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-90)),.3)
  1880. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1881. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(70),math.rad(90))*angles(math.rad(-75),0,math.rad(0)),.9)
  1882. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1883. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1884. end
  1885. con1:disconnect()
  1886. attack = false
  1887. b:Destroy()
  1888. end
  1889.  
  1890. function enerwave()
  1891. attack=true
  1892. for i=0,1,0.1 do
  1893. swait()
  1894. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  1895. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.4)
  1896. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-80),math.rad(-80))*angles(math.rad(-75),0,math.rad(0)),.4)
  1897. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1898. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1899. end
  1900. so("http://roblox.com/asset/?id=540358153",Hitbox,1,0.9)
  1901. local lb = Instance.new("Part")
  1902. lb.Parent = char
  1903. lb.Material = "Neon"
  1904. lb.Color = BrickColor.new("Royal purple").Color
  1905. lb.CanCollide = false
  1906. lb.CFrame = Torso.CFrame + Torso.CFrame.lookVector*5
  1907. lb.Transparency = 0
  1908. lb.Size = vt(15,0.6,3)
  1909. local tra2 = Instance.new("ParticleEmitter",lb)
  1910. tra2.Texture = "http://www.roblox.com/asset/?id=745304849"
  1911. tra2.LightEmission = 1
  1912. tra2.Color = ColorSequence.new(lb.BrickColor.Color)
  1913. tra2.Rate = 500000000000
  1914. tra2.Lifetime = NumberRange.new(0.5)
  1915. tra2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,3,0),NumberSequenceKeypoint.new(1,0,0)})
  1916. tra2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)})
  1917. tra2.Speed = NumberRange.new(0)
  1918. tra2.Rotation = NumberRange.new(-500,500)
  1919. tra2.VelocitySpread = 90000
  1920. tra2.RotSpeed = NumberRange.new(-500,500)
  1921. local thing = Instance.new("SpecialMesh",lb)
  1922. thing.MeshType = "Sphere"
  1923. lb.Touched:connect(function(hit) Damagefunc(hit,10,13,math.random(10,20),"Normal",RootPart,.2,1) end)
  1924. local bv = Instance.new("BodyVelocity")
  1925. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  1926. bv.velocity = Torso.CFrame.lookVector *150
  1927. bv.Parent = lb
  1928. for i=0,2,0.1 do
  1929. swait()
  1930. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(30)),.3)
  1931. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(-30)),.3)
  1932. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(70),math.rad(90))*angles(math.rad(-75),0,math.rad(0)),.3)
  1933. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  1934. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  1935. end
  1936. attack = false
  1937. wait(1)
  1938. lb:Destroy()
  1939. end
  1940.  
  1941. function repeatbullet()
  1942. attack = true
  1943. for i = 0,1,0.3 do
  1944. swait()
  1945. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  1946. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  1947. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  1948. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  1949. end
  1950. so("http://roblox.com/asset/?id=604905243",barrelhole,1,1)
  1951. local lb = Instance.new("Part")
  1952. lb.Parent = char
  1953. lb.Material = "Neon"
  1954. lb.Color = BrickColor.new("Royal purple").Color
  1955. lb.CanCollide = false
  1956. lb.Shape = "Ball"
  1957. lb.CFrame = barrelhole.CFrame
  1958. lb.Anchored = true
  1959. lb.Transparency = 0
  1960. lb.Size = vt(0.6,0.6,0.6)
  1961. local thing = Instance.new("SpecialMesh",lb)
  1962. thing.MeshType = "Sphere"
  1963. local b = Instance.new("Part")
  1964. b.Parent = char
  1965. b.Material = "Neon"
  1966. b.Color = BrickColor.new("Royal purple").Color
  1967. b.CanCollide = false
  1968. b.Shape = "Ball"
  1969. b.CFrame = barrelhole.CFrame
  1970. b.Anchored = true
  1971. b.Transparency = 0
  1972. b.Size = vt(1,1,1)
  1973. local z = Instance.new("SpecialMesh",b)
  1974. z.MeshType = "Sphere"
  1975. local hitted = false
  1976. lb.Anchored = false
  1977. local bv = Instance.new("BodyVelocity")
  1978. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  1979. bv.velocity = mouse.Hit.lookVector *150
  1980. bv.Parent = lb
  1981. lb.Touched:connect(function(hit) Damagefunc(hit,9,10,math.random(10,20),"Normal",RootPart,.2,1) end)
  1982. z.Scale = vt(1,1,1)
  1983. b.Transparency = 0
  1984. b.CFrame = barrelhole.CFrame
  1985. for i = 0,1,0.3 do
  1986. swait()
  1987. z.Scale = z.Scale + vt(0.2,0.2,0.2)
  1988. b.Transparency = b.Transparency + 0.25
  1989. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  1990. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  1991. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  1992. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3)
  1993. end
  1994. for i = 0,1,0.3 do
  1995. swait()
  1996. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  1997. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  1998. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  1999. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2000. end
  2001. so("http://roblox.com/asset/?id=604905243",barrelhole,1,1)
  2002. local lb = Instance.new("Part")
  2003. lb.Parent = char
  2004. lb.Material = "Neon"
  2005. lb.Color = BrickColor.new("Royal purple").Color
  2006. lb.CanCollide = false
  2007. lb.Shape = "Ball"
  2008. lb.CFrame = barrelhole.CFrame
  2009. lb.Anchored = true
  2010. lb.Transparency = 0
  2011. lb.Size = vt(0.6,0.6,0.6)
  2012. local thing = Instance.new("SpecialMesh",lb)
  2013. thing.MeshType = "Sphere"
  2014. local hitted = false
  2015. lb.Anchored = false
  2016. local bv = Instance.new("BodyVelocity")
  2017. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  2018. bv.velocity = mouse.Hit.lookVector *150
  2019. bv.Parent = lb
  2020. lb.Touched:connect(function(hit) Damagefunc(hit,9,10,math.random(10,20),"Normal",RootPart,.2,1) end)
  2021. z.Scale = vt(1,1,1)
  2022. b.Transparency = 0
  2023. b.CFrame = barrelhole.CFrame
  2024. for i = 0,1,0.3 do
  2025. swait()
  2026. z.Scale = z.Scale + vt(0.2,0.2,0.2)
  2027. b.Transparency = b.Transparency + 0.25
  2028. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2029. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2030. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2031. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3)
  2032. end
  2033. for i = 0,1,0.3 do
  2034. swait()
  2035. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2036. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2037. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2038. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2039. end
  2040. so("http://roblox.com/asset/?id=604905243",barrelhole,1,1)
  2041. local lb = Instance.new("Part")
  2042. lb.Parent = char
  2043. lb.Material = "Neon"
  2044. lb.Color = BrickColor.new("Royal purple").Color
  2045. lb.CanCollide = false
  2046. lb.Shape = "Ball"
  2047. lb.CFrame = barrelhole.CFrame
  2048. lb.Anchored = true
  2049. lb.Transparency = 0
  2050. lb.Size = vt(0.6,0.6,0.6)
  2051. local thing = Instance.new("SpecialMesh",lb)
  2052. thing.MeshType = "Sphere"
  2053. local hitted = false
  2054. lb.Anchored = false
  2055. local bv = Instance.new("BodyVelocity")
  2056. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  2057. bv.velocity = mouse.Hit.lookVector *150
  2058. bv.Parent = lb
  2059. lb.Touched:connect(function(hit) Damagefunc(hit,9,10,math.random(10,20),"Normal",RootPart,.2,1) end)
  2060. z.Scale = vt(1,1,1)
  2061. b.CFrame = barrelhole.CFrame
  2062. b.Transparency = 0
  2063. for i = 0,1,0.3 do
  2064. swait()
  2065. z.Scale = z.Scale + vt(0.2,0.2,0.2)
  2066. b.Transparency = b.Transparency + 0.25
  2067. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2068. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2069. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2070. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3)
  2071. end
  2072. attack = false
  2073. b:Destroy()
  2074. wait(10)
  2075. lb:Destroy()
  2076. lb:Destroy()
  2077. lb:Destroy()
  2078. end
  2079.  
  2080. function stickybomb()
  2081. attack = true
  2082. for i = 0,2,0.1 do
  2083. swait()
  2084. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2085. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2086. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2087. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2088. end
  2089. so("http://roblox.com/asset/?id=604905243",barrelhole,1,1)
  2090. local lb = Instance.new("Part")
  2091. lb.Parent = char
  2092. lb.Material = "Neon"
  2093. lb.Color = BrickColor.new("Royal purple").Color
  2094. lb.CanCollide = false
  2095. lb.Shape = "Ball"
  2096. lb.CFrame = barrelhole.CFrame
  2097. lb.Anchored = true
  2098. lb.Transparency = 0
  2099. lb.Size = vt(1,1,1)
  2100. local thing = Instance.new("SpecialMesh",lb)
  2101. thing.MeshType = "Sphere"
  2102. local b = Instance.new("Part")
  2103. b.Parent = char
  2104. b.Material = "Neon"
  2105. b.Color = BrickColor.new("Royal purple").Color
  2106. b.CanCollide = false
  2107. b.Shape = "Ball"
  2108. b.CFrame = barrelhole.CFrame
  2109. b.Anchored = true
  2110. b.Transparency = 0
  2111. b.Size = vt(1,1,1)
  2112. local z = Instance.new("SpecialMesh",b)
  2113. z.MeshType = "Sphere"
  2114. local hitted = false
  2115. lb.Anchored = false
  2116. local bv = Instance.new("BodyVelocity")
  2117. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  2118. bv.velocity = mouse.Hit.lookVector *150
  2119. bv.Parent = lb
  2120. hitted = false
  2121. wait(0.00005)
  2122. lb.Touched:connect(function(hit)
  2123. if hitted == false then
  2124. hitted = true
  2125. lb.Anchored = true
  2126. so("http://roblox.com/asset/?id=604906197",lb,1,1)
  2127. Damagefunc(hit,1,3,-10,"Normal",RootPart,.2,1)
  2128. for i = 0, 4 do
  2129. lb.BrickColor = BrickColor.new("Really red")
  2130. wait(0.25)
  2131. lb.BrickColor = BrickColor.new("Royal purple")
  2132. wait(0.25)
  2133. end
  2134. lb.Transparency = 1
  2135. so("http://roblox.com/asset/?id=412755503",lb,1,0.875)
  2136. local ba = Instance.new("Part")
  2137. ba.Parent = char
  2138. ba.Material = "Neon"
  2139. ba.Color = BrickColor.new("Royal purple").Color
  2140. ba.CanCollide = false
  2141. ba.Shape = "Ball"
  2142. ba.CFrame = lb.CFrame
  2143. ba.Anchored = true
  2144. ba.Transparency = 0
  2145. ba.Size = vt(10,10,10)
  2146. ba.CFrame = lb.CFrame
  2147. local za = Instance.new("SpecialMesh",ba)
  2148. za.MeshType = "Sphere"
  2149. za.Scale = vt(0,0,0)
  2150. ba.Touched:connect(function(hit)
  2151. Damagefunc(hit,16,19,math.random(10,20),"Normal",RootPart,.2,1)
  2152. end)
  2153. for i = 0, 19 do
  2154. ba.Transparency = ba.Transparency + 0.05
  2155. za.Scale = za.Scale + vt(0.25,0.25,0.25)
  2156. wait()
  2157. end
  2158. ba:Destroy()
  2159. lb:Destroy()
  2160. end
  2161. end)
  2162. for i = 0,2,0.1 do
  2163. swait()
  2164. z.Scale = z.Scale + vt(0.1,0.1,0.1)
  2165. b.Transparency = b.Transparency + 0.05
  2166. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2167. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2168. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2169. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3)
  2170. end
  2171. attack = false
  2172. b:Destroy()
  2173. wait(30)
  2174. lb:Destroy()
  2175. end
  2176.  
  2177. function yep()
  2178. attack = true
  2179. for i = 0,2,0.1 do
  2180. swait()
  2181. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2182. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2183. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2184. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2185. end
  2186. so("http://roblox.com/asset/?id=178452221",barrelhole,1,1)
  2187. local lb = Instance.new("Part")
  2188. lb.Parent = char
  2189. lb.Material = "Neon"
  2190. lb.Color = BrickColor.new("Royal purple").Color
  2191. lb.CanCollide = false
  2192. lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*37.5
  2193. lb.Anchored = true
  2194. lb.Transparency = 0
  2195. lb.Size = vt(2.5,75,2.5)
  2196. local zb = Instance.new("SpecialMesh",lb)
  2197. zb.MeshType = "Sphere"
  2198. zb.Scale = vt(1,1,1)
  2199. lb.Touched:connect(function(hit)
  2200. Damagefunc(hit,17,20,math.random(10,20),"Normal",RootPart,.2,1)
  2201. end)
  2202. for i = 0, 9 do
  2203. zb.Scale = zb.Scale + vt(0.1,0,0.1)
  2204. lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*37.5
  2205. lb.Transparency = lb.Transparency + 0.1
  2206. wait()
  2207. end
  2208. lb:Destroy()
  2209. attack = false
  2210. end
  2211.  
  2212. function test()
  2213. attack = true
  2214. for i = 0,2,0.1 do
  2215. swait()
  2216. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2217. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2218. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2219. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2220. end
  2221. so("http://roblox.com/asset/?id=412756262",barrelhole,1,0.95)
  2222. local ba = Instance.new("Part")
  2223. ba.Parent = char
  2224. ba.Material = "Neon"
  2225. ba.Color = BrickColor.new("Royal purple").Color
  2226. ba.CanCollide = false
  2227. ba.Shape = "Ball"
  2228. ba.CFrame = barrelhole.CFrame
  2229. ba.Anchored = true
  2230. ba.Transparency = 1
  2231. ba.Size = vt(1,1,1)
  2232. ba.CFrame = barrelhole.CFrame
  2233. local za = Instance.new("SpecialMesh",ba)
  2234. za.MeshType = "Sphere"
  2235. za.Scale = vt(5,5,5)
  2236. for i = 0, 49 do
  2237. ba.CFrame = barrelhole.CFrame
  2238. ba.Transparency = ba.Transparency - 0.1
  2239. za.Scale = za.Scale - vt(0.1,0.1,0.1)
  2240. wait()
  2241. end
  2242. so("http://roblox.com/asset/?id=412756199",barrelhole,1,0.95)
  2243. so("http://roblox.com/asset/?id=412756123",barrelhole,1,0.95)
  2244. so("http://roblox.com/asset/?id=412755564",barrelhole,1,0.95)
  2245. so("http://roblox.com/asset/?id=178452221",barrelhole,1,0.6)
  2246. so("http://roblox.com/asset/?id=87767777",barrelhole,1,1)
  2247. ba.Transparency = 0
  2248. za.Scale = vt(5,5,5)
  2249. local seen = Instance.new("Sound",barrelhole)
  2250. seen.SoundId = "rbxassetid://445796828"
  2251. seen.Pitch = 0.75
  2252. seen.Volume = 2.5
  2253. seen.Looped = true
  2254. seen:Play()
  2255. local lb = Instance.new("Part")
  2256. lb.Parent = char
  2257. lb.Material = "Neon"
  2258. lb.Color = BrickColor.new("Royal purple").Color
  2259. lb.CanCollide = false
  2260. lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*200
  2261. lb.Anchored = true
  2262. lb.Transparency = 0
  2263. lb.Size = vt(10,400,10)
  2264. local zb = Instance.new("SpecialMesh",lb)
  2265. zb.MeshType = "Sphere"
  2266. zb.Scale = vt(1,1,1)
  2267. lb.Touched:connect(function(hit)
  2268. Damagefunc(hit,22,28,math.random(10,20),"Normal",RootPart,.2,1)
  2269. end)
  2270. for i = 0, 99 do
  2271. ba.CFrame = barrelhole.CFrame
  2272. ba.Transparency = ba.Transparency + 0.025
  2273. zb.Scale = zb.Scale + vt(0.01,0,0.01)
  2274. za.Scale = za.Scale + vt(1,1,1)
  2275. lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*200
  2276. wait()
  2277. end
  2278. for i = 0, 19 do
  2279. seen.Volume = seen.Volume - 0.1
  2280. zb.Scale = zb.Scale - vt(0.05,0,0.05)
  2281. lb.CFrame = barrelhole.CFrame + hed.CFrame.lookVector*200
  2282. lb.Transparency = lb.Transparency + 0.05
  2283. wait()
  2284. end
  2285. seen:Destroy()
  2286. ba:Destroy()
  2287. lb:Destroy()
  2288. attack = false
  2289. end
  2290.  
  2291. mouse.KeyDown:connect(function(k)
  2292. if k == "q" and gunmode == false then
  2293. gunmode = true
  2294. elseif k == "q" and gunmode == true then
  2295. gunmode = false
  2296. end
  2297. if k == "z" and gunmode == false and attack == false then
  2298. bladespin()
  2299. elseif k == "z" and gunmode == true and attack == false then
  2300. repeatbullet()
  2301. end
  2302. if k == "x" and gunmode == false and attack == false then
  2303. flashingslash()
  2304. elseif k == "x" and gunmode == true and attack == false then
  2305. stickybomb()
  2306. end
  2307. if k == "c" and gunmode == false and attack == false then
  2308. enerwave()
  2309. elseif k == "c" and gunmode == true and attack == false then
  2310. yep()
  2311. end
  2312. if k == "v" and gunmode == false and attack == false then
  2313. executionstab()
  2314. elseif k == "v" and gunmode == true and attack == false then
  2315. test()
  2316. end
  2317. end)
  2318.  
  2319. function attackone()
  2320. attack=true
  2321. con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,7,9,math.random(10,20),"Normal",RootPart,.2,1) end)
  2322. for i=0,1,0.1 do
  2323. swait()
  2324. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4)
  2325. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  2326. end
  2327. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  2328. for i=0,1,0.1 do
  2329. swait()
  2330. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(-20)),.4)
  2331. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(25)),.4)
  2332. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-100))*angles(math.rad(-75),0,math.rad(0)),.4)
  2333. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  2334. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  2335. end
  2336. attack=false
  2337. con1:disconnect()
  2338. end
  2339.  
  2340. function attacktwo()
  2341. attack=true
  2342. con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,7,9,math.random(10,20),"Normal",RootPart,.2,1) end)
  2343. for i=0,1,0.1 do
  2344. swait()
  2345. RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(-75),0,math.rad(0)),.4)
  2346. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  2347. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
  2348. end
  2349. so("http://roblox.com/asset/?id=199146359",Hitbox,1,1)
  2350. for i=0,1,0.1 do
  2351. swait()
  2352. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(40)),.4)
  2353. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-.5)*angles(math.rad(0),math.rad(0),math.rad(-45)),.4)
  2354. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-90),math.rad(-90))*angles(math.rad(90),0,math.rad(0)),.4)
  2355. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-25)), 0.3)
  2356. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-.5,-.5)*angles(math.rad(-35),math.rad(0),math.rad(0)),.4)
  2357. end
  2358. attack=false
  2359. con1:disconnect()
  2360. end
  2361.  
  2362. function attackthree()
  2363. attack = true
  2364. for i = 0,2,0.1 do
  2365. swait()
  2366. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2367. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2368. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2369. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2370. end
  2371. so("http://roblox.com/asset/?id=604905243",barrelhole,1,1)
  2372. local lb = Instance.new("Part")
  2373. lb.Parent = char
  2374. lb.Material = "Neon"
  2375. lb.Color = BrickColor.new("Royal purple").Color
  2376. lb.CanCollide = false
  2377. lb.Shape = "Ball"
  2378. lb.CFrame = barrelhole.CFrame
  2379. lb.Anchored = true
  2380. lb.Transparency = 0
  2381. lb.Size = vt(0.6,0.6,0.6)
  2382. local thing = Instance.new("SpecialMesh",lb)
  2383. thing.MeshType = "Sphere"
  2384. local b = Instance.new("Part")
  2385. b.Parent = char
  2386. b.Material = "Neon"
  2387. b.Color = BrickColor.new("Royal purple").Color
  2388. b.CanCollide = false
  2389. b.Shape = "Ball"
  2390. b.CFrame = barrelhole.CFrame
  2391. b.Anchored = true
  2392. b.Transparency = 0
  2393. b.Size = vt(1,1,1)
  2394. local z = Instance.new("SpecialMesh",b)
  2395. z.MeshType = "Sphere"
  2396. local hitted = false
  2397. lb.Anchored = false
  2398. local bv = Instance.new("BodyVelocity")
  2399. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  2400. bv.velocity = mouse.Hit.lookVector *150
  2401. bv.Parent = lb
  2402. lb.Touched:connect(function(hit) Damagefunc(hit,9,12,math.random(10,20),"Normal",RootPart,.2,1) end)
  2403. for i = 0,2,0.1 do
  2404. swait()
  2405. z.Scale = z.Scale + vt(0.1,0.1,0.1)
  2406. b.Transparency = b.Transparency + 0.05
  2407. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2408. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2409. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2410. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3)
  2411. end
  2412. attack = false
  2413. b:Destroy()
  2414. wait(10)
  2415. lb:Destroy()
  2416. end
  2417.  
  2418. function attackfour()
  2419. attack = true
  2420. for i = 0,2,0.1 do
  2421. swait()
  2422. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(80)),.3)
  2423. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  2424. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2425. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2426. end
  2427. so("http://roblox.com/asset/?id=199145204",barrelhole,1,1)
  2428. local con = barrel2.Touched:connect(function(hit) Damagefunc(hit,8,10,math.random(10,20),"Normal",RootPart,.2,1) end)
  2429. for i = 0,1,0.1 do
  2430. swait()
  2431. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2432. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2433. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2434. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-90)), 0.3)
  2435. end
  2436. con:disconnect()
  2437. so("http://roblox.com/asset/?id=604905243",barrelhole,1.25,0.9)
  2438. local b = Instance.new("Part")
  2439. b.Parent = char
  2440. b.Material = "Neon"
  2441. b.Color = BrickColor.new("Royal purple").Color
  2442. b.CanCollide = false
  2443. b.Shape = "Ball"
  2444. b.CFrame = barrelhole.CFrame
  2445. b.Anchored = true
  2446. b.Transparency = 0
  2447. b.Size = vt(5,5,5)
  2448. local z = Instance.new("SpecialMesh",b)
  2449. z.MeshType = "Sphere"
  2450. z.Scale = vt(0.25,0.25,0.25)
  2451. local bv = Instance.new("BodyVelocity")
  2452. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  2453. bv.velocity = mouse.Hit.lookVector *150
  2454. bv.Parent = lb
  2455. b.Touched:connect(function(hit) Damagefunc(hit,9,11,math.random(10,20),"Normal",RootPart,.2,1) end)
  2456. for i = 0,2,0.1 do
  2457. swait()
  2458. z.Scale = z.Scale + vt(0.15,0.15,0.15)
  2459. b.Transparency = b.Transparency + 0.05
  2460. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  2461. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  2462. RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(25)), 0.3)
  2463. LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(170), math.rad(0), math.rad(-50)), 0.3)
  2464. end
  2465. attack = false
  2466. b:Destroy()
  2467. end
  2468.  
  2469. idleanim=.4
  2470. Humanoid.Animator.Parent = nil
  2471. while true do
  2472. swait()
  2473. sine = sine + change
  2474. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  2475. local velderp=RootPart.Velocity.y
  2476. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  2477. if equipped==true or equipped==false then
  2478. if attack==false then
  2479. idle=idle+1
  2480. else
  2481. idle=0
  2482. end
  2483. if idle>=500 then
  2484. if attack==false then
  2485. --Sheath()
  2486. end
  2487. end
  2488. if RootPart.Velocity.y > 1 and hitfloor==nil then
  2489. Anim="Jump"
  2490. if attack==false then
  2491. Neck.C0=clerp(Neck.C0,necko*euler(-0.2,0,0),.3)
  2492. Neck.C1=clerp(Neck.C1,necko2*euler(0,0,0),.3)
  2493. RootJoint.C0=clerp(RootJoint.C0,RootCF*euler(0,0,0),.3)
  2494. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(-.5,0,0.5)*angles(math.rad(-25),math.rad(105),math.rad(0)),.3)
  2495. RW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3)
  2496. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(-.5,0,-0.5),.3)
  2497. LW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3)
  2498. RH.C0=clerp(RH.C0,cf(1,-1,-.3)*euler(-0.5,1.57,0)*euler(-.2,0,0),.2)
  2499. LH.C0=clerp(LH.C0,cf(-1,-1,-.3)*euler(-0.5,-1.57,0)*euler(-.2,0,0),.2)
  2500. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2501. end
  2502. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  2503. Anim="Fall"
  2504. if attack==false then
  2505. Neck.C0=clerp(Neck.C0,necko*euler(0.4,0,0),.3)
  2506. Neck.C1=clerp(Neck.C1,necko2*euler(0,0,0),.3)
  2507. RootJoint.C0=clerp(RootJoint.C0,RootCF*euler(0,0,0),.3)
  2508. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(0.3,0,0.2)*angles(math.rad(-25),math.rad(115),math.rad(0)),.3)
  2509. RW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3)
  2510. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(0.3,0,-0.2),.3)
  2511. LW.C1=clerp(LW.C1,cf(0,0.5,0)*euler(0,0,0),.3)
  2512. RH.C0=clerp(RH.C0,cf(1,-1,0)*euler(0.4,1.57,0),.2)
  2513. LH.C0=clerp(LH.C0,cf(-1,-1,0)*euler(-0.2,-1.57,0),.2)
  2514. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2515. end
  2516. elseif torvel<1 and hitfloor~=nil then
  2517. Anim="Idle"
  2518. RH.C0=clerp(RH.C0,cf(1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2519. LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2520. if attack==false then
  2521. if gunmode == true then
  2522. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  2523. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(60)),.3)
  2524. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-35),math.rad(90),math.rad(0))*angles(math.rad(-25 + 5 * math.cos(sine / 32)),math.rad(15),math.rad(0)),.3)
  2525. LW.C0=clerp(LW.C0,cf(-1.35,0.5,0)*angles(math.rad(180),math.rad(30),math.rad(-90)),.3)
  2526. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2527. elseif gunmode == false then
  2528. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))*angles(math.rad(0),math.rad(0),math.rad(-35)),.3)
  2529. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(35)),.3)
  2530. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-35),math.rad(90),math.rad(0))*angles(math.rad(-25 + 5 * math.cos(sine / 32)),math.rad(15),math.rad(0)),.3)
  2531. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-25 + 2.5 * math.cos(sine / 32))),.3)
  2532. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2533. end
  2534. end
  2535. elseif torvel>2 and torvel<22 and hitfloor~=nil then
  2536. Anim="Walk"
  2537. RH.C0=clerp(RH.C0,cf(1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 50 * math.cos(sine / 6))),.3)
  2538. LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 50 * math.cos(sine / 6))),.3)
  2539. if attack==false then
  2540. if gunmode == false then
  2541. --RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2542. --Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2543. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))* angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  2544. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  2545. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-55),math.rad(90),math.rad(0))*angles(math.rad(-15),math.rad(0),math.rad(0)),.3)
  2546. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-15),math.rad(0),math.rad(-25)),.3)
  2547. --RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
  2548. --LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
  2549. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2550. elseif gunmode == true then
  2551. --RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2552. --Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2553. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 32))* angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  2554. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  2555. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-55),math.rad(90),math.rad(0))*angles(math.rad(-15),math.rad(0),math.rad(0)),.3)
  2556. LW.C0=clerp(LW.C0,cf(-1.5,0.45,0)*angles(math.rad(55),math.rad(0),math.rad(25)),.3)
  2557. --RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
  2558. --LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
  2559. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2560. end
  2561. end
  2562. elseif torvel>=22 and hitfloor~=nil then
  2563. Anim="Run"
  2564. RH.C0=clerp(RH.C0,cf(1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 75 * math.cos(sine / 3))),.3)
  2565. LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 32),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 75 * math.cos(sine / 3))),.3)
  2566. if attack==false then
  2567. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-0.25 + 0.05 * math.cos(sine / 32))* angles(math.rad(35),math.rad(0),math.rad(0)),.3)
  2568. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
  2569. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-50),math.rad(-60),math.rad(25)),.3)
  2570. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-50),math.rad(0),math.rad(-25)),.3)
  2571. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  2572. end
  2573. end
  2574. end
  2575. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement