Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 267.98 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165. --By Ruffles14
  166. mouse = game.Players.LocalPlayer:GetMouse()
  167. local rhandclone = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  168. local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  169. rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  170. rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  171. rhandweld.C0 = CFrame.new(1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  172. local lhandclone = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  173. local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  174. lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
  175. lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  176. lhandweld.C0 = CFrame.new(-1.5, 0, 0, 1, -1.6395192e-43, 0, -1.6395192e-43, 1, 0, 0, 0, 1)
  177. local rootjointclone = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  178. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Remove()
  179. local humanoidrootpart = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  180. humanoidrootpart.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  181. humanoidrootpart.Part1 = game.Players.LocalPlayer.Character.Torso
  182. local heed = game.Players.LocalPlayer.Character.Torso["Neck"]:Clone()
  183. local headweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  184. headweld.Part0 = game.Players.LocalPlayer.Character.Torso
  185. headweld.Part1 = game.Players.LocalPlayer.Character.Head
  186. headweld.C0 = headweld.C0 * CFrame.new(0,1.5,0)
  187. game.Players.LocalPlayer.Character.Torso.Neck:Remove()
  188. using = false
  189. --Converted with ttyyuu12345's model to script plugin v4
  190. function sandbox(var,func)
  191. local env = getfenv(func)
  192. local newenv = setmetatable({},{
  193. __index = function(self,k)
  194. if k=="script" then
  195. return var
  196. else
  197. return env[k]
  198. end
  199. end,
  200. })
  201. setfenv(func,newenv)
  202. return func
  203. end
  204. cors = {}
  205. mas = Instance.new("Model",game:GetService("Lighting"))
  206. Part0 = Instance.new("Part")
  207. SpecialMesh1 = Instance.new("SpecialMesh")
  208. Part0.Parent = mas
  209. Part0.Rotation = Vector3.new(-17.039999, 72.0800018, -73.7399979)
  210. Part0.Size = Vector3.new(0.48999998, 2.96999931, 1.94999981)
  211. Part0.CFrame = CFrame.new(1.99671245, 4.08856773, -0.616976917, 0.0861581191, 0.29545939, 0.95146209, -0.99592489, 0, 0.090184398, 0.0266458243, -0.955355108, 0.294255406)
  212. Part0.BottomSurface = Enum.SurfaceType.Smooth
  213. Part0.TopSurface = Enum.SurfaceType.Smooth
  214. Part0.Position = Vector3.new(1.99671245, 4.08856773, -0.616976917)
  215. Part0.Orientation = Vector3.new(-5.17000008, 72.8099976, -90)
  216. Part0.CanCollide = false
  217. SpecialMesh1.Parent = Part0
  218. SpecialMesh1.MeshId = "rbxassetid://441572308"
  219. SpecialMesh1.Scale = Vector3.new(0.0209999997, 0.0209999997, 0.0209999997)
  220. SpecialMesh1.TextureId = "rbxassetid://441572332"
  221. SpecialMesh1.MeshType = Enum.MeshType.FileMesh
  222. SpecialMesh1.Scale = Vector3.new(0.0209999997, 0.0209999997, 0.0209999997)
  223. for i,v in pairs(mas:GetChildren()) do
  224. v.Parent = game:GetService("Players").LocalPlayer.Character
  225. pcall(function() v:MakeJoints() end)
  226. end
  227. mas:Destroy()
  228. for i,v in pairs(cors) do
  229. spawn(function()
  230. pcall(v)
  231. end)
  232. end
  233. Part0:BreakJoints()
  234. cananimate = true
  235. canhit = false
  236. local weld = Instance.new("Weld", game.Players.LocalPlayer.Character["Right Arm"])
  237. weld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  238. weld.Part1 = Part0
  239. weld.C0 = CFrame.new(0.0769970417, -1.17027426, -1.17937994, 0, 0, 1, -0.999999881, 0, 0, 0, -1, 0)
  240. for i = 0,1 , 0.03 do
  241. headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.962374032, 0, 0.271727562, 0, 1, 0, -0.271727562, 0, 0.962374032),i)
  242. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.955355227, 0, -0.295459419, 0, 1, 0, 0.295459419, 0, 0.955355227),i)
  243. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.53559077, 0.0383267403, 0, 0.997264206, 0.0739177391, 0, -0.0739177391, 0.997264266, 0, 2.98023224e-08, 1.86264515e-09, 0.999999881),i)
  244. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.54305458, 0.047129631, 2.98023224e-08, 0.99592495, -0.0901843905, 0, 0.090184398, 0.995925009, 0, 0, 0, 0.999999881),i)
  245. game:GetService("RunService").RenderStepped:wait()
  246. end
  247. function swing()
  248. if not using then
  249. using = true
  250. cananimate = false
  251. for i = 0,1 , 0.045 do
  252. weld.C0 = weld.C0:lerp(CFrame.new(0.958130836, -0.815908253, -0.0419664383, 0.379335552, 0.92491132, -0.0253674984, -0.913223445, 0.378668189, 0.150445476, 0.148754537, -0.0339030921, 0.988292694),i)
  253. headweld.C0 = headweld.C0:lerp(CFrame.new(-4.65661287e-10, 1.49999952, 0, 0.601507425, -2.32830644e-10, 0.798867226, 3.0559022e-10, 1, 0, -0.798867226, -4.65661287e-10, 0.601507425),i)
  254. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.63088727, -0.00573391188, -0.775853336, 0, 0.999972701, -0.00739025697, 0.775874496, 0.00466241874, 0.630870044),i)
  255. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(0.0363237262, 0.350219727, -1.1563791, 0.495106995, -0.857149601, 0.1419992, 0.110766649, -0.0998312235, -0.988819599, 0.861742377, 0.505300522, 0.0455164276),i)
  256. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.50056481, 0.516354084, -0.499166548, 0.995925009, -0.00520473719, 0.09003409, 0.0901844054, 0.0574772507, -0.994265079, -2.98023224e-08, 0.998333335, 0.057712432),i)
  257. game:GetService("RunService").RenderStepped:wait()
  258. end
  259. canhit = true
  260. for i = 0,1 , 0.08 do
  261. weld.C0 = weld.C0:lerp(CFrame.new(0.968596578, -1.15575922, 0.178524971, 0.0531506836, 0.988890588, -0.13881819, -0.988834679, 0.0327400565, -0.145376131, -0.13921617, 0.144995078, 0.979589343),i)
  262. headweld.C0 = headweld.C0:lerp(CFrame.new(-0.0249017328, 1.48724031, 2.04332173e-06, 0.499998868, 0, -0.866026163, 0, 1, 0, 0.866026163, 0, 0.499998868),i)
  263. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.305942208, 0, -0.952050149, 0, 1, 0, 0.952050149, 0, 0.305942208):inverse(),i)
  264. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.07653618, 0.305679321, -0.818206966, 0.707105398, -0.707108259, 4.32133675e-07, 0.122787982, 0.122786887, -0.984807909, 0.696365714, 0.696363032, 0.173647687),i)
  265. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(0.74788636, 0.363031864, -0.7663396, 0.70710665, 0.707106948, -2.23517418e-08, -0.0616280138, 0.061627958, -0.99619478, -0.704416275, 0.704416037, 0.0871551335),i)
  266. game:GetService("RunService").RenderStepped:wait()
  267. end
  268. canhit = false
  269. using = false
  270. cananimate = true
  271. end
  272. end
  273. mouse.Button1Down:connect(swing)
  274. function hittie(part)
  275. if canhit then
  276. local humanoid = part.Parent:findFirstChildOfClass("Humanoid")
  277. if humanoid then
  278. canhit = false
  279. using = false
  280. local uptor = humanoid.Parent:findFirstChild("UpperTorso")
  281. if uptor and uptor.Parent.Name ~= game.Players.LocalPlayer.Name then
  282. humanoid.Parent:BreakJoints()
  283. while humanoid.Health >= 0.001 do
  284. game:GetService("RunService").RenderStepped:wait()
  285. end
  286. if humanoid.Parent:findFirstChild("HumanoidRootPart") then
  287. humanoid.Parent.HumanoidRootPart.CanCollide = false
  288. end
  289. local function makeballlimb(attachone, attachtwo, upperang, lowang, twist)
  290. local constraint = Instance.new("BallSocketConstraint", humanoid.Parent)
  291. constraint.Attachment0 = attachone
  292. constraint.Attachment1 = attachtwo
  293. constraint.LimitsEnabled = true
  294. constraint.TwistLimitsEnabled = true
  295. constraint.TwistLowerAngle = lowang
  296. constraint.TwistUpperAngle = upperang
  297. constraint.UpperAngle = twist
  298. end
  299. local function makehingelimb(attachone, attachtwo, upperang, lowang)
  300. local constraint = Instance.new("HingeConstraint", humanoid.Parent)
  301. constraint.Attachment0 = attachone
  302. constraint.Attachment1 = attachtwo
  303. constraint.LimitsEnabled = true
  304. constraint.LowerAngle = lowang
  305. constraint.UpperAngle = upperang
  306. end
  307. for i,v in pairs(humanoid.Parent:GetChildren()) do --scan player
  308. if v.ClassName == "Accessory" then
  309. local findhandle = v:findFirstChild("Handle") --finding handle in accesorry
  310. if findhandle then
  311. local attach = findhandle:findFirstChildOfClass("Attachment")
  312. for q,w in pairs(humanoid.Parent:GetChildren()) do --scan player
  313. if w.Name == "UpperTorso" or w.Name == "Head" then
  314. attach1 = w:findFirstChild(attach.Name) --finding attachment in head/uppertorso
  315. end
  316. end
  317. if attach and attach1 then
  318. local constraint = Instance.new("HingeConstraint", humanoid.Parent) --making fake weld
  319. constraint.Attachment0 = attach
  320. constraint.Attachment1 = attach1
  321. constraint.LimitsEnabled = true
  322. constraint.LowerAngle = 0
  323. constraint.UpperAngle = 0
  324. end
  325. end
  326. end
  327. end
  328. if humanoid.Parent:findFirstChild("Head") and humanoid.Parent:findFirstChild("UpperTorso") then
  329. local attachment = Instance.new("Attachment", humanoid.Parent.Head)
  330. attachment.Position = Vector3.new(0, -0.5, 0)
  331. attachment.Name = "lol"
  332. attachment.Visible = false
  333. humanoid.Parent.UpperTorso.NeckAttachment.Visible = false
  334. humanoid.Parent.UpperTorso.NeckAttachment.Position = humanoid.Parent.UpperTorso.NeckAttachment.Position + Vector3.new(0,0,0)
  335. local ball = Instance.new("BallSocketConstraint", humanoid.Parent)
  336. ball.Attachment0 = humanoid.Parent.UpperTorso.NeckAttachment
  337. ball.Attachment1 = attachment
  338. ball.LimitsEnabled = true
  339. ball.TwistLimitsEnabled = true
  340. ball.UpperAngle = 40
  341. ball.Restitution = 0.5
  342. ball.TwistUpperAngle = 40
  343. ball.TwistLowerAngle = -40
  344. local collidepartofleftleg = Instance.new("Part", humanoid.Parent.UpperTorso)
  345. collidepartofleftleg.Name = "Bone"
  346. collidepartofleftleg.Size = Vector3.new(0.7,0.7,0.7)
  347. collidepartofleftleg.Transparency = 1
  348. collidepartofleftleg:BreakJoints()
  349. local weeld = Instance.new("Weld", collidepartofleftleg)
  350. weeld.Part0 = collidepartofleftleg
  351. weeld.Part1 = humanoid.Parent["Head"]
  352. if humanoid.Parent.Head:findFirstChild("Neck") then
  353. humanoid.Parent.Head.Neck:destroy()
  354. end
  355. if humanoid.Parent.Head:findFirstChild("face") then
  356. humanoid.Parent.Head.face.Texture = "http://www.roblox.com/asset/?id=810245460"
  357. end
  358. end
  359. local LeftUpperLeg = humanoid.Parent:findFirstChild("LeftUpperLeg")
  360. local LeftLowerLeg = humanoid.Parent:findFirstChild("LeftLowerLeg")
  361. --
  362. local RightUpperLeg = humanoid.Parent:findFirstChild("RightUpperLeg")
  363. local RightLowerLeg = humanoid.Parent:findFirstChild("RightLowerLeg")
  364. --
  365. local RightUpperArm = humanoid.Parent:findFirstChild("RightUpperArm")
  366. local RightLowerArm = humanoid.Parent:findFirstChild("RightLowerArm")
  367. --
  368. local LeftUpperArm = humanoid.Parent:findFirstChild("LeftUpperArm")
  369. local LeftLowerArm = humanoid.Parent:findFirstChild("LeftLowerArm")
  370. --Foot & Hands--
  371.  
  372. local LeftFoot = humanoid.Parent:findFirstChild("LeftFoot")
  373. local RightFoot = humanoid.Parent:findFirstChild("RightFoot")
  374. --
  375. local LeftHand = humanoid.Parent:findFirstChild("LeftHand")
  376. local RightHand = humanoid.Parent:findFirstChild("RightHand")
  377.  
  378. --END--
  379. --TORSOS--
  380.  
  381. local UpperTorso = humanoid.Parent:findFirstChild("UpperTorso")
  382. local LowerTorso = humanoid.Parent:findFirstChild("LowerTorso")
  383.  
  384. --END--
  385. if LowerTorso then
  386. if LeftUpperLeg then
  387. makeballlimb(LowerTorso["LeftHipRigAttachment"], LeftUpperLeg["LeftHipRigAttachment"], 50,-50, 90)
  388. end
  389. if RightUpperLeg then
  390. makeballlimb(LowerTorso["RightHipRigAttachment"], RightUpperLeg["RightHipRigAttachment"], 50,-50, 90)
  391. end
  392. if LeftLowerLeg then
  393. makehingelimb(LeftUpperLeg["LeftKneeRigAttachment"], LeftLowerLeg["LeftKneeRigAttachment"], 0,-90)
  394. end
  395. if RightLowerLeg then
  396. makehingelimb(RightUpperLeg["RightKneeRigAttachment"], RightLowerLeg["RightKneeRigAttachment"], 0,-90)
  397. end
  398. if LeftFoot then
  399. makehingelimb(LeftLowerLeg["LeftAnkleRigAttachment"], LeftFoot["LeftAnkleRigAttachment"], 30, -30)
  400. end
  401. if RightFoot then
  402. makehingelimb(RightLowerLeg["RightAnkleRigAttachment"], RightFoot["RightAnkleRigAttachment"], 30, -30)
  403. end
  404. if UpperTorso then
  405. makehingelimb(UpperTorso["WaistRigAttachment"], LowerTorso["WaistRigAttachment"], 30, -30)
  406. end
  407. end
  408. if UpperTorso then
  409. local vel = Instance.new("BodyVelocity", UpperTorso)
  410. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  411. vel.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 10
  412. game.Debris:AddItem(vel, 0.1)
  413. local hitsound = Instance.new("Sound", UpperTorso)
  414. hitsound.SoundId = "http://www.roblox.com/asset/?id=148862502"
  415. hitsound:Play()
  416. hitsound.Volume = math.random(5,10)
  417. local canhit = true
  418. local hitval = 15
  419. local uptor = humanoid.Parent.UpperTorso
  420. if RightUpperArm then
  421. makeballlimb(RightUpperArm["RightShoulderRigAttachment"], UpperTorso["RightShoulderRigAttachment"], 90,-50, 180)
  422. end
  423. if RightLowerArm then
  424. makehingelimb(RightLowerArm["RightElbowRigAttachment"], RightUpperArm["RightElbowRigAttachment"], 0,-90)
  425. end
  426. if RightHand then
  427. makehingelimb(RightHand["RightWristRigAttachment"], RightLowerArm["RightWristRigAttachment"], 30,30)
  428. end
  429. if LeftUpperArm then
  430. makeballlimb(LeftUpperArm["LeftShoulderRigAttachment"], UpperTorso["LeftShoulderRigAttachment"], 90,-50, 180)
  431. end
  432. if LeftLowerArm then
  433. makehingelimb(LeftLowerArm["LeftElbowRigAttachment"], LeftUpperArm["LeftElbowRigAttachment"], 0,-90)
  434. end
  435. if LeftHand then
  436. makehingelimb(LeftHand["LeftWristRigAttachment"], LeftLowerArm["LeftWristRigAttachment"], 30,30)
  437. end
  438. end
  439. else
  440. humanoid.Parent.Archivable = true
  441. humanoid.PlatformStand = true
  442. local clone = humanoid.Parent:Clone()
  443. clone.Parent = workspace
  444. game.Debris:AddItem(clone, 60)
  445. for i,v in pairs(clone:GetChildren()) do
  446. if v.ClassName == "Script" or v.ClassName == "LocalScript" then
  447. v:Remove()
  448. end
  449. for i,p in pairs(v:GetChildren()) do
  450. if p.ClassName == "Weld" or p.ClassName == "Motor6D" or p.ClassName == "BodyVelocity" then
  451. p:Remove()
  452. end
  453. end
  454. end
  455. for i,t in pairs(humanoid.Parent:GetChildren()) do
  456. if t.ClassName == "Accessory" or t.ClassName == "ForceField" then
  457. t:Remove()
  458. end
  459. end
  460. local vel = Instance.new("BodyVelocity", clone.Torso)
  461. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  462. vel.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 15
  463. game.Debris:AddItem(vel, 0.1)
  464. local hitsound = Instance.new("Sound", clone.Torso)
  465. hitsound.SoundId = "http://www.roblox.com/asset/?id=148862502"
  466. hitsound:Play()
  467. hitsound.Volume = math.random(5,10)
  468. vel = Instance.new("BodyVelocity", clone.Torso)
  469. vel.Velocity = clone.Torso.CFrame.lookVector * -5
  470. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  471. using = false
  472. hit = Instance.new("Sound", clone.Torso)
  473. hit.SoundId = "rbxassetid://260430060"
  474. hit.Volume = 0
  475. hit1 = Instance.new("Sound", clone.Torso)
  476. hit1.SoundId = "rbxassetid://138087186"
  477. hit1.Volume = 0
  478. hit2 = Instance.new("Sound", clone.Torso)
  479. hit2.SoundId = "rbxassetid://131237241"
  480. hit2.Volume = 0
  481. hit3 = Instance.new("Sound", clone.Torso)
  482. hit3.SoundId = "rbxassetid://278062209"
  483. hit3.Volume = 0
  484. hit3.TimePosition = 0.33
  485. ded = Instance.new("Sound", clone.Torso)
  486. ded.SoundId = "rbxassetid://418892870"
  487. ded.Volume = 0
  488. local leftarm = clone:findFirstChild("Left Arm")
  489. local rightrm = clone:findFirstChild("Right Arm")
  490. local leftleg = clone:findFirstChild("Left Leg")
  491. local rightleg = clone:findFirstChild("Right Leg")
  492. local head = clone:findFirstChild("Head")
  493. for i, g in pairs(humanoid.Parent:GetChildren()) do
  494. if g.ClassName == "Part" then
  495. g:destroy()
  496. end
  497. end
  498. for i, h in pairs(humanoid.Parent:GetChildren()) do
  499. if h.ClassName == "Accesory" then
  500. h:destroy()
  501. end
  502. end
  503. for z,x in pairs(clone:GetChildren()) do
  504. if x.ClassName == "Accessory" then
  505. local handle = x:findFirstChild("Handle")
  506. if handle then
  507. local attachment = handle:findFirstChildOfClass("Attachment")
  508. if attachment then
  509. for q,w in pairs(clone:GetChildren()) do
  510. if w.Name == "Torso" or w.Name == "Head" then
  511. local anotherone = w:findFirstChild(attachment.Name)
  512. if attachment and anotherone then
  513. local constraint = Instance.new("HingeConstraint", clone) --making fake weld
  514. constraint.Attachment0 = attachment
  515. constraint.Attachment1 = anotherone
  516. constraint.LimitsEnabled = true
  517. constraint.LowerAngle = 0
  518. constraint.UpperAngle = 0
  519. end
  520. end
  521. end
  522. end
  523. end
  524. end
  525. end
  526. if head and clone.Torso:findFirstChild("NeckAttachment") then
  527. local attachment = Instance.new("Attachment", clone.Head)
  528. attachment.Position = Vector3.new(0, -0.5, 0)
  529. attachment.Name = "lol"
  530. attachment.Visible = false
  531. clone.Torso.NeckAttachment.Visible = false
  532. clone.Torso.NeckAttachment.Position = clone.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
  533. local ball = Instance.new("BallSocketConstraint", clone)
  534. ball.Attachment0 = clone.Torso.NeckAttachment
  535. ball.Attachment1 = attachment
  536. ball.LimitsEnabled = true
  537. ball.TwistLimitsEnabled = true
  538. ball.UpperAngle = 90
  539. ball.Restitution = 0.5
  540. ball.TwistUpperAngle = 90
  541. ball.TwistLowerAngle = -90
  542. local collidepartofleftleg = Instance.new("Part", clone.Torso)
  543. collidepartofleftleg.Name = "Bone"
  544. collidepartofleftleg.Size = Vector3.new(0.7,0.7,0.7)
  545. collidepartofleftleg.Transparency = 1
  546. collidepartofleftleg:BreakJoints()
  547. local weeld = Instance.new("Weld", collidepartofleftleg)
  548. weeld.Part0 = collidepartofleftleg
  549. weeld.Part1 = clone["Head"]
  550. end
  551. if leftleg ~= nil then
  552. leftleg:BreakJoints()
  553. local glue = Instance.new("Glue", clone.Torso)
  554. glue.Part0 = clone.Torso
  555. glue.Part1 = leftleg
  556. glue.Name = "Left leg"
  557. local collider = Instance.new("Part", leftleg)
  558. collider.Position = Vector3.new(0,999,0)
  559. collider.Size = Vector3.new(1.5, 1, 1)
  560. collider.Shape = "Cylinder"
  561. local weld = Instance.new("Weld", collider)
  562. weld.Part0 = leftleg
  563. weld.Part1 = collider
  564. weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  565. collider.TopSurface = "Smooth"
  566. collider.BottomSurface = "Smooth"
  567. collider.formFactor = "Symmetric"
  568. glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  569. glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  570. collider.Transparency = 1
  571. end
  572. ------------
  573. if rightleg ~= nil then
  574. rightleg:BreakJoints()
  575. local glue1 = Instance.new("Glue", clone.Torso)
  576. glue1.Part0 = clone.Torso
  577. glue1.Part1 = rightleg
  578. glue1.Name = "Right leg"
  579. local collider1 = Instance.new("Part", rightleg)
  580. collider1.Position = Vector3.new(0,999,0)
  581. collider1.Size = Vector3.new(1.5, 1, 1)
  582. collider1.Shape = "Cylinder"
  583. local weld1 = Instance.new("Weld", collider1)
  584. weld1.Part0 = rightleg
  585. weld1.Part1 = collider1
  586. weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  587. collider1.TopSurface = "Smooth"
  588. collider1.BottomSurface = "Smooth"
  589. collider1.formFactor = "Symmetric"
  590. glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  591. glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  592. collider1.Transparency = 1
  593. end
  594. ------------
  595. if rightrm ~= nil then
  596. rightrm:BreakJoints()
  597. rightrm.CFrame = clone.Torso.CFrame * CFrame.new(1.7,0,0)
  598. local glue11 = Instance.new("Glue", clone.Torso)
  599. glue11.Part0 = clone.Torso
  600. glue11.Part1 = rightrm
  601. glue11.Name = "Right shoulder"
  602. local collider11 = Instance.new("Part", rightrm)
  603. collider11.Position = Vector3.new(0,9999,0)
  604. collider11.Size = Vector3.new(1.5,1,1)
  605. collider11.Shape = "Cylinder"
  606. local weld11 = Instance.new("Weld", collider11)
  607. weld11.Part0 = rightrm
  608. weld11.Part1 = collider11
  609. weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  610. collider11.TopSurface = "Smooth"
  611. collider11.BottomSurface = "Smooth"
  612. collider11.formFactor = "Symmetric"
  613. glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  614. glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  615. collider11.Transparency = 1
  616. end
  617. ------------
  618. if leftarm ~= nil then
  619. leftarm.CFrame = clone.Torso.CFrame * CFrame.new(-1.7,0,0)
  620. leftarm:BreakJoints()
  621. local glue111 = Instance.new("Glue", clone.Torso)
  622. glue111.Part0 = clone.Torso
  623. glue111.Part1 = leftarm
  624. glue111.Name = "Left shoulder"
  625. local collider111 = Instance.new("Part", leftarm)
  626. collider111.Position = Vector3.new(0,9999,0)
  627. collider111.Size = Vector3.new(1.5,1,1)
  628. collider111.Shape = "Cylinder"
  629. local weld111 = Instance.new("Weld", collider111)
  630. weld111.Part0 = leftarm
  631. weld111.Part1 = collider111
  632. weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  633. collider111.TopSurface = "Smooth"
  634. collider111.BottomSurface = "Smooth"
  635. collider111.formFactor = "Symmetric"
  636. glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  637. glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  638. collider111.Transparency = 1
  639. ----------------
  640. sensoring = Instance.new("Part", clone.Torso)
  641. sensoring.Size = Vector3.new(1.2,1.1,0.8)
  642. sensoring.CanCollide = false
  643. sensoring.Position = clone.Torso.Position
  644. local welder = Instance.new("Weld", sensoring)
  645. welder.Part0 = clone.Torso
  646. welder.Part1 = sensoring
  647. welder.C0 = welder.C0 * CFrame.new(0,0,1.05)
  648. sensoring.Transparency = 1
  649. -----------------
  650. sensoring1 = Instance.new("Part", clone.Torso)
  651. sensoring1.Size = Vector3.new(1.2,1.1,0.8)
  652. sensoring1.CanCollide = false
  653. sensoring1.Position = clone.Torso.Position
  654. local welder1 = Instance.new("Weld", sensoring)
  655. welder1.Part0 = clone.Torso
  656. welder1.Part1 = sensoring1
  657. welder1.C0 = welder1.C0 * CFrame.new(0,0,-1.05)
  658. sensoring1.Transparency = 1
  659. end
  660. clone.Name = humanoid.Parent.Name.." (PANNED)"
  661. ded:Play()
  662. vel:destroy()
  663. wait(0.5)
  664. local function touch()
  665. if not using then
  666. using = true
  667. local Math = math.random(1,4)
  668. if Math == 1 then
  669. hit:Play()
  670. end
  671. if Math == 2 then
  672. hit1:Play()
  673. end
  674. if Math == 3 then
  675. hit2:Play()
  676. end
  677. if Math == 4 then
  678. hit3:Play()
  679. end
  680. wait(0.1)
  681. using = false
  682. end
  683. end
  684. sensoring.Touched:connect(touch)
  685. sensoring1.Touched:connect(touch)
  686. while true do
  687. if clone:findFirstChild("Head") then
  688. clone.Head.CanCollide = false
  689. end
  690. game:GetService("RunService").Stepped:wait()
  691. end
  692. end
  693. end
  694. end
  695. end
  696. Part0.Touched:connect(hittie)
  697. function ragdoll()
  698. game.Players.LocalPlayer.Character.Archivable = true
  699. clone = game.Players.LocalPlayer.Character:Clone()
  700. clone.Parent = workspace
  701. for i,v in pairs(clone:GetChildren()) do
  702. if v.ClassName == "Script" or v.ClassName == "LocalScript" then
  703. v:Remove()
  704. end
  705. for i,p in pairs(v:GetChildren()) do
  706. if p.ClassName == "Weld" or p.ClassName == "Motor6D" or p.ClassName == "BodyVelocity" then
  707. p:Remove()
  708. end
  709. end
  710. end
  711. for i,t in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  712. if t.ClassName == "Accessory" or t.ClassName == "ForceField" then
  713. t:Remove()
  714. end
  715. end
  716. vel = Instance.new("BodyVelocity", clone.Torso)
  717. vel.Velocity = clone.Torso.CFrame.lookVector * -5
  718. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  719. clone.Head.face.Texture = "http://www.roblox.com/asset/?id=161061608"
  720. using = false
  721. hit = Instance.new("Sound", clone.Torso)
  722. hit.SoundId = "rbxassetid://260430060"
  723. hit.Volume = 0
  724. hit1 = Instance.new("Sound", clone.Torso)
  725. hit1.SoundId = "rbxassetid://138087186"
  726. hit1.Volume = 0
  727. hit2 = Instance.new("Sound", clone.Torso)
  728. hit2.SoundId = "rbxassetid://131237241"
  729. hit2.Volume = 0
  730. hit3 = Instance.new("Sound", clone.Torso)
  731. hit3.SoundId = "rbxassetid://278062209"
  732. hit3.Volume = 0
  733. hit3.TimePosition = 0.33
  734. ded = Instance.new("Sound", clone.Torso)
  735. ded.SoundId = "rbxassetid://337800380"
  736. ded.Volume = 5
  737. local leftarm = clone:findFirstChild("Left Arm")
  738. local rightrm = clone:findFirstChild("Right Arm")
  739. local leftleg = clone:findFirstChild("Left Leg")
  740. local rightleg = clone:findFirstChild("Right Leg")
  741. local head = clone:findFirstChild("Head")
  742. for i, g in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  743. if g.ClassName == "Part" then
  744. g:destroy()
  745. end
  746. end
  747. for i, h in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  748. if h.ClassName == "Accesory" then
  749. h:destroy()
  750. end
  751. end
  752. game.Workspace.CurrentCamera.CameraSubject = head
  753. if head then
  754. local attachment = Instance.new("Attachment", clone.Head)
  755. attachment.Position = Vector3.new(0, -0.5, 0)
  756. attachment.Name = "lol"
  757. attachment.Visible = false
  758. clone.Torso.NeckAttachment.Visible = false
  759. clone.Torso.NeckAttachment.Position = clone.Torso.NeckAttachment.Position + Vector3.new(0,0,0)
  760. local ball = Instance.new("BallSocketConstraint", clone)
  761. ball.Attachment0 = clone.Torso.NeckAttachment
  762. ball.Attachment1 = attachment
  763. ball.LimitsEnabled = true
  764. ball.TwistLimitsEnabled = true
  765. ball.UpperAngle = 90
  766. ball.Restitution = 0.5
  767. ball.TwistUpperAngle = 90
  768. ball.TwistLowerAngle = -90
  769. local collidepartofleftleg = Instance.new("Part", clone.Torso)
  770. collidepartofleftleg.Name = "Bone"
  771. collidepartofleftleg.Size = Vector3.new(0.7,0.7,0.7)
  772. collidepartofleftleg.Transparency = 1
  773. collidepartofleftleg:BreakJoints()
  774. local weeld = Instance.new("Weld", collidepartofleftleg)
  775. weeld.Part0 = collidepartofleftleg
  776. weeld.Part1 = clone["Head"]
  777. end
  778. if leftleg ~= nil then
  779. local glue = Instance.new("Glue", clone.Torso)
  780. glue.Part0 = clone.Torso
  781. glue.Part1 = leftleg
  782. glue.Name = "Left leg"
  783. local collider = Instance.new("Part", leftleg)
  784. collider.Position = Vector3.new(0,999,0)
  785. collider.Size = Vector3.new(1.5, 1, 1)
  786. collider.Shape = "Cylinder"
  787. local weld = Instance.new("Weld", collider)
  788. weld.Part0 = leftleg
  789. weld.Part1 = collider
  790. weld.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  791. collider.TopSurface = "Smooth"
  792. collider.BottomSurface = "Smooth"
  793. collider.formFactor = "Symmetric"
  794. glue.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  795. glue.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  796. collider.Transparency = 1
  797. end
  798. ------------
  799. if rightleg ~= nil then
  800. local glue1 = Instance.new("Glue", clone.Torso)
  801. glue1.Part0 = clone.Torso
  802. glue1.Part1 = rightleg
  803. glue1.Name = "Right leg"
  804. local collider1 = Instance.new("Part", rightleg)
  805. collider1.Position = Vector3.new(0,999,0)
  806. collider1.Size = Vector3.new(1.5, 1, 1)
  807. collider1.Shape = "Cylinder"
  808. local weld1 = Instance.new("Weld", collider1)
  809. weld1.Part0 = rightleg
  810. weld1.Part1 = collider1
  811. weld1.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  812. collider1.TopSurface = "Smooth"
  813. collider1.BottomSurface = "Smooth"
  814. collider1.formFactor = "Symmetric"
  815. glue1.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  816. glue1.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  817. collider1.Transparency = 1
  818. end
  819. ------------
  820. if rightrm ~= nil then
  821. local glue11 = Instance.new("Glue", clone.Torso)
  822. glue11.Part0 = clone.Torso
  823. glue11.Part1 = rightrm
  824. glue11.Name = "Right shoulder"
  825. local collider11 = Instance.new("Part", rightrm)
  826. collider11.Position = Vector3.new(0,9999,0)
  827. collider11.Size = Vector3.new(1.5,1,1)
  828. collider11.Shape = "Cylinder"
  829. local weld11 = Instance.new("Weld", collider11)
  830. weld11.Part0 = rightrm
  831. weld11.Part1 = collider11
  832. weld11.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  833. collider11.TopSurface = "Smooth"
  834. collider11.BottomSurface = "Smooth"
  835. collider11.formFactor = "Symmetric"
  836. glue11.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  837. glue11.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  838. collider11.Transparency = 1
  839. end
  840. ------------
  841. if leftarm ~= nil then
  842. local glue111 = Instance.new("Glue", clone.Torso)
  843. glue111.Part0 = clone.Torso
  844. glue111.Part1 = leftarm
  845. glue111.Name = "Left shoulder"
  846. local collider111 = Instance.new("Part", leftarm)
  847. collider111.Position = Vector3.new(0,9999,0)
  848. collider111.Size = Vector3.new(1.5,1,1)
  849. collider111.Shape = "Cylinder"
  850. local weld111 = Instance.new("Weld", collider111)
  851. weld111.Part0 = leftarm
  852. weld111.Part1 = collider111
  853. weld111.C0 = CFrame.new(0,-0.2,0) * CFrame.fromEulerAnglesXYZ(0, 0, math.pi/2)
  854. collider111.TopSurface = "Smooth"
  855. collider111.BottomSurface = "Smooth"
  856. collider111.formFactor = "Symmetric"
  857. glue111.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  858. glue111.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  859. collider111.Transparency = 1
  860. ----------------
  861. sensoring = Instance.new("Part", clone.Torso)
  862. sensoring.Size = Vector3.new(1.2,1.1,0.8)
  863. sensoring.CanCollide = false
  864. sensoring.Position = clone.Torso.Position
  865. local welder = Instance.new("Weld", sensoring)
  866. welder.Part0 = clone.Torso
  867. welder.Part1 = sensoring
  868. welder.C0 = welder.C0 * CFrame.new(0,0,1.05)
  869. sensoring.Transparency = 1
  870. -----------------
  871. sensoring1 = Instance.new("Part", clone.Torso)
  872. sensoring1.Size = Vector3.new(1.2,1.1,0.8)
  873. sensoring1.CanCollide = false
  874. sensoring1.Position = clone.Torso.Position
  875. local welder1 = Instance.new("Weld", sensoring)
  876. welder1.Part0 = clone.Torso
  877. welder1.Part1 = sensoring1
  878. welder1.C0 = welder1.C0 * CFrame.new(0,0,-1.05)
  879. sensoring1.Transparency = 1
  880. end
  881. clone.Name = game.Players.LocalPlayer.Character.Name.." (DEAD)"
  882. ded:Play()
  883. vel:destroy()
  884. wait(0.2)
  885. game.Debris:AddItem(clone,60)
  886. local function touch()
  887. if not using then
  888. using = true
  889. local Math = math.random(1,4)
  890. if Math == 1 then
  891. hit:Play()
  892. end
  893. if Math == 2 then
  894. hit1:Play()
  895. end
  896. if Math == 3 then
  897. hit2:Play()
  898. end
  899. if Math == 4 then
  900. hit3:Play()
  901. end
  902. wait(0.1)
  903. using = false
  904. end
  905. end
  906. sensoring.Touched:connect(touch)
  907. sensoring1.Touched:connect(touch)
  908. while true do
  909. clone.Head.CanCollide = false
  910. game:GetService("RunService").Stepped:wait()
  911. end
  912. end
  913.  
  914. game.Players.LocalPlayer.Character.Humanoid.Died:connect(ragdoll)
  915.  
  916. --di ent
  917. while true do
  918. if cananimate then
  919. if game.Players.LocalPlayer.Character.Torso.Velocity.x < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.x > 0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z > 0.5 and cananimate then
  920. for i = 0.1,0.3 , 0.008 do
  921. if cananimate and game.Players.LocalPlayer.Character.Torso.Velocity.x < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.x > 0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z > 0.5 and cananimate then
  922. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.53402293, 0.0594797134, 0.144087285, 0.997264206, 0.0707819909, 0.0213012099, -0.0739177391, 0.9549582, 0.287386209, 2.98023224e-08, -0.28817457, 0.957577825),i)
  923. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.54035091, 0.0769848824, -0.170524538, 0.99592495, -0.0847774297, 0.0307573378, 0.090184398, 0.936214805, -0.339659303, 0, 0.341049016, 0.940045416),i)
  924. game:GetService("RunService").Stepped:wait()
  925. end
  926. end
  927. for i = 0.1,0.3 , 0.008 do
  928. if cananimate and game.Players.LocalPlayer.Character.Torso.Velocity.x < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.x > 0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z < -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z > 0.5 and cananimate then
  929. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.53173375, 0.0903658867, -0.222393572, 0.997264206, 0.0662034005, -0.0328776538, -0.0739177391, 0.893185973, -0.443570435, 2.98023224e-08, 0.444787204, 0.895636141),i)
  930. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.54079688, 0.0720610619, 0.156226337, 0.99592495, -0.085669145, -0.0281783342, 0.090184398, 0.946062148, 0.311179608, 0, -0.312452823, 0.949932992),i)
  931. game:GetService("RunService").Stepped:wait()
  932. end
  933. end
  934. elseif game.Players.LocalPlayer.Character.Torso.Velocity.x > -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.x < 0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z > -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z < 0.5 then
  935. for i = 0,1 , 0.1 do
  936. if cananimate and game.Players.LocalPlayer.Character.Torso.Velocity.x > -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.x < 0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z > -0.5 or game.Players.LocalPlayer.Character.Torso.Velocity.z < 0.5 and cananimate then
  937. weld.C0 = weld.C0:lerp(CFrame.new(0.0769970417, -1.17027426, -1.17937994, 0, 0, 1, -0.999999881, 0, 0, 0, -1, 0),i)
  938. headweld.C0 = headweld.C0:lerp(CFrame.new(0, 1.5, 0, 0.962374032, 0, 0.271727562, 0, 1, 0, -0.271727562, 0, 0.962374032),i)
  939. humanoidrootpart.C0 = humanoidrootpart.C0:lerp(CFrame.new(0, 0, 0, 0.955355227, 0, -0.295459419, 0, 1, 0, 0.295459419, 0, 0.955355227),i)
  940. lhandweld.C0 = lhandweld.C0:lerp(CFrame.new(-1.53559077, 0.0383267403, 0, 0.997264206, 0.0739177391, 0, -0.0739177391, 0.997264266, 0, 2.98023224e-08, 1.86264515e-09, 0.999999881),i)
  941. rhandweld.C0 = rhandweld.C0:lerp(CFrame.new(1.54305458, 0.047129631, 2.98023224e-08, 0.99592495, -0.0901843905, 0, 0.090184398, 0.995925009, 0, 0, 0, 0.999999881),i)
  942. game:GetService("RunService").RenderStepped:wait()
  943. end
  944. end
  945. end
  946. end
  947. wait()
  948. end
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964. -- params : ...
  965.  
  966. wait(0.016666666666667)
  967. script.Name = "Chaos"
  968. local Player = game.Players.LocalPlayer
  969. repeat
  970. wait()
  971. until Player
  972. local Character = Player.Character
  973. repeat
  974. wait()
  975. until Character
  976. local Effects = {}
  977. local Humanoid = Character.Humanoid
  978. local mouse = Player:GetMouse()
  979. local m = Instance.new("Model", Character)
  980. m.Name = "WeaponModel"
  981. local sp = Instance.new("Model", Character)
  982. sp.Name = "WeaponModel"
  983. local LeftArm = Character["Left Arm"]
  984. local RightArm = Character["Right Arm"]
  985. local LeftLeg = Character["Left Leg"]
  986. local RightLeg = Character["Right Leg"]
  987. local Head = Character.Head
  988. local Torso = Character.Torso
  989. local cam = game.Workspace.CurrentCamera
  990. local RootPart = Character.HumanoidRootPart
  991. local spartan = false
  992. local RootJoint = RootPart.RootJoint
  993. local equipped = false
  994. local attack = false
  995. local Anim = "Idle"
  996. local idle = 0
  997. local attacktype = 1
  998. local Torsovelocity = RootPart.Velocity * Vector3.new(1, 0, 1).magnitude
  999. local velocity = RootPart.Velocity.y
  1000. local sine = 0
  1001. local change = 1
  1002. local grabbed = false
  1003. local cn = CFrame.new
  1004. local mr = math.rad
  1005. local angles = CFrame.Angles
  1006. local ud = UDim2.new
  1007. local c3 = Color3.new
  1008. local trigger = false
  1009. Humanoid.Animator.Parent = nil
  1010. Character.Animate.Parent = nil
  1011. local coo1 = false
  1012. local coo2 = false
  1013. local newMotor = function(part0, part1, c0, c1)
  1014.  
  1015. local w = Instance.new("Motor", part0)
  1016. w.Part0 = part0
  1017. w.Part1 = part1
  1018. w.C0 = c0
  1019. w.C1 = c1
  1020. return w
  1021. end
  1022.  
  1023. clerp = function(a, b, t)
  1024.  
  1025. return a:lerp(b, t)
  1026. end
  1027.  
  1028. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  1029. NeckCF = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1030. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  1031. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  1032. local RH = newMotor(Torso, RightLeg, CFrame.new(0.5, -2, 0), CFrame.new(0, 0, 0))
  1033. local LH = newMotor(Torso, LeftLeg, CFrame.new(-0.5, -2, 0), CFrame.new(0, 0, 0))
  1034. RootJoint.C1 = CFrame.new(0, 0, 0)
  1035. RootJoint.C0 = CFrame.new(0, 0, 0)
  1036. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  1037. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  1038. local rarmc1 = RW.C1
  1039. local larmc1 = LW.C1
  1040. local rlegc1 = RH.C1
  1041. local llegc1 = LH.C1
  1042. local resetc1 = false
  1043. PlayAnimationFromTable = function(table, speed, bool)
  1044.  
  1045. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  1046. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  1047. RW.C0 = clerp(RW.C0, table[3], speed)
  1048. LW.C0 = clerp(LW.C0, table[4], speed)
  1049. RH.C0 = clerp(RH.C0, table[5], speed)
  1050. LH.C0 = clerp(LH.C0, table[6], speed)
  1051. if bool == true and resetc1 == false then
  1052. resetc1 = true
  1053. RootJoint.C1 = RootJoint.C1
  1054. Torso.Neck.C1 = Torso.Neck.C1
  1055. RW.C1 = rarmc1
  1056. LW.C1 = larmc1
  1057. RH.C1 = rlegc1
  1058. LH.C1 = llegc1
  1059. end
  1060. end
  1061.  
  1062. ArtificialHB = Instance.new("BindableEvent", Player.PlayerGui)
  1063. ArtificialHB.Name = "Heartbeat"
  1064. Player.PlayerGui:WaitForChild("Heartbeat")
  1065. frame = 0.033333333333333
  1066. tf = 0
  1067. allowframeloss = false
  1068. tossremainder = false
  1069. lastframe = tick()
  1070. Player.PlayerGui.Heartbeat:Fire()
  1071. local gg = false
  1072. game:GetService("RunService").Heartbeat:connect(function(s, p)
  1073.  
  1074. if Player.PlayerGui:FindFirstChild("Heartbeat") == nil then
  1075. gg = true
  1076. end
  1077. if gg == true then
  1078. return
  1079. end
  1080. tf = tf + s
  1081. if frame <= tf then
  1082. if allowframeloss then
  1083. Player.PlayerGui.Heartbeat:Fire()
  1084. lastframe = tick()
  1085. else
  1086. for i = 1, math.floor(tf / frame) do
  1087. Player.PlayerGui.Heartbeat:Fire()
  1088. end
  1089. lastframe = tick()
  1090. end
  1091. if tossremainder then
  1092. tf = 0
  1093. else
  1094. tf = tf - frame * math.floor(tf / frame)
  1095. end
  1096. end
  1097. end
  1098. )
  1099. swait = function(num)
  1100.  
  1101. if num == 0 or num == nil then
  1102. ArtificialHB.Event:wait()
  1103. else
  1104. for i = 0, num do
  1105. ArtificialHB.Event:wait()
  1106. end
  1107. end
  1108. end
  1109.  
  1110. local RbxUtility = LoadLibrary("RbxUtility")
  1111. local Create = RbxUtility.Create
  1112. RemoveOutlines = function(part)
  1113.  
  1114. part.TopSurface = 10
  1115. end
  1116.  
  1117. CreatePart = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size, MeshId)
  1118.  
  1119. local Part = Create("Part")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  1120. Part.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  1121. RemoveOutlines(Part)
  1122. return Part
  1123. end
  1124.  
  1125. CreateMesh = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  1126.  
  1127. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  1128. if Mesh == "SpecialMesh" then
  1129. Msh.MeshType = MeshType
  1130. Msh.MeshId = MeshId
  1131. end
  1132. return Msh
  1133. end
  1134.  
  1135. local co1 = 5
  1136. local co2 = 15
  1137. local co3 = 20
  1138. local co4 = 25
  1139. local cooldown1 = 0
  1140. local cooldown2 = 0
  1141. local cooldown3 = 0
  1142. local cooldown4 = 0
  1143. local skillcolorscheme = BrickColor.new("Bright red").Color
  1144. local scrn = Instance.new("ScreenGui", Player.PlayerGui)
  1145. makeframe = function(par, trans, pos, size, color)
  1146.  
  1147. local frame = Instance.new("Frame", par)
  1148. frame.BackgroundTransparency = trans
  1149. frame.BorderSizePixel = 0
  1150. frame.Position = pos
  1151. frame.Size = size
  1152. frame.BackgroundColor3 = color
  1153. return frame
  1154. end
  1155.  
  1156. makelabel = function(par, text)
  1157.  
  1158. local label = Instance.new("TextLabel", par)
  1159. label.BackgroundTransparency = 1
  1160. label.Size = UDim2.new(1, 0, 1, 0)
  1161. label.Position = UDim2.new(0, 0, 0, 0)
  1162. label.TextColor3 = Color3.new(255, 255, 255)
  1163. label.TextStrokeTransparency = 0
  1164. label.FontSize = Enum.FontSize.Size32
  1165. label.Font = Enum.Font.SourceSansLight
  1166. label.BorderSizePixel = 0
  1167. label.TextScaled = true
  1168. label.Text = text
  1169. end
  1170.  
  1171. framesk1 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.85, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  1172. framesk2 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.74, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  1173. framesk3 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.63, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  1174. framesk4 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.52, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  1175. bar1 = makeframe(framesk1, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  1176. bar2 = makeframe(framesk2, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  1177. bar3 = makeframe(framesk3, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  1178. bar4 = makeframe(framesk4, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  1179. text1 = Instance.new("TextLabel", framesk1)
  1180. text1.BackgroundTransparency = 1
  1181. text1.Size = UDim2.new(1, 0, 1, 0)
  1182. text1.Position = UDim2.new(0, 0, 0, 0)
  1183. text1.TextColor3 = Color3.new(255, 255, 255)
  1184. text1.TextStrokeTransparency = 0
  1185. text1.FontSize = Enum.FontSize.Size18
  1186. text1.Font = Enum.Font.SourceSansLight
  1187. text1.BorderSizePixel = 0
  1188. text1.TextScaled = true
  1189. text1.Text = "[Z]\n Charging Bull"
  1190. text2 = Instance.new("TextLabel", framesk2)
  1191. text2.BackgroundTransparency = 1
  1192. text2.Size = UDim2.new(1, 0, 1, 0)
  1193. text2.Position = UDim2.new(0, 0, 0, 0)
  1194. text2.TextColor3 = Color3.new(255, 255, 255)
  1195. text2.TextStrokeTransparency = 0
  1196. text2.FontSize = Enum.FontSize.Size18
  1197. text2.Font = Enum.Font.SourceSansLight
  1198. text2.BorderSizePixel = 0
  1199. text2.TextScaled = true
  1200. text2.Text = "[X]\n Blazing Spartan"
  1201. text3 = Instance.new("TextLabel", framesk3)
  1202. text3.BackgroundTransparency = 1
  1203. text3.Size = UDim2.new(1, 0, 1, 0)
  1204. text3.Position = UDim2.new(0, 0, 0, 0)
  1205. text3.TextColor3 = Color3.new(255, 255, 255)
  1206. text3.TextStrokeTransparency = 0
  1207. text3.FontSize = Enum.FontSize.Size18
  1208. text3.Font = Enum.Font.SourceSansLight
  1209. text3.BorderSizePixel = 0
  1210. text3.TextScaled = false
  1211. text3.Text = "[C]\n Fiery Guardian"
  1212. text4 = Instance.new("TextLabel", framesk4)
  1213. text4.BackgroundTransparency = 1
  1214. text4.Size = UDim2.new(1, 0, 1, 0)
  1215. text4.Position = UDim2.new(0, 0, 0, 0)
  1216. text4.TextColor3 = Color3.new(255, 255, 255)
  1217. text4.TextStrokeTransparency = 0
  1218. text4.FontSize = Enum.FontSize.Size18
  1219. text4.Font = Enum.Font.SourceSansLight
  1220. text4.BorderSizePixel = 0
  1221. text4.TextScaled = true
  1222. text4.Text = "[V]\n Elias\'s Wrath"
  1223. CreateWeld = function(Parent, Part0, Part1, C0, C1)
  1224.  
  1225. local Weld = Create("Weld")({Parent = Parent, Part0 = Part0, Part1 = Part1, C0 = C0, C1 = C1})
  1226. return Weld
  1227. end
  1228.  
  1229. CFuncs = {
  1230. Part = {Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  1231.  
  1232. local Part = Create("Part")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  1233. RemoveOutlines(Part)
  1234. return Part
  1235. end
  1236. }
  1237. ,
  1238. Mesh = {Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  1239.  
  1240. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  1241. if Mesh == "SpecialMesh" then
  1242. Msh.MeshType = MeshType
  1243. Msh.MeshId = MeshId
  1244. end
  1245. return Msh
  1246. end
  1247. }
  1248. ,
  1249. Mesh = {Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  1250.  
  1251. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  1252. if Mesh == "SpecialMesh" then
  1253. Msh.MeshType = MeshType
  1254. Msh.MeshId = MeshId
  1255. end
  1256. return Msh
  1257. end
  1258. }
  1259. ,
  1260. Weld = {Create = function(Parent, Part0, Part1, C0, C1)
  1261.  
  1262. local Weld = Create("Weld")({Parent = Parent, Part0 = Part0, Part1 = Part1, C0 = C0, C1 = C1})
  1263. return Weld
  1264. end
  1265. }
  1266. ,
  1267. Sound = {Create = function(id, par, vol, pit)
  1268.  
  1269. coroutine.resume(coroutine.create(function()
  1270.  
  1271. local S = Create("Sound")({Volume = vol, Pitch = pit or 1, SoundId = id, Parent = par or workspace})
  1272. wait()
  1273. S:play()
  1274. game:GetService("Debris"):AddItem(S, 6)
  1275. end
  1276. ))
  1277. end
  1278. }
  1279. ,
  1280. ParticleEmitter = {Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  1281.  
  1282. local fp = Create("ParticleEmitter")({Parent = Parent, Color = ColorSequence.new(Color1, Color2), LightEmission = LightEmission, Size = Size, Texture = Texture, Transparency = Transparency, ZOffset = ZOffset, Acceleration = Accel, Drag = Drag, LockedToPart = LockedToPart, VelocityInheritance = VelocityInheritance, EmissionDirection = EmissionDirection, Enabled = Enabled, Lifetime = LifeTime, Rate = Rate, Rotation = Rotation, RotSpeed = RotSpeed, Speed = Speed, VelocitySpread = VelocitySpread})
  1283. return fp
  1284. end
  1285. }
  1286. }
  1287. Handle2 = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Really red", "Handle2", Vector3.new(2.00753045, 0.268907994, 0.977717459))
  1288. Handle2Weld = CreateWeld(m, Character["Left Arm"], Handle2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.309810638, -0.443099976, -0.0655632019, 0, 1, 0, -1, 0, 0, 0, 0, 1))
  1289. FakeHandle2 = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Really red", "FakeHandle2", Vector3.new(2.00753045, 0.268907994, 0.977717459))
  1290. FakeHandle2Weld = CreateWeld(m, Handle2, FakeHandle2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1291. Hitbox2 = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Really red", "Hitbox2", Vector3.new(2.00753045, 0.268907994, 4.05771732))
  1292. Hitbox2Weld = CreateWeld(m, FakeHandle2, Hitbox2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, -0.219999313, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1293. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.440775186, 0.560985088, 0.268907964))
  1294. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.10956097, -0.544559479, 0.00132751465, -0.866025388, 0, -0.500000238, -0.500000238, 0, 0.866025388, 0, 1, 0))
  1295. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1296. Metal = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Metal", Vector3.new(0.440775186, 1.63954592, 0.268907964))
  1297. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00339508057, -0.0108280182, 0.000335693359, 1, 0, 0, 0, 0, -1, 0, 1, 0))
  1298. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.797211826))
  1299. Metal = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Metal", Vector3.new(2.00753045, 0.268907994, 1.33100474))
  1300. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.00132751465, 0.0176925659, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1301. CreateMesh("CylinderMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.794727564, 1))
  1302. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.440775186, 0.560985088, 0.268907964))
  1303. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.29561615, 0.255399704, 0.00267028809, -0.707106829, 0, 0.707106829, 0.707106829, 0, 0.707106829, 0, 1, 0))
  1304. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1305. Metal = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Metal", Vector3.new(0.31121397, 0.311880946, 0.268907964))
  1306. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.586155891, -0.590343475, 0.000335693359, 0.707106829, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0, 1, 0))
  1307. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.797211826))
  1308. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(2.00753045, 0.268907994, 1.97079527))
  1309. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000671386719, 0.00132751465, 0.0233039856, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1310. CreateMesh("CylinderMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.759958267, 1))
  1311. Metal = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Metal", Vector3.new(0.31121397, 0.311880946, 0.268907964))
  1312. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.575917244, 0.570791245, 0.000335693359, 0.707106829, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0, 1, 0))
  1313. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.797211826))
  1314. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.301196367, 0.302530676, 0.268907964))
  1315. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.88179874, 1.30965042, 0.00267028809, 0.707106829, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0, 1, 0))
  1316. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.447034687))
  1317. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.400036812, 0.394025266, 0.268907964))
  1318. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.944215775, 0.550720215, 0.00267028809, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  1319. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1320. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.440775186, 0.560985088, 0.268907964))
  1321. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.2749548, -0.275114059, 0.00267028809, 0.707106829, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0, 1, 0))
  1322. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1323. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.400036812, 0.394025266, 0.268907964))
  1324. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.583694458, 0.940448761, 0.00267028809, -1, 0, 0, 0, 0, 1, 0, 1, 0))
  1325. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1326. Metal = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Metal", Vector3.new(2.00753045, 0.268907994, 1.52734971))
  1327. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601959229, 0.000671386719, 0.0197086334, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1328. CreateMesh("CylinderMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.779826403, 1))
  1329. Metal = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really red", "Metal", Vector3.new(2.00753045, 0.268907994, 0.977717459))
  1330. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1331. CreateMesh("CylinderMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.834463894, 1))
  1332. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.426750481, 4.5746994, 0.268907964))
  1333. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.401041031, -0.0303039551, 0.00267028809, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  1334. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.447034687))
  1335. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.400036812, 0.394025266, 0.268907964))
  1336. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.230413914, 1.00434494, 0.00132751465, 0.965925872, 0, 0.258818984, 0.258818984, 0, -0.965925872, 0, 1, 0))
  1337. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1338. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.440775186, 0.560985088, 0.268907964))
  1339. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.09098625, 0.550378799, 0.00132751465, 0.866025388, 0, -0.500000238, -0.500000238, 0, -0.866025388, 0, 1, 0))
  1340. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1341. Metal = CreatePart(m, Enum.Material.Neon, 0, 0, "Maroon", "Metal", Vector3.new(2.00753045, 0.268907994, 1.12531006))
  1342. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0.000671386719, 0.0170326233, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1343. CreateMesh("CylinderMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.809628725, 1))
  1344. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.400036812, 0.394025266, 0.268907964))
  1345. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.01778984, 0.243234634, 0.00132751465, -0.258818984, 0, -0.965925872, -0.965925872, 0, 0.258818984, 0, 1, 0))
  1346. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.745057762))
  1347. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 0.734623849))
  1348. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, -1.68924904, -0.336601257, 0, -1, 0, 0, 0, -1, 1, 0, 0))
  1349. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1350. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.268908054, 1.69631207, 1.40246356))
  1351. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, -1.18476105, 0.684921265, 0, -1, 0, 0, 0, -1, 1, 0, 0))
  1352. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.596047223, 1, 1))
  1353. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 1.96344793, 1.93673551))
  1354. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, -1.15804672, 0.982018232, 0, 1, 0, 0, 0, -1, -1, 0, 0))
  1355. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1356. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 0.734623849))
  1357. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, -1.66893959, -0.308921814, 0, 1, 0, 0, 0, -1, -1, 0, 0))
  1358. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1359. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 1.23483586))
  1360. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, 1.57564831, -0.281362534, 0, 1, 0, 0.707106829, 0, 0.707106829, 0.707106829, 0, -0.707106829))
  1361. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1362. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 3.16555905, 1.93673551))
  1363. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, -0.960346222, 0.952056646, 0, 1, 0, 0, 0, 1, 1, 0, 0))
  1364. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1365. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 1.00443101))
  1366. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, 1.60208893, 1.00598621, 0, 1, 0, 0.707106829, 0, -0.707106829, -0.707106829, 0, -0.707106829))
  1367. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1368. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.268908054, 2.54179668, 1.40246356))
  1369. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, -0.931627274, 0.68157959, 0, 1, 0, 0, 0, 1, 1, 0, 0))
  1370. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.596047223, 1, 1))
  1371. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.268908054, 2.54179668, 1.40246356))
  1372. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, -0.930290222, 0.711532831, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  1373. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.596047223, 1, 1))
  1374. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 0.734623849))
  1375. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, -0.709869623, -1.32010078, 0, -1, 0, 1, 0, 0, 0, 0, 1))
  1376. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1377. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 0.995749235))
  1378. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, 1.61249352, 0.992275238, 0, -1, 0, -0.707106829, 0, -0.707106829, 0.707106829, 0, -0.707106829))
  1379. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1380. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 3.16555905, 1.93673551))
  1381. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, -0.95835495, 0.982018232, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  1382. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1383. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 0.734623849))
  1384. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, -0.695892334, -1.31937599, 0, 1, 0, -1, 0, 0, 0, 0, 1))
  1385. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1386. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.268908054, 1.69631207, 1.40246356))
  1387. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00601196289, -1.18476105, 0.712204218, 0, 1, 0, 0, 0, -1, -1, 0, 0))
  1388. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.596047223, 1, 1))
  1389. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 0.560985208, 1.16805196))
  1390. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, 1.60957718, -0.309536934, 0, -1, 0, -0.707106829, 0, 0.707106829, -0.707106829, 0, -0.707106829))
  1391. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1392. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.268908054, 1.96344793, 1.93673551))
  1393. PartWeld = CreateWeld(m, FakeHandle2, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00601196289, -1.15603065, 0.952056646, 0, -1, 0, 0, 0, -1, 1, 0, 0))
  1394. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.496705979, 1, 1))
  1395. Metal = CreatePart(m, Enum.Material.Metal, 0, 0, "Bright orange", "Metal", Vector3.new(0.301196367, 0.302530676, 0.268907964))
  1396. MetalWeld = CreateWeld(m, FakeHandle2, Metal, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.35380268, -1.91964149, 0.00267028809, 0.707106829, 0, 0.707106829, 0.707106829, 0, -0.707106829, 0, 1, 0))
  1397. CreateMesh("BlockMesh", Metal, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.447034687))
  1398. Handle = CreatePart(sp, Enum.Material.SmoothPlastic, 0, 1, "Medium stone grey", "Handle", Vector3.new(0.200000003, 1.17023563, 0.200000003))
  1399. HandleWeld = CreateWeld(sp, Character["Right Arm"], Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.984693289, 0.0122509003, 0.016998291, 0, 1, 3.40000006e-05, 0, 3.40000006e-05, -1, -1, 0, 0))
  1400. FakeHandle = CreatePart(sp, Enum.Material.SmoothPlastic, 0, 1, "Medium stone grey", "FakeHandle", Vector3.new(0.200000003, 1.17023563, 0.200000003))
  1401. FakeHandleWeld = CreateWeld(sp, Handle, FakeHandle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1402. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.265654594, 0.200000003, 0.200000003))
  1403. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.53824997, -3.84861946, -0.00509643555, 0.953529596, -0.301299691, 0, 0.301299691, 0.953529596, 0, 0, 0, 1))
  1404. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1405. Hitbox = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 1, "Really black", "Hitbox", Vector3.new(1.2558558, 5.41180372, 0.200000003))
  1406. HitboxWeld = CreateWeld(sp, FakeHandle, Hitbox, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.37038362, -6.11240005, 0.00509643555, -0.999330342, 0.0365930237, 0, 0.03659302, 0.999330342, 0, 0, 0, -1))
  1407. CreateMesh("BlockMesh", Hitbox, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  1408. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1409. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.87723541, 1.3071419, -0.00617980957, -0.0778941065, -0.996961713, 0, 0.996961713, -0.0778941065, 0, 0, 0, 1))
  1410. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.698613465, 1, 0.540743589))
  1411. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1412. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.85689926, 0.0357978344, 0.000366210938, -0.0162200052, -0.999868512, 0, -0.999868512, 0.0162200052, 0, 0, 0, -1))
  1413. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.110689417, 0.0580665059, 0.290332109))
  1414. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.391223073, 0.200000003))
  1415. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.09789276, -1.31699181, -0.00617980957, 0.367478788, -0.930031896, 0, 0.930031896, 0.367478818, 0, 0, 0, 1))
  1416. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.823819637, 1, 0.75486356))
  1417. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1418. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.99447632, 2.06506062, 0.000366210938, -0.718487144, -0.695540249, 0, -0.695540249, 0.718487144, 0, 0, 0, -1))
  1419. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0399207957, 0.0598810986, 0.290332109))
  1420. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1421. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000104665756, 2.63604736, 1.52587891e-05, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1422. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.792728066, 0.40156588, 0.790645242))
  1423. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1424. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.3675046, -3.14769554, -0.00617980957, 0.922712505, -0.385488808, 0, 0.385488808, 0.922712505, 0, 0, 0, 1))
  1425. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1426. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1427. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.23241997, 2.97418213, -0.00509643555, -0.89177388, -0.452481419, 0, 0.452481419, -0.89177388, 0, 0, 0, 1))
  1428. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  1429. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1430. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0264651775, 2.85495186, 0.000366210938, -0.999868274, 0.0162310004, 0, 0.0162310004, 0.999868274, 0, 0, 0, -1))
  1431. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0399207957, 0.127020478, 0.290332109))
  1432. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1433. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.18885994, -2.57540131, -0.00617980957, 0.791501701, -0.611167073, 0, 0.611167073, 0.791501701, 0, 0, 0, 1))
  1434. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0852853209, 0.949024618, 0.758492708))
  1435. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1436. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.14623642, 3.44169998, -0.00617980957, -0.823538005, -0.567261219, 0, 0.567261219, -0.823538005, 0, 0, 0, 1))
  1437. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.952654719, 0.885514081, 0.540743589))
  1438. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1439. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.000396728516, 2.59818459, -0.000288724899, 0, 0, -1, -1.10000001e-05, 1, 0, 1, 1.10000001e-05, 0))
  1440. CreateMesh("SpecialMesh", Part, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.790647388, 0.638759255, 0.790645242))
  1441. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1442. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.93175697, 1.91189003, 0.000366210938, -0.709942579, 0.704259515, 0, 0.704259515, 0.709942579, 0, 0, 0, -1))
  1443. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.11794775, 0.232266024, 0.290332109))
  1444. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.201781362, 0.290695429, 0.200000003))
  1445. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.062497139, -1.47618103, 0.00399780273, -0.865684807, -0.500589371, 0, -0.500589371, 0.865684807, 0, 0, 0, -1))
  1446. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1447. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1448. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.000396728516, 2.66858101, -0.000290393829, 0, 0, -1, -1.10000001e-05, 1, 0, 1, 1.10000001e-05, 0))
  1449. CreateMesh("SpecialMesh", Part, Enum.MeshType.Sphere, "", Vector3.new(0, 0, 0), Vector3.new(0.790647388, 0.638759255, 0.790645242))
  1450. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.223555729))
  1451. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00617980957, -0.0212595463, 3.02003479, 0, 0, 1, -0.999822795, 0.0188270081, 0, -0.0188270081, -0.999822795, 0))
  1452. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.667765677, 0.645990014, 1))
  1453. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1454. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.37670326, 2.44799232, 0.000366210938, -0.874025643, -0.485879838, 0, -0.485879868, 0.874025643, 0, 0, 0, -1))
  1455. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.181458071, 0.0889143348, 0.290332109))
  1456. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1457. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.96089935, 1.98529625, 0.000366210938, -0.718487144, -0.695540249, 0, -0.695540249, 0.718487144, 0, 0, 0, -1))
  1458. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.161497667, 0.197789058, 0.290332109))
  1459. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1460. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00596618652, 2.2820549, 2.07886124, 0, 0, 1, -0.762670815, -0.646786749, 0, 0.646786749, -0.762670815, 0))
  1461. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.756680071, 0.471790403, 0.263113528))
  1462. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1463. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.13864517, 2.227705, 0.00617980957, 0.646786749, -0.762670815, 0, -0.762670815, -0.646786749, 0, 0, 0, -1))
  1464. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.865554869, 0.078026928, 0.758492708))
  1465. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.55634892))
  1466. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00509643555, -1.25833368, -1.58732414, 0, 0, -1, -0.935574591, 0.353129089, 0, 0.353129119, 0.935574591, 0))
  1467. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.678653121, 0.607883811, 1))
  1468. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1469. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.06986618, -1.9463768, -0.00108337402, 0.660487771, 0.750836849, 0, 0.750836849, -0.660487771, 0, 0, 0, -1))
  1470. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.123391442, 0.241338864, 0.181457579))
  1471. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1472. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.698346138, 2.74471283, 0.000366210938, -0.969999254, -0.243107855, 0, -0.243107855, 0.969999254, 0, 0, 0, -1))
  1473. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.159683093, 0.161497504, 0.290332109))
  1474. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1475. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.60768318, 0.577094078, -0.00617980957, -0.127521738, 0.991835773, 0, -0.991835773, -0.127521738, 0, 0, 0, 1))
  1476. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.154239208, 0.758492708))
  1477. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1478. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00617980957, -4.16029549, 1.4980669, 0, 0, -1, 0.207697734, 0.978193045, 0, 0.978193045, -0.207697734, 0))
  1479. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.987130761, 0.281259179))
  1480. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1481. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0968637466, -1.20724487, 0.00399780273, -0.825775981, -0.563998163, 0, -0.563998163, 0.825775981, 0, 0, 0, -1))
  1482. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.782084227, 1, 0.540743589))
  1483. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.406466037, 0.466709524, 0.200000003))
  1484. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.86023808, -2.79104042, -0.00509643555, 0.719956934, -0.694018841, 0, 0.694018841, 0.719956934, 0, 0, 0, 1))
  1485. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  1486. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1487. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.74497223, 0.78229022, 0.000366210938, -0.274453342, -0.961600482, 0, -0.961600482, 0.274453342, 0, 0, 0, -1))
  1488. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.157868505, 0.0671393946, 0.290332109))
  1489. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.280897051, 0.47396785, 0.200000003))
  1490. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.34566212, -2.65875816, 0.00509643555, -0.875543773, -0.483138889, 0, -0.483138889, 0.875543773, 0, 0, 0, -1))
  1491. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  1492. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1493. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.39191818, 2.43912315, 0.000366210938, -0.874025643, -0.485879838, 0, -0.485879868, 0.874025643, 0, 0, 0, -1))
  1494. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0399207957, 0.127020478, 0.290332109))
  1495. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1496. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.12562561, -0.496722221, 0.00399780273, -0.228761166, 0.973482609, 0, 0.973482609, 0.228761151, 0, 0, 0, -1))
  1497. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1498. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1499. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.29644966, 2.51484489, -0.00617980957, -0.795197666, -0.606350303, 0, 0.606350303, -0.795197666, 0, 0, 0, 1))
  1500. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.26129958, 0.860110283, 0.75486356))
  1501. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1502. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.96850586, 0.848686218, -0.00108337402, -0.240041912, 0.970762491, 0, 0.970762491, 0.240041912, 0, 0, 0, -1))
  1503. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0580665655, 0.459088355, 0.181457579))
  1504. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1505. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.60143471, 1.86360264, 0.00617980957, 0.569282055, 0.822142363, 0, 0.822142363, -0.569282055, 0, 0, 0, -1))
  1506. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1507. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1508. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.44673157, 2.2265625, 1.45490265, 0.457348436, -0.539289534, 0.707106173, -0.762669981, -0.646787882, -4.21468123e-08, 0.457347751, -0.53928864, -0.707107425))
  1509. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.529857457, 0.078026928, 0.522597909))
  1510. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.10000000149012, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1511. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.135494232, -2.61195183, -0.00218200684, 0.99847436, 0.0552179627, 0, -0.0552179627, 0.99847436, 0, 0, 0, 1))
  1512. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.762486577, 0.368359983, 0.81038934))
  1513. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1514. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.42008972, -2.90167046, -0.00617980957, 0.795197189, 0.606350958, 0, -0.606350958, 0.795197189, 0, 0, 0, 1))
  1515. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.154239208, 0.758492708))
  1516. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1517. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.18887138, -2.67984581, -0.00617980957, 0.791501701, -0.611167073, 0, 0.611167073, 0.791501701, 0, 0, 0, 1))
  1518. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0852853209, 0.0961727053, 0.758492708))
  1519. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1520. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.47705841, -1.32070446, -0.00617980957, 0.385481775, 0.922715485, 0, -0.922715485, 0.385481775, 0, 0, 0, 1))
  1521. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.154239208, 0.758492708))
  1522. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1523. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.65810585, 2.72777939, 0.00617980957, 0.822140276, -0.569284976, 0, -0.569284976, -0.822140276, 0, 0, 0, -1))
  1524. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.865554869, 0.078026928, 0.758492708))
  1525. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1526. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.16350365, -2.68160248, -0.00617980957, 0.791501701, -0.611167073, 0, 0.611167073, 0.791501701, 0, 0, 0, 1))
  1527. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1528. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.946846962, 0.200000003))
  1529. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.52285385, 2.53654957, -0.00617980957, -0.556969702, -0.830532849, 0, 0.830532849, -0.556969702, 0, 0, 0, 1))
  1530. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0362916067, 1, 0.540743589))
  1531. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1532. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05279732, -2.1809988, -0.00617980957, 0.611164212, 0.791503966, 0, -0.791503966, 0.611164212, 0, 0, 0, 1))
  1533. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.154239208, 0.758492708))
  1534. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1535. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.61757088, 2.62086678, 0.00617980957, 0.840313256, -0.542101324, 0, -0.542101324, -0.840313256, 0, 0, 0, -1))
  1536. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.685909688))
  1537. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1538. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00617980957, -3.85450363, 2.58270741, 0, 0, -1, 0.475097954, 0.87993294, 0, 0.87993294, -0.475097984, 0))
  1539. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.987130761, 0.281259179))
  1540. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.10000000149012, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1541. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.65065765, -0.00689697266, -2.01301575, -0.586682498, -0.809817076, 0, 0, 0, 1, -0.809817076, 0.586682498, 0))
  1542. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.562882841, 0.771196306, 0.650706708))
  1543. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1544. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.19530296, 2.94304085, -0.00617980957, -0.912123263, -0.409916103, 0, 0.409916073, -0.912123263, 0, 0, 0, 1))
  1545. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0852853209, 0.94539535, 0.685909688))
  1546. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1547. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.43974686, 2.68236923, -0.00617980957, -0.717509687, 0.696548641, 0, -0.696548641, -0.717509687, 0, 0, 0, 1))
  1548. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.165126845, 0.0816560686, 0.758492708))
  1549. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1550. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.60863304, -3.43327141, -0.00617980957, 0.925037682, 0.379875302, 0, -0.379875302, 0.925037682, 0, 0, 0, 1))
  1551. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0653249398, 0.154239208, 0.758492708))
  1552. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.877167225, 0.200000003))
  1553. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.49754906, 2.45754147, -0.00617980957, -0.545705736, -0.837976933, 0, 0.837976933, -0.545705736, 0, 0, 0, 1))
  1554. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.557076275, 1, 0.540743589))
  1555. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1556. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.29661179, 1.4930954, -0.00617980957, -0.379881501, 0.925035179, 0, -0.925035179, -0.379881531, 0, 0, 0, 1))
  1557. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1558. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1559. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.99692297, 3.08596039, 0.00617980957, 0.941467464, -0.337103993, 0, -0.337103993, -0.941467464, 0, 0, 0, -1))
  1560. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1561. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1562. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.16588354, 2.48538399, 0.000366210938, -0.903214991, 0.42918852, 0, 0.42918852, 0.903214991, 0, 0, 0, -1))
  1563. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.243153811, 0.268557578, 0.290332109))
  1564. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.223919243, 0.761759937, 0.200000003))
  1565. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.632575274, -5.06258583, 0.00146484375, -0.996192873, 0.0871771201, 0, 0.0871771201, 0.996192873, 0, 0, 0, -1))
  1566. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.518968642))
  1567. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1568. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.69968224, 0.785323143, 0.00617980957, 0.210875273, -0.977513075, 0, -0.977513075, -0.210875273, 0, 0, 0, -1))
  1569. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.865554869, 0.078026928, 0.685909688))
  1570. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.433321834, 0.288880885, 0.200000003))
  1571. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.29630661, -1.67464828, 0.00399780273, -0.674479008, 0.738294005, 0, 0.738294005, 0.674479008, 0, 0, 0, -1))
  1572. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1573. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1574. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.16016197, -2.69299126, -0.00617980957, 0.795197666, 0.606350303, 0, -0.606350303, 0.795197666, 0, 0, 0, 1))
  1575. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1576. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1577. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.200936437, 3.24408913, 0.00617980957, 0.996636689, -0.081948109, 0, -0.0819481164, -0.996636689, 0, 0, 0, -1))
  1578. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1579. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1580. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.65045357, -0.00708007813, -2.01228523, -0.586682498, -0.809817076, 0, 0, 0, 1, -0.809817076, 0.586682498, 0))
  1581. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.562882841, 0.776640177, 0.451103449))
  1582. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1583. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.610499382, 3.19054985, 0.00617980957, 0.983886778, 0.178792432, 0, 0.178792432, -0.983886778, 0, 0, 0, -1))
  1584. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1585. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1586. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.29168797, 2.93964195, -0.00617980957, -0.912123263, -0.409916103, 0, 0.409916073, -0.912123263, 0, 0, 0, 1))
  1587. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.890959024, 0.905474722, 0.685909688))
  1588. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.255855531, 0.200000003))
  1589. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.99385643, -1.81903648, 0.00399780273, -0.918559432, 0.395282775, 0, 0.395282775, 0.918559432, 0, 0, 0, -1))
  1590. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.611513615, 1, 0.540743589))
  1591. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1592. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.800829887, -2.44076538, 0, 0.950160503, 0.311761349, 0, -0.311761349, 0.950160503, 0, 0, 0, 1))
  1593. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.760490656, 0.145166829, 0.758492649))
  1594. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1595. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.05867958, 2.47588158, 0.00617980957, 0.762671828, 0.646785736, 0, 0.646785736, -0.762671828, 0, 0, 0, -1))
  1596. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1597. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.384690583, 0.200000003))
  1598. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.19094658, 0.209361076, -0.00617980957, 0.243750066, -0.969838083, 0, 0.969838083, 0.243750066, 0, 0, 0, 1))
  1599. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.952654719, 1, 0.540743589))
  1600. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.218838394, 0.200000003, 0.200000003))
  1601. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0398361683, 2.99050522, -0.00617980957, -0.994879842, 0.101066209, 0, -0.101066209, -0.994879842, 0, 0, 0, 1))
  1602. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.471790552, 0.682280481))
  1603. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1604. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000109672546, 2.54156494, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1605. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.691355109, 0.145166829, 0.696434081))
  1606. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1607. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.684578419, 2.7059021, 0.000366210938, -0.969999254, -0.243107855, 0, -0.243107855, 0.969999254, 0, 0, 0, -1))
  1608. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0399207957, 0.0471790284, 0.290332109))
  1609. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1610. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.79587555, -2.36396599, -0.00144958496, 0.793755591, -0.608236909, 0, -0.608236909, -0.793755591, 0, 0, 0, -1))
  1611. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0816561282, 0.998018026, 0.145166054))
  1612. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1613. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.80734062, -1.28983593, 0.00399780273, -0.55176729, 0.833998084, 0, 0.833998084, 0.55176729, 0, 0, 0, -1))
  1614. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1615. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.243153498, 0.200000003))
  1616. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.01405907, -0.869227409, -0.00509643555, 0.387352347, -0.921931803, 0, 0.921931803, 0.387352347, 0, 0, 0, 1))
  1617. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.898217261, 1, 0.627843201))
  1618. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1619. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.53531647, 0.593788147, -0.00617980957, -0.127522722, 0.991835654, 0, -0.991835654, -0.127522722, 0, 0, 0, 1))
  1620. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1621. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.292873263, 0.200000003, 0.200000003))
  1622. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.34933257, -4.15054131, -0.00509643555, 0.976920485, -0.213603824, 0, 0.213603824, 0.976920485, 0, 0, 0, 1))
  1623. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1624. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1625. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.53315544, -0.335505724, -0.00617980957, 0.133528367, 0.991044998, 0, -0.991044998, 0.133528367, 0, 0, 0, 1))
  1626. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1627. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1628. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000110387802, 2.56478882, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1629. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.760490656, 0.145166829, 0.758492649))
  1630. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1631. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.616275787, 3.03691864, 0.00617980957, 0.977515221, 0.210865304, 0, 0.210865304, -0.977515221, 0, 0, 0, -1))
  1632. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.685909688))
  1633. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.547638953))
  1634. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, -1.2946701, -1.54117775, 0, 0, -1, -0.935574591, 0.353129089, 0, 0.353129119, 0.935574591, 0))
  1635. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.887328923, 1))
  1636. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1637. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.98072624, -7.39151955, 0.00509643555, -0.863538563, 0.504282832, 0, 0.504282832, 0.863538563, 0, 0, 0, -1))
  1638. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.266743451, 0.669579566, 0.627843201))
  1639. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1640. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.35337257, 2.77885056, 0.00617980957, 0.889630497, 0.456681252, 0, 0.456681252, -0.889630497, 0, 0, 0, -1))
  1641. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.685909688))
  1642. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0, 0, "Medium stone grey", "Part", Vector3.new(0.200000003, 5.17023563, 0.200000003))
  1643. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  1644. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.691355109, 1, 0.689538717))
  1645. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1646. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.48493004, 0.151885986, -0.00617980957, 0.120272748, -0.99274087, 0, 0.99274087, 0.120272748, 0, 0, 0, 1))
  1647. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.557076275, 0.645990193, 0.540743589))
  1648. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.265654594, 0.200000003, 0.200000003))
  1649. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.74875736, -3.23905563, -0.00509643555, 0.796235442, -0.604986906, 0, 0.604986906, 0.796235442, 0, 0, 0, 1))
  1650. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1651. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1652. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.33195591, -8.16197395, 0.00163269043, -0.970249414, -0.242107898, 0, -0.242107898, 0.970249414, 0, 0, 0, -1))
  1653. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.486307502, 0.299405426, 0.520783186))
  1654. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1655. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.37957764, 2.92847824, 0.00617980957, 0.904086053, 0.427350521, 0, 0.427350521, -0.904086053, 0, 0, 0, -1))
  1656. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1657. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1658. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.48915291, 2.09377193, -0.00617980957, -0.611164808, -0.791503429, 0, 0.791503429, -0.611164808, 0, 0, 0, 1))
  1659. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0852853209, 0.94539535, 0.758492708))
  1660. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1661. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.57333374, 1.47975636, 0.00617980957, 0.456686407, -0.889627814, 0, -0.889627814, -0.456686407, 0, 0, 0, -1))
  1662. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.865554869, 0.078026928, 0.685909688))
  1663. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1664. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.813242912, -2.51210594, -0.0036315918, 0.950160503, 0.311761349, 0, -0.311761349, 0.950160503, 0, 0, 0, 1))
  1665. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.830351949, 0.145166829, 0.826357663))
  1666. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.318640351, 0.280170947, 0.200000003))
  1667. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.86480141, -2.90533447, -0.00617980957, 0.890249252, -0.455473602, 0, 0.455473602, 0.890249252, 0, 0, 0, 1))
  1668. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1669. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.300857455, 4.67870903, 0.200000003))
  1670. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.109327078, -5.10087395, 0.00509643555, -0.999330342, 0.0365930237, 0, 0.03659302, 0.999330342, 0, 0, 0, -1))
  1671. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  1672. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1673. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.62796402, 2.44365883, -0.00108337402, -0.827070117, 0.562098861, 0, 0.562098861, 0.827070117, 0, 0, 0, -1))
  1674. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.312107801, 0.925434947, 0.181457579))
  1675. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1676. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.07151604, -1.59460831, 0.00399780273, -0.755362391, 0.655307353, 0, 0.655307353, 0.755362391, 0, 0, 0, -1))
  1677. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1678. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.313559175, 0.200000003))
  1679. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.14496231, 2.21590424, -0.00617980957, -0.755952477, -0.654626429, 0, 0.654626429, -0.755952477, 0, 0, 0, 1))
  1680. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.823819637, 1, 0.682280481))
  1681. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1682. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.474377632, -3.39024925, -0.00617980957, 0.991043508, -0.133539304, 0, 0.133539304, 0.991043508, 0, 0, 0, 1))
  1683. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1684. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1685. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.35286999, -3.15506935, -0.00617980957, 0.925037682, 0.379875302, 0, -0.379875302, 0.925037682, 0, 0, 0, 1))
  1686. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1687. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1688. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.455130577, -3.39270973, -0.00617980957, 0.991837025, 0.12751177, 0, -0.12751177, 0.991837025, 0, 0, 0, 1))
  1689. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.758492708))
  1690. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.220652997, 0.290695429, 0.200000003))
  1691. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.533442497, -1.64234543, 0.00399780273, -0.976108372, -0.217284143, 0, -0.217284143, 0.976108372, 0, 0, 0, -1))
  1692. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1693. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1694. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.04461479, 2.8343029, -0.00108337402, -0.928650737, 0.370955467, 0, 0.370955437, 0.928650737, 0, 0, 0, -1))
  1695. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.312107801, 0.254040986, 0.181457579))
  1696. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1697. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.92165089, 1.93690681, 0.000366210938, -0.709942579, 0.704259515, 0, 0.704259515, 0.709942579, 0, 0, 0, -1))
  1698. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.217749685, 0.0471790284, 0.290332109))
  1699. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.590826631, 0.200000003))
  1700. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.47386742, -1.48818207, 0.00399780273, -0.745231628, 0.666805685, 0, 0.666805685, 0.745231628, 0, 0, 0, -1))
  1701. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.936323643, 1, 0.540743589))
  1702. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1703. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.21697617, 2.17618942, -0.00617980957, -0.77348125, -0.633819103, 0, 0.633819103, -0.77348125, 0, 0, 0, 1))
  1704. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.21774964, 0.845593631, 0.75486356))
  1705. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1706. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.05485821, -1.62624359, 0.00399780273, -0.882357299, 0.470580161, 0, 0.470580161, 0.882357299, 0, 0, 0, -1))
  1707. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.698613465, 1, 0.540743589))
  1708. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1709. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.43822336, -1.95466995, 0.00399780273, -0.935574591, 0.353129089, 0, 0.353129119, 0.935574591, 0, 0, 0, -1))
  1710. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1711. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.330979109, 0.200000003))
  1712. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.50815773, 2.62093735, -0.00979614258, -0.899166107, -0.437607586, 0, 0.437607586, -0.899166107, 0, 0, 0, 1))
  1713. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.823819637, 1, 0.645989001))
  1714. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1715. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0528845787, 2.84711266, 0.000366210938, -0.999868274, 0.0162310004, 0, 0.0162310004, 0.999868274, 0, 0, 0, -1))
  1716. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.038106218, 0.235895172, 0.290332109))
  1717. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1718. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.966098785, 3.30504227, -0.00617980957, -0.945117414, 0.326730996, 0, -0.326730996, -0.945117414, 0, 0, 0, 1))
  1719. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.61877197, 0.914547503, 0.75486356))
  1720. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1721. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.5414114, -1.55881691, 0.00399780273, -0.99083966, -0.135043725, 0, -0.13504371, 0.99083966, 0, 0, 0, -1))
  1722. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1723. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1724. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.82069778, -2.03713703, -0.00617980957, 0.611164212, 0.791503966, 0, -0.791503966, 0.611164212, 0, 0, 0, 1))
  1725. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1726. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.590826631, 0.200000003))
  1727. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.01407814, 0.188929558, -0.00617980957, 0.161286578, -0.986907661, 0, 0.986907661, 0.161286563, 0, 0, 0, 1))
  1728. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.936323643, 1, 0.540743589))
  1729. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1730. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.92652321, -1.05928993, -0.00617980957, 0.406294972, -0.913741946, 0, 0.913741946, 0.406295002, 0, 0, 0, 1))
  1731. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1732. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1733. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.13823128, 0.263594627, -0.00509643555, -0.0161700007, -0.999869287, 0, 0.999869287, -0.0161700007, 0, 0, 0, 1))
  1734. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  1735. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1736. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.2835741, 2.60525322, -0.00617980957, -0.928855419, -0.370442599, 0, 0.370442599, -0.928855419, 0, 0, 0, 1))
  1737. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.493565857, 0.860110283, 0.682280481))
  1738. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.547638953))
  1739. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00617980957, 3.10539246, 0.540255547, 0, 0, 1, 0.135541737, -0.99077177, 0, 0.99077177, 0.135541737, 0))
  1740. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.887328923, 1))
  1741. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1742. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.017231226, 2.74465179, 0.000366210938, -0.999868274, 0.0162310004, 0, 0.0162310004, 0.999868274, 0, 0, 0, -1))
  1743. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.250412077, 0.444571674, 0.290332109))
  1744. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1745. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.220611334, -2.84675026, -0.00144958496, 0.998488009, 0.0549699403, 0, 0.0549699403, -0.998488009, 0, 0, 0, -1))
  1746. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.315736979, 0.927249491, 0.145166054))
  1747. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1748. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.71183014, -1.80350876, 0.00399780273, -0.958816767, 0.284025431, 0, 0.284025431, 0.958816767, 0, 0, 0, -1))
  1749. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1750. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1751. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.235729218, -1.43245506, 0.00399780273, -0.943612516, -0.331052005, 0, -0.331052005, 0.943612516, 0, 0, 0, -1))
  1752. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1753. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1754. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00596618652, 0.839644909, 2.6398983, 0, 0, 1, -0.977514744, -0.210867196, 0, 0.210867196, -0.977514744, 0))
  1755. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.684096813, 0.471790403, 0.263113528))
  1756. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.830712736))
  1757. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, -1.00778484, -1.66498947, 0, 0, -1, -0.988280416, 0.152649432, 0, 0.152649418, 0.988280416, 0))
  1758. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 0.887328923, 1))
  1759. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1760. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.47394943, 2.05632591, -0.00617980957, -0.287756383, -0.95770365, 0, 0.95770365, -0.287756383, 0, 0, 0, 1))
  1761. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.952654719, 0.885514081, 0.540743589))
  1762. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1763. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.44760132, 2.28086853, 1.4557724, 0.457348436, -0.539289534, 0.707106173, -0.762669981, -0.646787882, -4.21468123e-08, 0.457347751, -0.53928864, -0.707107425))
  1764. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.529857457, 0.477234185, 0.522597909))
  1765. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.243153498, 0.200000003))
  1766. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.7747879, -1.74092674, 0.00509643555, -0.812300563, 0.583239198, 0, 0.583239198, 0.812300563, 0, 0, 0, -1))
  1767. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.898217261, 1, 0.627843201))
  1768. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.280896723, 0.200000003))
  1769. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.2285521, -1.9428196, 0.00399780273, -0.999657035, 0.0261880159, 0, 0.0261880178, 0.999657035, 0, 0, 0, -1))
  1770. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.738534153, 1, 0.540743589))
  1771. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1772. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.96131706, -0.666079521, 0.00509643555, -0.336617917, 0.941641331, 0, 0.941641331, 0.336617917, 0, 0, 0, -1))
  1773. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  1774. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1775. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.82688427, 3.00030708, -0.00617980957, -0.987137675, -0.159872577, 0, 0.159872577, -0.987137675, 0, 0, 0, 1))
  1776. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.26129958, 0.860110283, 0.682280481))
  1777. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1778. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.88572502, 2.00799751, -0.00108337402, -0.707110405, 0.707103312, 0, 0.707103312, 0.707110405, 0, 0, 0, -1))
  1779. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0580665655, 0.145166278, 0.181457579))
  1780. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.360375285, 0.855028033))
  1781. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, -2.09287834, -1.67636871, 0, 0, -1, -0.762337089, 0.64718014, 0, 0.64718014, 0.762337089, 0))
  1782. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 1, 1))
  1783. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.347673237, 0.200000003))
  1784. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.92069435, 1.2256484, -0.00617980957, -0.419105321, -0.907937646, 0, 0.907937646, -0.419105321, 0, 0, 0, 1))
  1785. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.811117411, 1, 0.682280481))
  1786. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.255855531, 0.200000003))
  1787. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.67616653, 1.5158186, -0.00617980957, -0.160844505, -0.986979842, 0, 0.986979842, -0.160844505, 0, 0, 0, 1))
  1788. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.611513615, 1, 0.540743589))
  1789. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1790. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.233675, 2.10709572, -0.00617980957, -0.755952477, -0.654626429, 0, 0.654626429, -0.755952477, 0, 0, 0, 1))
  1791. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.20867686, 0.353842884, 0.682280481))
  1792. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1793. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.736684799, -2.71795845, -0.00108337402, 0.965925634, 0.258819968, 0, 0.258819968, -0.965925634, 0, 0, 0, -1))
  1794. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.747607052, 0.780268669, 0.181457579))
  1795. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1796. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.93608284, -0.698377609, -0.00617980957, 0.310402304, -0.950605333, 0, 0.950605333, 0.310402304, 0, 0, 0, 1))
  1797. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.693169832, 1, 0.540743589))
  1798. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1799. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.28986931, -1.23334312, -0.00617980957, 0.385481775, 0.922715485, 0, -0.922715485, 0.385481775, 0, 0, 0, 1))
  1800. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.758492708))
  1801. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1802. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00617980957, -3.87358093, -0.731619835, 0, 0, -1, -0.366371691, 0.930468678, 0, 0.930468678, 0.366371691, 0))
  1803. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.987130761, 0.281259179))
  1804. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.219201297, 0.200000003, 0.200000003))
  1805. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0824842453, -2.77237892, 0.00509643555, -0.999841511, -0.017804997, 0, -0.0178049952, 0.999841511, 0, 0, 0, -1))
  1806. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.221378535, 0.627843201))
  1807. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.241339236, 0.290695429, 0.200000003))
  1808. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.36510158, -2.03685951, 0.00399780273, -0.96686846, 0.255275071, 0, 0.255275071, 0.96686846, 0, 0, 0, -1))
  1809. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1810. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.547638953))
  1811. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, -2.33703136, -1.2791481, 0, 0, -1, -0.762337089, 0.64718014, 0, 0.64718014, 0.762337089, 0))
  1812. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.887328923, 1))
  1813. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1814. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.919178963, 2.95521355, 0.00617980957, 0.951985657, -0.306142688, 0, -0.306142688, -0.951985657, 0, 0, 0, -1))
  1815. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.685909688))
  1816. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.217386499, 0.34114024))
  1817. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00617980957, 2.46054268, 2.47250938, 0, 0, 1, -0.51394093, -0.857825577, 0, 0.857825577, -0.51394093, 0))
  1818. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 1, 1))
  1819. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1820. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.23094559, 1.39390969, -0.00617980957, -0.214043736, -0.976824045, 0, 0.976824045, -0.214043751, 0, 0, 0, 1))
  1821. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.557076275, 0.645990193, 0.540743589))
  1822. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1823. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.84448242, 0.838493824, 1.85232544, 0.149112567, -0.691205263, 0.707107365, -0.977512717, -0.210876703, 4.84689167e-07, 0.149112135, -0.691206515, -0.707106292))
  1824. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.477234632, 0.477234185, 0.480862737))
  1825. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1826. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.750378609, 2.77275085, -0.00617980957, -0.934822679, 0.355115056, 0, -0.355115026, -0.934822679, 0, 0, 0, 1))
  1827. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.54981792, 0.885514319, 0.682280481))
  1828. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.265654594, 0.200000003, 0.200000003))
  1829. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.609694481, -3.93048286, -0.00509643555, 0.997860551, -0.0653780922, 0, 0.0653780922, 0.997860551, 0, 0, 0, 1))
  1830. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1831. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.234080642, 0.332430273))
  1832. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00617980957, 2.50852585, 2.29498291, 0, 0, 1, -0.281896442, -0.95944494, 0, 0.95944494, -0.281896412, 0))
  1833. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 1, 1))
  1834. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.262750924, 0.200000003))
  1835. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.39787149, -2.10101891, 0.00399780273, -0.994890571, 0.100959189, 0, 0.100959189, 0.994890571, 0, 0, 0, -1))
  1836. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.548003435, 1, 0.540743589))
  1837. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1838. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0171282291, 2.70125008, -0.00108337402, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  1839. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.457274228, 0.326624125, 0.181457579))
  1840. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.451467067, 0.200000003))
  1841. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.21298981, -1.26969528, 0.00399780273, -0.802200496, 0.597054839, 0, 0.597054839, 0.802200496, 0, 0, 0, -1))
  1842. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.738534153, 1, 0.540743589))
  1843. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  1844. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.356769562, -1.16553593, 0.00399780273, -0.646994114, -0.7624951, 0, -0.7624951, 0.646994114, 0, 0, 0, -1))
  1845. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  1846. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1847. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.765302181, 2.71280479, -0.00617980957, -0.980935395, -0.194334343, 0, 0.194334343, -0.980935395, 0, 0, 0, 1))
  1848. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.21774964, 0.845593631, 0.682280481))
  1849. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1850. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.61263847, 1.81222057, -0.00617980957, -0.644530058, -0.764579058, 0, 0.764579058, -0.644530058, 0, 0, 0, 1))
  1851. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.493565857, 0.860110283, 0.75486356))
  1852. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.218838394, 0.200000003, 0.200000003))
  1853. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.5053091, 2.90195084, -0.00617980957, -0.925037682, -0.379875302, 0, 0.379875302, -0.925037682, 0, 0, 0, 1))
  1854. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.471790552, 0.75486356))
  1855. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1856. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.66809082, -0.380858183, -0.00617980957, 0.133528367, 0.991044998, 0, -0.991044998, 0.133528367, 0, 0, 0, 1))
  1857. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.154239208, 0.758492708))
  1858. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1859. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.53231144, 3.18483734, -0.00617980957, -0.925037682, -0.379875302, 0, 0.379875302, -0.925037682, 0, 0, 0, 1))
  1860. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.395578563, 0.860110283, 0.75486356))
  1861. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.330979109, 0.200000003))
  1862. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.77544022, 1.73250675, -0.00617980957, -0.586683154, -0.809816599, 0, 0.809816599, -0.586683154, 0, 0, 0, 1))
  1863. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.823819637, 1, 0.75486356))
  1864. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.352391154, 0.200000003))
  1865. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.05459976, -6.68583679, 0.00509643555, -0.780858099, 0.624708414, 0, 0.624708414, 0.780858099, 0, 0, 0, -1))
  1866. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.170570612, 1, 0.627843201))
  1867. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.290695786, 0.608609557, 0.200000003))
  1868. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.03260922, -1.79297638, 0.00399780273, -0.994543791, 0.104320213, 0, 0.104320213, 0.994543791, 0, 0, 0, -1))
  1869. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1870. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1871. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.3314476, -2.39729118, -0.00144958496, 0.863361776, -0.504585445, 0, -0.504585445, -0.863361776, 0, 0, 0, -1))
  1872. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.250412077, 0.339326113, 0.145166054))
  1873. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1874. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.765026093, 3.08714294, -0.00617980957, -0.991837025, -0.12751177, 0, 0.12751177, -0.991837025, 0, 0, 0, 1))
  1875. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.54981792, 0.885514319, 0.75486356))
  1876. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.320454895, 0.514614403, 0.200000003))
  1877. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.07661819, -1.65882301, 0.00399780273, -0.783059955, 0.621946216, 0, 0.621946216, 0.783059955, 0, 0, 0, -1))
  1878. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1879. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.387956887, 0.200000003))
  1880. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.75068474, 2.15000439, -0.00617980957, -0.544387698, -0.838833809, 0, 0.838833809, -0.544387698, 0, 0, 0, 1))
  1881. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.704057336, 1, 0.718571961))
  1882. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.718935966, 0.200000003))
  1883. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0369513035, -7.76455879, 0.00509643555, -0.999420762, 0.0340300053, 0, 0.0340300053, 0.999420762, 0, 0, 0, -1))
  1884. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.870998561, 1, 0.627843201))
  1885. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1886. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.22907639, 0.921982765, -0.00617980957, -0.358075142, -0.933692813, 0, 0.933692813, -0.358075142, 0, 0, 0, 1))
  1887. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.20867686, 0.353842884, 0.75486356))
  1888. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1889. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.264788151, 3.04513931, -0.00108337402, -0.993017852, 0.117964216, 0, 0.117964208, 0.993017852, 0, 0, 0, -1))
  1890. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.348399431, 0.217749402, 0.181457579))
  1891. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1892. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.802950382, 3.54039955, -0.00617980957, -0.98355931, -0.180585533, 0, 0.180585548, -0.98355931, 0, 0, 0, 1))
  1893. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.244968459, 0.979872406, 0.75486356))
  1894. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.381424397, 0.200000003))
  1895. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.74973297, 2.14986134, -0.00617980957, -0.544387698, -0.838833809, 0, 0.838833809, -0.544387698, 0, 0, 0, 1))
  1896. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.809302986, 1, 0.685909688))
  1897. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1898. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.908464432, -2.85993767, -0.00144958496, 0.940802634, -0.338955045, 0, -0.338955015, -0.940802634, 0, 0, 0, -1))
  1899. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0816561282, 0.998018026, 0.145166054))
  1900. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 2.06898212, 0.200000003))
  1901. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400656462, -6.40345573, 0.00218200684, -0.999330342, 0.0365930237, 0, 0.03659302, 0.999330342, 0, 0, 0, -1))
  1902. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.698613465, 1, 0.518968642))
  1903. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1904. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.65107155, -0.67069149, -0.00509643555, 0.207573161, -0.978219509, 0, 0.978219509, 0.207573161, 0, 0, 0, 1))
  1905. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  1906. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1907. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.692037582, 2.73394394, 0.000366210938, -0.969999254, -0.243107855, 0, -0.243107855, 0.969999254, 0, 0, 0, -1))
  1908. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.157868505, 0.0889143348, 0.290332109))
  1909. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.313559175, 0.200000003))
  1910. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.14036751, 1.03079128, -0.00617980957, -0.358075142, -0.933692813, 0, 0.933692813, -0.358075142, 0, 0, 0, 1))
  1911. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.823819637, 1, 0.75486356))
  1912. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.312107503, 0.200000003))
  1913. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.218442678, 3.59352493, -0.00617980957, -0.999859989, -0.016738005, 0, 0.0167380031, -0.999859989, 0, 0, 0, 1))
  1914. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.168756083, 1, 0.75486356))
  1915. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.232628927, 0.200000003))
  1916. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.33631229, -1.66927528, 0.00509643555, -0.762336612, 0.647180796, 0, 0.647180796, 0.762336612, 0, 0, 0, -1))
  1917. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.88007158, 1, 0.627843201))
  1918. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1919. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.921545982, 2.77852249, -0.00108337402, -0.944369316, 0.328886926, 0, 0.328886956, 0.944369435, 0, 0, 0, -1))
  1920. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.312107801, 0.560704768, 0.181457579))
  1921. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.262751281, 0.200000003, 0.200000003))
  1922. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.66851425, 2.03535652, -0.00509643555, -0.578382373, -0.815765858, 0, 0.815765858, -0.578382373, 0, 0, 0, 1))
  1923. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1924. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.31428495, 0.200000003))
  1925. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.08257866, -6.62673187, 0.00163269043, -0.780858099, 0.624708414, 0, 0.624708414, 0.780858099, 0, 0, 0, -1))
  1926. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.466347098, 1, 0.520783186))
  1927. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1928. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00617980957, 1.16735649, 3.62220383, 0, 0, 1, -0.820054412, -0.572285771, 0, 0.572285771, -0.820054412, 0))
  1929. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 0.950839162, 0.999831319))
  1930. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1931. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.31614685, -2.40288162, 0.00689697266, -0.873654723, 0.486546397, 0, 0.486546397, 0.873654723, 0, 0, 0, -1))
  1932. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.651434362, 0.379246801, 0.682280481))
  1933. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.255855858, 0.233354717, 0.200000003))
  1934. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.59789848, -4.37771225, 0.00146484375, -0.955808342, 0.293990642, 0, 0.293990672, 0.955808342, 0, 0, 0, -1))
  1935. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.518968642))
  1936. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1937. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.40602303, 2.44054604, -0.00108337402, -0.866024017, -0.500002444, 0, -0.500002444, 0.866024017, 0, 0, 0, -1))
  1938. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.747607052, 0.326624095, 0.181457579))
  1939. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.282348722, 0.200000003, 0.200000003))
  1940. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.552742, 0.227590322, -0.00509643555, -0.0403800309, -0.999184489, 0, 0.999184489, -0.0403800309, 0, 0, 0, 1))
  1941. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1942. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.451467067, 0.200000003))
  1943. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.64382839, -1.83925056, 0.00399780273, -0.966787696, 0.255581141, 0, 0.255581141, 0.966787696, 0, 0, 0, -1))
  1944. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.738534153, 1, 0.540743589))
  1945. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1946. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.74543285, -2.85110474, 0.00509643555, -0.680761933, 0.732504845, 0, 0.732504845, 0.680761933, 0, 0, 0, -1))
  1947. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.488122106, 0.459087789, 0.627843201))
  1948. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.292873263, 0.200000003, 0.200000003))
  1949. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00532388687, -4.19390678, -0.00509643555, 0.991763532, 0.128082708, 0, -0.128082708, 0.991763532, 0, 0, 0, 1))
  1950. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  1951. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1952. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0826165676, -2.82496071, 0.00779724121, -0.999192715, 0.0401740447, 0, 0.0401740447, 0.999192715, 0, 0, 0, -1))
  1953. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.651434362, 0.847407997, 0.673207641))
  1954. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.419530511, 0.200000003))
  1955. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.53978348, 2.98015785, -0.00617980957, -0.742826223, -0.669484258, 0, 0.669484258, -0.742826223, 0, 0, 0, 1))
  1956. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.611513615, 1, 0.540743589))
  1957. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.225733534, 0.200000003))
  1958. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.3704977, -1.89388084, 0.00617980957, -0.9122262, 0.409687072, 0, 0.409687042, 0.9122262, 0, 0, 0, -1))
  1959. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.611513615, 1, 0.689538777))
  1960. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.372351468, 0.200000003))
  1961. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.533741, -0.969551086, 0.00509643555, -0.381673515, 0.924297214, 0, 0.924297214, 0.381673515, 0, 0, 0, -1))
  1962. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.914548635, 1, 0.627843201))
  1963. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.362553149, 0.427514702, 0.200000003))
  1964. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.06524038, -7.55393028, 0.00509643555, -0.988596618, 0.150588453, 0, 0.150588453, 0.988596618, 0, 0, 0, -1))
  1965. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  1966. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1967. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.92553043, -3.3758812, 0.00509643555, -0.847150266, 0.531353354, 0, 0.531353354, 0.847150266, 0, 0, 0, -1))
  1968. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.488122106, 0.459087789, 0.627843201))
  1969. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.243153498, 0.200000003))
  1970. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.7138176, -1.21804237, 0.00509643555, -0.568860292, 0.822434187, 0, 0.822434187, 0.568860292, 0, 0, 0, -1))
  1971. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.898217261, 1, 0.627843201))
  1972. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1973. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.61662865, 1.21542072, -0.00108337402, -0.435218453, 0.900324941, 0, 0.900324941, 0.435218453, 0, 0, 0, -1))
  1974. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0580665655, 0.165126652, 0.181457579))
  1975. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.21375756, 0.200000003, 0.200000003))
  1976. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.04316807, 3.7374115, 0.00509643555, 0.902277112, 0.431156576, 0, 0.431156605, -0.902277112, 0, 0, 0, -1))
  1977. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.803857684, 0.627843201))
  1978. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.378158152, 0.200000003))
  1979. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.873037338, -8.17247772, 0.00509643555, -0.990351081, 0.138581365, 0, 0.138581365, 0.990351081, 0, 0, 0, -1))
  1980. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.410095185, 1, 0.627843201))
  1981. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.236984208, 0.427514702, 0.200000003))
  1982. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.09464169, -7.38939667, 0.00509643555, -0.915936351, 0.401323706, 0, 0.401323676, 0.915936351, 0, 0, 0, -1))
  1983. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  1984. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.357471824, 0.200000003))
  1985. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.707932472, 4.72424889, 0.00509643555, 0.992830396, 0.119531818, 0, 0.119531818, -0.992830396, 0, 0, 0, -1))
  1986. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.981687903, 1, 0.627843201))
  1987. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.253315419, 0.277630508, 0.200000003))
  1988. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.460040331, -3.57405281, -0.00617980957, 0.998930931, -0.0462280512, 0, 0.0462280475, 0.998930931, 0, 0, 0, 1))
  1989. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  1990. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.232628927, 0.200000003))
  1991. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.10611534, 0.150121689, -0.00509643555, 0.135541737, -0.99077177, 0, 0.99077177, 0.135541737, 0, 0, 0, 1))
  1992. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.88007158, 1, 0.627843201))
  1993. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.243153498, 0.200000003))
  1994. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.07676888, 0.880034447, 0.00509643555, 0.0705480874, 0.997508407, 0, 0.997508407, -0.0705480874, 0, 0, 0, -1))
  1995. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.898217261, 1, 0.627843201))
  1996. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.335697383, 0.200000003, 0.200000003))
  1997. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.99830246, -1.58494568, -0.00617980957, 0.574124992, -0.818767786, 0, 0.818767786, 0.574124992, 0, 0, 0, 1))
  1998. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.733089864, 0.540743589))
  1999. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.217023805, 0.200000003, 0.200000003))
  2000. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.329160213, -2.72081757, 0.00509643555, -0.991300464, 0.131618291, 0, 0.131618291, 0.991300464, 0, 0, 0, -1))
  2001. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.277630448, 0.627843201))
  2002. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2003. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.66166496, -1.8116169, -0.00509643555, 0.61276561, -0.790264785, 0, 0.790264785, 0.61276561, 0, 0, 0, 1))
  2004. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  2005. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2006. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.69028163, 2.63173676, -0.00108337402, -0.96592617, 0.258818239, 0, 0.258818239, 0.96592617, 0, 0, 0, -1))
  2007. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.529857457, 0.145166278, 0.181457579))
  2008. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2009. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.9135952, -1.56173515, 0.00653076172, -0.742870808, 0.669434786, 0, 0.669434786, 0.742870808, 0, 0, 0, -1))
  2010. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.633288562, 0.885514081, 0.685909688))
  2011. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2012. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.62210655, 1.18748665, -0.00108337402, -0.435218453, 0.900324941, 0, 0.900324941, 0.435218453, 0, 0, 0, -1))
  2013. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0580665655, 0.596996307, 0.181457579))
  2014. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.224281892, 0.200000003))
  2015. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.15112877, -2.76355362, -0.00108337402, 0.909429431, -0.415858209, 0, -0.415858209, -0.909429431, 0, 0, 0, -1))
  2016. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0889144465, 1, 0.181457579))
  2017. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2018. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.755256653, -2.7025547, 0.00509643555, -0.970756352, -0.240066886, 0, -0.240066886, 0.970756352, 0, 0, 0, -1))
  2019. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.542559564, 0.221378535, 0.627843201))
  2020. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2021. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.18961525, -1.41417885, 0.00509643555, -0.633671284, 0.773602486, 0, 0.773602486, 0.633671284, 0, 0, 0, -1))
  2022. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  2023. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2024. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-4.01541996, -7.24855614, 0.00509643555, -0.863538563, 0.504282832, 0, 0.504282832, 0.863538563, 0, 0, 0, -1))
  2025. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.266743451, 0.669579566, 0.627843201))
  2026. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2027. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.714076996, 2.64566994, -0.00108337402, -0.965925634, -0.258819968, 0, -0.258819968, 0.965925634, 0, 0, 0, -1))
  2028. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.529857457, 0.326624095, 0.181457579))
  2029. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2030. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.84531593, 1.58749247, -0.00617980957, -0.120172247, -0.992753088, 0, 0.992753088, -0.120172247, 0, 0, 0, 1))
  2031. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.952654719, 0.885514081, 0.540743589))
  2032. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.207225099, 0.249685958, 0.200000003))
  2033. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.46561432, 2.19414997, -0.00509643555, -0.51394093, -0.857825577, 0, 0.857825577, -0.51394093, 0, 0, 0, 1))
  2034. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  2035. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2036. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.36371803, -3.50840759, -0.00617980957, 0.898890972, 0.438172519, 0, -0.438172519, 0.898890972, 0, 0, 0, 1))
  2037. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.988946319, 0.807487726, 0.540743589))
  2038. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.31065613, 0.200000003, 0.200000003))
  2039. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.57785797, 3.2252388, 0.00509643555, 0.818950713, 0.573863924, 0, 0.573863924, -0.818950713, 0, 0, 0, -1))
  2040. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.963540614, 0.627843201))
  2041. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  2042. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.87388992, 2.9427824, -0.00617980957, -0.684347212, -0.729156256, 0, 0.729156256, -0.684347212, 0, 0, 0, 1))
  2043. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.698613465, 1, 0.540743589))
  2044. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "New Yeller", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2045. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.65096855, -0.00762939453, -2.01138878, -0.586682498, -0.809817076, 0, 0, 0, 1, -0.809817076, 0.586682498, 0))
  2046. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.33333838, 0.785713017, 0.343317658))
  2047. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.215208992, 0.200000003))
  2048. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.448246, -1.11020756, 0.00689697266, -0.436331511, 0.899785936, 0, 0.899785936, 0.43633154, 0, 0, 0, -1))
  2049. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.651434362, 1, 0.682280481))
  2050. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2051. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.4315815, -1.57896233, -0.00144958496, 0.558885276, -0.82924509, 0, -0.82924509, -0.558885276, 0, 0, 0, -1))
  2052. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0816561282, 0.860110044, 0.145166054))
  2053. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2054. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.682349205, 2.99709511, -0.00108337402, -0.982291281, -0.187360331, 0, -0.187360331, 0.982291281, 0, 0, 0, -1))
  2055. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.348399431, 0.10524556, 0.181457579))
  2056. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.233355045, 0.208313674, 0.200000003))
  2057. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.84409332, -2.66108322, -0.00617980957, 0.610302091, 0.792168856, 0, -0.792168856, 0.610302091, 0, 0, 0, 1))
  2058. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.540743589))
  2059. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.243153498, 0.200000003))
  2060. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.93728256, 1.25863075, -0.00509643555, -0.274404347, -0.96161449, 0, 0.96161449, -0.274404347, 0, 0, 0, 1))
  2061. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.898217261, 1, 0.627843201))
  2062. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2063. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.543786049, 4.48239899, 0.00509643555, 0.996499121, 0.0836038813, 0, 0.0836038813, -0.996499121, 0, 0, 0, -1))
  2064. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.981687903, 0.890957475, 0.627843201))
  2065. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2066. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0333168507, 2.66819954, -0.00108337402, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  2067. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0580665655, 0.326624095, 0.181457579))
  2068. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.290695429, 0.200000003))
  2069. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.12691879, 0.815297842, 0.00399780273, 0.091118142, 0.995840073, 0, 0.995840073, -0.091118142, 0, 0, 0, -1))
  2070. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.62784493, 1, 0.540743589))
  2071. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.520784616, 0.228636861, 0.200000003))
  2072. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.47187042, -2.48381996, -0.00509643555, 0.593336284, -0.804954708, 0, 0.804954708, 0.593336284, 0, 0, 0, 1))
  2073. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  2074. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2075. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.8040905, -2.46278954, -0.00218200684, 0.950160503, 0.311761349, 0, -0.311761349, 0.950160503, 0, 0, 0, 1))
  2076. CreateMesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.830351949, 0.145166829, 0.81038934))
  2077. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2078. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.20398331, 2.11733055, 0.00617980957, 0.67137599, -0.741116941, 0, -0.741116941, -0.67137599, 0, 0, 0, -1))
  2079. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.201418489, 0.078026928, 0.685909688))
  2080. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.425337195, 0.200000003))
  2081. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.54583168, 2.74838066, -0.00617980957, -0.545705736, -0.837976933, 0, 0.837976933, -0.545705736, 0, 0, 0, 1))
  2082. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.139722779, 1, 0.540743589))
  2083. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.425700128, 0.200000003))
  2084. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.23491859, -7.36514854, 0.00163269043, -0.915936351, 0.401323706, 0, 0.401323676, 0.915936351, 0, 0, 0, -1))
  2085. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.451830506, 1, 0.520783186))
  2086. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2087. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, -1.24108279, -1.69565392, 0, 0, -1, -0.999478281, 0.0322990268, 0, 0.0322990231, 0.999478281, 0))
  2088. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 0.747606397, 0.999831319))
  2089. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2090. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.648453712, 3.63608742, -0.00617980957, -0.991837025, -0.12751177, 0, 0.12751177, -0.991837025, 0, 0, 0, 1))
  2091. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.26129958, 0.860110283, 0.75486356))
  2092. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 1.08112586, 0.200000003))
  2093. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0199514627, -7.96922302, 0.00399780273, -0.999330342, 0.0365930237, 0, 0.03659302, 0.999330342, 0, 0, 0, -1))
  2094. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.221378833, 1, 0.627843201))
  2095. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2096. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.8624382, 2.98136139, 0.00509643555, 0.783803761, 0.621008575, 0, 0.621008575, -0.783803761, 0, 0, 0, -1))
  2097. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.488122106, 0.215934306, 0.627843201))
  2098. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.830712736))
  2099. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00617980957, 3.0785656, 0.11104393, 0, 0, 1, 0.209176272, -0.977878034, 0, 0.977878034, 0.209176272, 0))
  2100. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 0.887328923, 1))
  2101. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2102. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00617980957, -4.19547844, 0.143192291, 0, 0, -1, -0.134071723, 0.990971684, 0, 0.990971684, 0.134071723, 0))
  2103. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.616957366, 0.987130761, 0.281259179))
  2104. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2105. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.44782829, 4.11662674, 0.00509643555, 0.957341015, 0.288960516, 0, 0.288960546, -0.957341015, 0, 0, 0, -1))
  2106. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.981687903, 0.890957475, 0.627843201))
  2107. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.347673237, 0.200000003))
  2108. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.33941841, -0.264298916, -0.00617980957, 0.0584069341, -0.998292923, 0, 0.998292923, 0.0584069341, 0, 0, 0, 1))
  2109. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.811117411, 1, 0.75486356))
  2110. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.427514702, 0.200000003))
  2111. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.10204411, -7.634058, 0.00509643555, -0.915936351, 0.401323706, 0, 0.401323676, 0.915936351, 0, 0, 0, -1))
  2112. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.410095185, 1, 0.627843201))
  2113. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.292873263, 0.200000003, 0.200000003))
  2114. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.4320879, -3.83821487, -0.00509643555, 0.877048314, -0.480402172, 0, 0.480402172, 0.877048314, 0, 0, 0, 1))
  2115. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  2116. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.357471824, 0.200000003))
  2117. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.434890747, 4.91648483, 0.00509643555, 0.998090804, 0.0617649257, 0, 0.0617649257, -0.998090804, 0, 0, 0, -1))
  2118. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.981687903, 1, 0.627843201))
  2119. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.425700128, 0.200000003))
  2120. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.27160192, -7.54687309, 0.00163269043, -0.988596618, 0.150588453, 0, 0.150588453, 0.988596618, 0, 0, 0, -1))
  2121. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.451830506, 1, 0.520783186))
  2122. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2123. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.58555412, 2.09163857, -0.00617980957, -0.611164808, -0.791503429, 0, 0.791503429, -0.611164808, 0, 0, 0, 1))
  2124. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.890959024, 0.892772675, 0.758492708))
  2125. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2126. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.38188934, 2.41189957, -0.00108337402, -0.866026878, 0.499997497, 0, 0.499997497, 0.866026878, 0, 0, 0, -1))
  2127. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.82019043, 0.254040986, 0.181457579))
  2128. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.225733534, 0.200000003))
  2129. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.07917595, -1.54104042, 0.00636291504, -0.666063249, 0.745895267, 0, 0.745895267, 0.666063249, 0, 0, 0, -1))
  2130. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.618771911, 1, 0.687724292))
  2131. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2132. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.45400047, 1.4720335, 0.000366210938, -0.513983607, -0.857800066, 0, -0.857800066, 0.513983607, 0, 0, 0, -1))
  2133. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0979873836, 0.0362915695, 0.290332109))
  2134. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.255855858, 3.21180367, 0.200000003))
  2135. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.27078557, -5.83438301, 0.00509643555, -0.999330342, 0.0365930237, 0, 0.03659302, 0.999330342, 0, 0, 0, -1))
  2136. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 0.627843201))
  2137. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2138. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.39489841, -2.47587395, -0.00108337402, 0.856956363, 0.515389085, 0, 0.515389085, -0.856956363, 0, 0, 0, -1))
  2139. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.163312212, 0.288517922, 0.181457579))
  2140. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2141. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.51548386, 2.20681572, 0.000366210938, -0.834057033, -0.55167824, 0, -0.55167824, 0.834057033, 0, 0, 0, -1))
  2142. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.185087234, 0.127020478, 0.290332109))
  2143. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2144. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.76888466, 1.45444345, 0.00509643555, 0.326318741, 0.94525975, 0, 0.94525975, -0.326318741, 0, 0, 0, -1))
  2145. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.943581879, 0.981686771, 0.627843201))
  2146. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.232628927, 0.200000003))
  2147. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.29395199, -1.93130684, 0.00509643555, -0.935574591, 0.353129089, 0, 0.353129119, 0.935574591, 0, 0, 0, -1))
  2148. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.88007158, 1, 0.627843201))
  2149. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Bright red", "Part", Vector3.new(0.200000003, 0.391223073, 0.200000003))
  2150. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.16579437, 0.229180336, -0.00617980957, -0.114349194, -0.993440628, 0, 0.993440628, -0.114349186, 0, 0, 0, 1))
  2151. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.823819637, 1, 0.682280481))
  2152. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2153. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.93153, 2.07085991, -0.00108337402, -0.707102776, -0.707110822, 0, -0.707110822, 0.707102776, 0, 0, 0, -1))
  2154. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0580665655, 0.290332556, 0.181457579))
  2155. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2156. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, 0.0868396759, -0.96333313, 0, 0, -1, -0.829208791, -0.558939099, 0, -0.558939099, 0.829208791, 0))
  2157. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 0.811116636, 0.999831319))
  2158. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2159. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.755803347, 2.67315483, 0.000366210938, -0.961597979, 0.274462223, 0, 0.274462223, 0.961597979, 0, 0, 0, -1))
  2160. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.0399207957, 0.0471790284, 0.290332109))
  2161. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2162. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.158890486, 3.0970726, 0.00617980957, 0.998783052, -0.049320057, 0, -0.0493200608, -0.998783052, 0, 0, 0, -1))
  2163. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.194160149, 0.078026928, 0.685909688))
  2164. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Deep orange", "Part", Vector3.new(0.200000003, 0.200000003, 0.830712736))
  2165. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00399780273, -2.48457146, -1.29671478, 0, 0, -1, -0.71186173, 0.702319622, 0, 0.702319622, 0.71186173, 0))
  2166. CreateMesh("SpecialMesh", Part, Enum.MeshType.Wedge, "", Vector3.new(0, 0, 0), Vector3.new(0.544374108, 0.887328923, 1))
  2167. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Gold", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  2168. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.84397888, 0.784184933, 1.85253906, 0.149112567, -0.691205263, 0.707107365, -0.977512717, -0.210876703, 4.84689167e-07, 0.149112135, -0.691206515, -0.707106292))
  2169. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.48086375, 0.078026928, 0.480862737))
  2170. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.292873263, 0.200000003, 0.200000003))
  2171. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.882060051, -3.87728691, -0.00509643555, 0.932663858, 0.360746741, 0, -0.360746711, 0.932663858, 0, 0, 0, 1))
  2172. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.981686771, 0.627843201))
  2173. Part = CreatePart(sp, Enum.Material.SmoothPlastic, 0.20000000298023, 0, "Really black", "Part", Vector3.new(0.200000003, 0.251500458, 0.200000003))
  2174. PartWeld = CreateWeld(sp, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.44519234, -2.12465858, 0.00509643555, -0.449296415, 0.893382847, 0, 0.893382847, 0.449296415, 0, 0, 0, -1))
  2175. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.488122106, 1, 0.627843201))
  2176. rayCast = function(Position, Direction, Range, Ignore)
  2177.  
  2178. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  2179. end
  2180.  
  2181. local GetNearest = function(obj, distance)
  2182.  
  2183. local last, lastx = distance + 1, nil
  2184. for i,v in pairs(workspace:GetChildren()) do
  2185. if v:IsA("Model") and v ~= Character and v:findFirstChild("Humanoid") and v:findFirstChild("Torso") and v:findFirstChild("Humanoid").Health > 0 then
  2186. local t = v.Torso
  2187. local dist = (t.Position - obj.Position).magnitude
  2188. if dist <= distance and dist < last then
  2189. last = dist
  2190. lastx = v
  2191. end
  2192. end
  2193. end
  2194. return lastx
  2195. end
  2196.  
  2197. Damagefunc = function(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  2198.  
  2199. if hit.Parent == nil then
  2200. return
  2201. end
  2202. local h = hit.Parent:FindFirstChild("Humanoid")
  2203. for _,v in pairs(hit.Parent:children()) do
  2204. if v:IsA("Humanoid") then
  2205. h = v
  2206. end
  2207. end
  2208. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  2209. if hit.Parent:findFirstChild("DebounceHit") ~= nil and hit.Parent.DebounceHit.Value == true then
  2210. return
  2211. end
  2212. local c = Create("ObjectValue")({Name = "creator", Value = game:service("Players").LocalPlayer, Parent = h})
  2213. game:GetService("Debris"):AddItem(c, 0.5)
  2214. if HitSound ~= nil and HitPitch ~= nil then
  2215. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  2216. end
  2217. local Damage = math.random(minim, maxim)
  2218. local blocked = false
  2219. local block = hit.Parent:findFirstChild("Block")
  2220. if block ~= nil and block.className == "IntValue" and block.Value > 0 then
  2221. blocked = true
  2222. block.Value = block.Value - 1
  2223. print(block.Value)
  2224. end
  2225. if blocked == false then
  2226. h.Health = h.Health - Damage
  2227. ShowDamage(Part.CFrame * CFrame.new(0, 0, Part.Size.Z / 2).p + Vector3.new(0, 1.5, 0), -Damage, 1.5, Part.BrickColor.Color)
  2228. else
  2229. h.Health = h.Health - Damage / 2
  2230. ShowDamage(Part.CFrame * CFrame.new(0, 0, Part.Size.Z / 2).p + Vector3.new(0, 1.5, 0), -Damage, 1.5, Part.BrickColor.Color)
  2231. end
  2232. if Type == "Knockdown" then
  2233. local hum = hit.Parent.Humanoid
  2234. hum.PlatformStand = true
  2235. coroutine.resume(coroutine.create(function(HHumanoid)
  2236.  
  2237. swait(1)
  2238. HHumanoid.PlatformStand = false
  2239. end
  2240. ), hum)
  2241. local angle = hit.Position - (Property.Position + Vector3.new(0, 0, 0)).unit
  2242. local bodvol = Create("BodyVelocity")({velocity = angle * knockback, P = 5000, maxForce = Vector3.new(8000, 8000, 8000), Parent = hit})
  2243. local rl = Create("BodyAngularVelocity")({P = 3000, maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000, angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)), Parent = hit})
  2244. game:GetService("Debris"):AddItem(bodvol, 0.5)
  2245. game:GetService("Debris"):AddItem(rl, 0.5)
  2246. elseif Type == "Normal" then
  2247. local vp = Create("BodyVelocity")({P = 500, maxForce = Vector3.new(math.huge, 0, math.huge), velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05})
  2248. if knockback > 0 then
  2249. vp.Parent = hit.Parent.Torso
  2250. end
  2251. game:GetService("Debris"):AddItem(vp, 0.5)
  2252. elseif Type == "Up" then
  2253. local bodyVelocity = Create("BodyVelocity")({velocity = Vector3.new(0, 20, 0), P = 5000, maxForce = Vector3.new(8000, 8000, 8000), Parent = hit})
  2254. game:GetService("Debris"):AddItem(bodyVelocity, 0.5)
  2255. local bodyVelocity = Create("BodyVelocity")({velocity = Vector3.new(0, 20, 0), P = 5000, maxForce = Vector3.new(8000, 8000, 8000), Parent = hit})
  2256. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  2257. elseif Type == "Snare" then
  2258. local bp = Create("BodyPosition")({P = 2000, D = 100, maxForce = Vector3.new(math.huge, math.huge, math.huge), position = hit.Parent.Torso.Position, Parent = hit.Parent.Torso})
  2259. game:GetService("Debris"):AddItem(bp, 1)
  2260. elseif Type == "Slashnare" then
  2261. Effects.Block.Create(BrickColor.new("Pastel Blue"), hit.Parent.Torso.CFrame * cn(0, 0, 0), 15, 15, 15, 3, 3, 3, 0.07)
  2262. for i = 1, math.random(4, 5) do
  2263. Effects.Sphere.Create(BrickColor.new("Teal"), hit.Parent.Torso.CFrame * cn(math.random(-5, 5), math.random(-5, 5), math.random(-5, 5)) * angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 15, 1, 0, 5, 0, 0.02)
  2264. end
  2265. local bp = Create("BodyPosition")({P = 2000, D = 100, maxForce = Vector3.new(math.huge, math.huge, math.huge), position = hit.Parent.Torso.Position, Parent = hit.Parent.Torso})
  2266. game:GetService("Debris"):AddItem(bp, 1)
  2267. elseif Type == "Freeze" then
  2268. local BodPos = Create("BodyPosition")({P = 50000, D = 1000, maxForce = Vector3.new(math.huge, math.huge, math.huge), position = hit.Parent.Torso.Position, Parent = hit.Parent.Torso})
  2269. local BodGy = Create("BodyGyro")({maxTorque = Vector3.new(400000, 400000, 400000) * math.huge, P = 20000, Parent = hit.Parent.Torso, cframe = hit.Parent.Torso.CFrame})
  2270. hit.Parent.Torso.Anchored = true
  2271. coroutine.resume(coroutine.create(function(Part)
  2272.  
  2273. swait(1.5)
  2274. Part.Anchored = false
  2275. end
  2276. ), hit.Parent.Torso)
  2277. game:GetService("Debris"):AddItem(BodPos, 3)
  2278. game:GetService("Debris"):AddItem(BodGy, 3)
  2279. end
  2280. local debounce = Create("BoolValue")({Name = "DebounceHit", Parent = hit.Parent, Value = true})
  2281. game:GetService("Debris"):AddItem(debounce, Delay)
  2282. c = Instance.new("ObjectValue")
  2283. c.Name = "creator"
  2284. c.Value = Player
  2285. c.Parent = h
  2286. game:GetService("Debris"):AddItem(c, 0.5)
  2287. end
  2288. end
  2289.  
  2290. ShowDamage = function(Pos, Text, Time, Color)
  2291.  
  2292. local Rate = 0.033333333333333
  2293. if not Pos then
  2294. local Pos = Vector3.new(0, 0, 0)
  2295. end
  2296. local Text = Text or ""
  2297. local Time = Time or 2
  2298. if not Color then
  2299. local Color = Color3.new(1, 0, 1)
  2300. end
  2301. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  2302. EffectPart.Anchored = true
  2303. local BillboardGui = Create("BillboardGui")({Size = UDim2.new(3, 0, 3, 0), Adornee = EffectPart, Parent = EffectPart})
  2304. local TextLabel = Create("TextLabel")({BackgroundTransparency = 1, Size = UDim2.new(1, 0, 1, 0), Text = Text, TextColor3 = Color, TextScaled = true, Font = Enum.Font.ArialBold, Parent = BillboardGui})
  2305. game.Debris:AddItem(EffectPart, Time + 0.1)
  2306. EffectPart.Parent = game:GetService("Workspace")
  2307. delay(0, function()
  2308.  
  2309. local Frames = Time / Rate
  2310. for Frame = 1, Frames do
  2311. wait(Rate)
  2312. local Percent = Frame / Frames
  2313. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  2314. TextLabel.TextTransparency = Percent
  2315. end
  2316. if EffectPart and EffectPart.Parent then
  2317. EffectPart:Destroy()
  2318. end
  2319. end
  2320. )
  2321. end
  2322.  
  2323. MagniDamage = function(Part, magni, mindam, maxdam, knock, Type)
  2324.  
  2325. for _,c in pairs(workspace:children()) do
  2326. local hum = c:findFirstChild("Humanoid")
  2327. if hum ~= nil then
  2328. local head = c:findFirstChild("Torso")
  2329. if head ~= nil then
  2330. local targ = head.Position - Part.Position
  2331. local mag = targ.magnitude
  2332. if mag <= magni and c.Name ~= Player.Name then
  2333. Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "http://www.roblox.com/asset/?id=", 1)
  2334. end
  2335. end
  2336. end
  2337. end
  2338. end
  2339.  
  2340. EffectModel = Instance.new("Model", Character)
  2341. EffectModel.Name = "Effects"
  2342. Effects = {
  2343. Block = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  2344.  
  2345. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2346. prt.Anchored = true
  2347. prt.CFrame = cframe
  2348. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2349. game:GetService("Debris"):AddItem(prt, 10)
  2350. if Type == 1 or Type == nil then
  2351. table.insert(Effects, {prt, "Block1", delay, x3, y3, z3, msh})
  2352. else
  2353. if Type == 2 then
  2354. table.insert(Effects, {prt, "Block2", delay, x3, y3, z3, msh})
  2355. end
  2356. end
  2357. end
  2358. }
  2359. ,
  2360. Sphere = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2361.  
  2362. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2363. prt.Anchored = true
  2364. prt.CFrame = cframe
  2365. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2366. game:GetService("Debris"):AddItem(prt, 10)
  2367. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  2368. end
  2369. }
  2370. ,
  2371. Ring = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2372.  
  2373. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2374. prt.Anchored = true
  2375. prt.CFrame = cframe
  2376. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2377. game:GetService("Debris"):AddItem(prt, 10)
  2378. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  2379. end
  2380. }
  2381. ,
  2382. Wave = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  2383.  
  2384. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  2385. prt.Anchored = true
  2386. prt.CFrame = cframe
  2387. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2388. game:GetService("Debris"):AddItem(prt, 10)
  2389. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  2390. end
  2391. }
  2392. ,
  2393. Break = {Create = function(brickcolor, cframe, x1, y1, z1)
  2394.  
  2395. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  2396. prt.Anchored = true
  2397. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2398. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  2399. local num = math.random(10, 50) / 1000
  2400. game:GetService("Debris"):AddItem(prt, 10)
  2401. table.insert(Effects, {prt, "Shatter", num, prt.CFrame, math.random() - math.random(), 0, math.random(50, 100) / 100})
  2402. end
  2403. }
  2404. }
  2405. attackone = function()
  2406.  
  2407. attack = true
  2408. local con = Hitbox.Touched:connect(function(hit)
  2409.  
  2410. Damagefunc(Hitbox, hit, 10, 15, 0, "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  2411. end
  2412. )
  2413. Humanoid.WalkSpeed = 10
  2414. for i = 0, 1, 0.1 do
  2415. swait()
  2416. PlayAnimationFromTable({CFrame.new(9.90461558e-07, -0.0269755963, -1.33062713e-07, 0.484809726, 0, 0.874619603, 0.181843653, 0.978147626, -0.100797616, -0.855507076, 0.2079117, 0.474215478), CFrame.new(0.272765219, 1.46722174, -0.151196867, 0.504384637, 0.265642196, -0.821602225, 0.0835590437, 0.932020843, 0.352640152, 0.859426379, -0.246518582, 0.447900146), CFrame.new(0.436315, 0.856815398, -1.10046577, 0.484426707, 0.832367659, -0.269248426, -0.149194002, -0.224658892, -0.962948322, -0.862016141, 0.506648123, 0.0153534822), CFrame.new(-1.45458651, 0.133483529, -0.538100183, 0.894684613, -0.377831578, -0.238291383, 0.0541951358, 0.621321738, -0.781679153, 0.443398595, 0.686442018, 0.576363564), CFrame.new(0.321673423, -2.04425955, 0.316776961, 0.725447536, 0.181843653, -0.66382128, -0.0642482042, 0.978147626, 0.197735801, 0.685272217, -0.100797616, 0.721277893), CFrame.new(-0.990755975, -1.81555724, 0.168436453, 0.819359839, 0.355739921, -0.449553698, -0.203368306, 0.91354543, 0.352244377, 0.535995126, -0.197189927, 0.820868611)}, 0.3, false)
  2417. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(70), math.rad(0), math.rad(0)), 0.3)
  2418. end
  2419. CFuncs.Sound.Create("rbxassetid://588693156", RootPart, 1, 1)
  2420. for i = 0, 1, 0.1 do
  2421. swait()
  2422. PlayAnimationFromTable({CFrame.new(-5.37605956e-07, -0.0269759707, -2.65892595e-07, 0.95835638, -0.143731385, -0.246767536, 0.202832907, 0.950870454, 0.233889297, 0.201026708, -0.27420193, 0.94042623), CFrame.new(-0.00822107494, 1.4970665, -0.0934140384, 0.995780408, 0.0777800605, 0.0486957729, -0.0854448378, 0.979415894, 0.182876214, -0.0334693044, -0.186265409, 0.981929123), CFrame.new(1.85052145, 0.540486038, 0.594636321, -0.313432425, -0.949446201, -0.0176644847, 0.16458869, -0.0359951556, -0.985705376, 0.935238361, -0.311859369, 0.167550176), CFrame.new(-1.39627409, 0.322296083, -0.440173209, 0.965051591, 0.246156633, 0.0899008214, 0.037774466, 0.208806977, -0.977227151, -0.259322822, 0.946470559, 0.192211121), CFrame.new(0.145454243, -2.11655879, 0.0429539829, 0.968100905, 0.135195538, -0.210956439, -0.120898388, 0.989490807, 0.0793190897, 0.219463035, -0.0512846112, 0.974271894), CFrame.new(-0.809797227, -1.70483541, -0.802485704, 0.922639728, 0.251619399, 0.292273164, -0.229988888, 0.967320919, -0.106748909, -0.309581995, 0.0312711596, 0.950358331)}, 0.4, false)
  2423. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(70), math.rad(0), math.rad(30)), 0.3)
  2424. end
  2425. con:disconnect()
  2426. Humanoid.WalkSpeed = 16
  2427. attack = false
  2428. end
  2429.  
  2430. attackthree = function()
  2431.  
  2432. attack = true
  2433. local con = Hitbox2.Touched:connect(function(hit)
  2434.  
  2435. Damagefunc(Hitbox, hit, 10, 25, 20, "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  2436. end
  2437. )
  2438. Humanoid.WalkSpeed = 10
  2439. for i = 0, 1, 0.1 do
  2440. swait()
  2441. PlayAnimationFromTable({CFrame.new(-4.0512532e-07, -0.0269752406, 1.1343509e-06, 0.652291775, 0.32209897, -0.68612504, 0.138890788, 0.839096427, 0.525952816, 0.745133996, -0.438371241, 0.50259918), CFrame.new(-0.14963904, 1.50293684, -0.456933886, 0.970636368, -0.169547856, 0.170640975, 0.101307511, 0.931519508, 0.349296749, -0.218177915, -0.321752995, 0.921343207), CFrame.new(1.70868564, 0.286226571, 0.667103469, 0.222669303, -0.74144417, 0.63299197, 0.209666699, 0.670520425, 0.711647511, -0.952080965, -0.0257447064, 0.304760486), CFrame.new(-0.932438672, 0.519827843, -1.11489081, 0.692989886, -0.623567283, -0.361840844, -0.316825658, 0.187430471, -0.929780185, 0.647600591, 0.758968711, -0.0676746294), CFrame.new(0.699801207, -2.04638171, -0.671367168, 0.903168499, -0.201811075, -0.378891528, 0.0801211596, 0.946344137, -0.313070595, 0.421742916, 0.252398252, 0.870877683), CFrame.new(-0.721940219, -1.57349551, -1.05035639, 0.974659562, 0.138890788, -0.175350934, -0.209864318, 0.839096427, -0.501870573, 0.0774311721, 0.525952816, 0.846981645)}, 0.3, false)
  2442. end
  2443. CFuncs.Sound.Create("rbxassetid://541909867", RootPart, 1, 1)
  2444. for i = 0, 1, 0.3 do
  2445. swait()
  2446. PlayAnimationFromTable({CFrame.new(1.14738941e-06, 0.173024461, -0.300001383, 0.820753217, -0.0431987122, 0.569647312, 0.137312263, 0.982822537, -0.123309284, -0.554535449, 0.179426044, 0.812586486), CFrame.new(-0.151165038, 1.52307844, -0.193341762, 0.734764338, 0.0308420174, -0.677621007, 0.127414405, 0.974908888, 0.182532325, 0.666248441, -0.220456913, 0.712398648), CFrame.new(1.50681877, 0.480150759, 0.4091205, 0.329704911, -0.691977739, 0.642231762, -0.449269891, 0.483302891, 0.751381993, -0.830331922, -0.536269665, -0.151537374), CFrame.new(-1.74142003, 0.18942523, -0.594004512, 0.683315635, 0.651401043, 0.329782426, -0.0130584389, 0.462511867, -0.886516869, -0.730006456, 0.601464391, 0.324547827), CFrame.new(0.0857783556, -2.11368537, 0.871180832, 0.0870718658, 0.265102953, -0.960280657, 0.516448081, 0.812281251, 0.271073043, 0.851880193, -0.519537985, -0.0661850572), CFrame.new(-0.795480609, -2.12096214, -0.168157578, 0.865960836, 0.137312263, -0.480892032, -0.0586723089, 0.982822537, 0.174978271, 0.496658206, -0.123309284, 0.859142303)}, 0.3, false)
  2447. end
  2448. for i = 0, 1, 0.13 do
  2449. swait()
  2450. PlayAnimationFromTable({CFrame.new(1.78068876e-06, 0.173024401, -0.300000221, 0.918112218, -0.079559505, 0.388252854, 0.137312263, 0.982822537, -0.123309284, -0.371773303, 0.16652362, 0.913265884), CFrame.new(-0.106645092, 1.51475418, -0.210114449, 0.87216574, 0.0742753521, -0.483539253, 0.109913878, 0.933385789, 0.341628313, 0.476703167, -0.3511042, 0.805903316), CFrame.new(1.55795503, 0.334560454, 0.116621703, 0.140429765, -0.772708595, 0.619032323, -0.430511951, 0.51537317, 0.740979075, -0.891593456, -0.370556325, -0.26028657), CFrame.new(-1.59676385, 0.1474123, -0.767787039, 0.84694314, 0.463646054, 0.260230124, -0.0110223517, 0.504651487, -0.863252759, -0.531569302, 0.728257656, 0.432521611), CFrame.new(0.201209396, -2.14123702, 0.780127108, 0.478961468, 0.0708330944, -0.874973416, 0.449423999, 0.836417079, 0.313726932, 0.754064918, -0.543497205, 0.368777454), CFrame.new(-0.689732075, -2.11200166, 0.0210208297, 0.94702065, 0.137312263, -0.290339977, -0.0937702209, 0.982822537, 0.158955887, 0.307179213, -0.123309284, 0.943629026)}, 0.3, false)
  2451. end
  2452. con:disconnect()
  2453. Humanoid.WalkSpeed = 16
  2454. attack = false
  2455. end
  2456.  
  2457. attacktwo = function()
  2458.  
  2459. attack = true
  2460. local con = Hitbox.Touched:connect(function(hit)
  2461.  
  2462. Damagefunc(Hitbox, hit, 10, 15, 0, "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  2463. end
  2464. )
  2465. Humanoid.WalkSpeed = 14
  2466. for i = 0, 1, 0.1 do
  2467. swait()
  2468. PlayAnimationFromTable({CFrame.new(-1.93715096e-07, -0.326975822, -4.47034836e-08, 0.939692557, 0, -0.342020333, 0.27314961, 0.601814926, 0.75047195, 0.205832943, -0.798635602, 0.565521002), CFrame.new(0.0194183588, 1.42013311, 0.0533519983, 0.951757967, 0.0747811422, 0.297598064, 0.0741088465, 0.885119617, -0.459424824, -0.297766209, 0.459315896, 0.836877644), CFrame.new(1.76784158, -0.167323589, 0.328021258, 0.643204093, -0.403323144, 0.65086019, -0.03487809, 0.833710551, 0.551099181, -0.764899969, -0.377170026, 0.522178888), CFrame.new(-1.68615234, 0.696604431, -0.317608297, 0.578635395, 0.784143448, 0.224277183, 0.644610047, -0.271232635, -0.714780211, -0.499658942, 0.558168411, -0.662411511), CFrame.new(0.22778745, -2.08500981, -0.640202999, 0.927835405, 0.363329887, 0.0843375921, -0.34986195, 0.926146209, -0.140889883, -0.129298449, 0.101216108, 0.986426473), CFrame.new(-0.894758701, -0.887055099, -1.19228673, 0.710881293, 0.27314961, 0.648102701, 0.399317682, 0.601814926, -0.691638827, -0.57895875, 0.75047195, 0.318745494)}, 0.3, false)
  2469. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-30), math.rad(0), math.rad(-60)), 0.3)
  2470. end
  2471. CFuncs.Sound.Create("rbxassetid://588693579", RootPart, 1, 1)
  2472. for i = 0, 1, 0.3 do
  2473. swait()
  2474. PlayAnimationFromTable({CFrame.new(2.08616257e-07, -0.326976061, 2.30967999e-07, 0.365881741, -0.78650254, 0.497538269, 0.27314961, 0.601814926, 0.75047195, -0.889673948, -0.138681591, 0.43502593), CFrame.new(0.199234888, 1.46225858, -0.0458770432, 0.414827615, 0.597579002, -0.68616128, -0.730311096, 0.668476582, 0.140658334, 0.542737246, 0.442762315, 0.713721156), CFrame.new(1.88804889, 0.772113562, -0.0693311393, -0.392489523, -0.919755161, -0.00152992457, 0.514838874, -0.22107631, 0.828291178, -0.762163401, 0.324307919, 0.56029582), CFrame.new(-1.21992767, 0.78649044, -0.825880349, 0.771753788, -0.532571733, -0.347510159, -0.588763654, -0.391885221, -0.706953526, 0.240319416, 0.750195384, -0.615997851), CFrame.new(1.06965721, -1.72461641, -1.23562133, 0.871505141, -0.188019678, -0.452909946, -0.0776372179, 0.85902828, -0.506006837, 0.484201729, 0.476150244, 0.734050155), CFrame.new(-1.28267229, -0.770296216, -1.14472818, 0.576616764, 0.772167146, -0.266966224, -0.816610515, 0.554973185, -0.158594102, 0.0256979764, 0.309455484, 0.950566649)}, 0.4, false)
  2475. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(180), math.rad(0), math.rad(70)), 0.3)
  2476. end
  2477. for i = 0, 1, 0.1 do
  2478. swait()
  2479. PlayAnimationFromTable({CFrame.new(-4.54485416e-07, -0.326974481, 7.15255737e-07, 0.365881741, -0.78650254, 0.497538269, 0.49410665, 0.617201984, 0.61230731, -0.788662791, 0.021804899, 0.61443907), CFrame.new(0.357691556, 1.4119122, -0.241990447, 0.558049381, 0.708333611, -0.432254672, -0.721678674, 0.671401799, 0.168521389, 0.409586072, 0.21790576, 0.885864675), CFrame.new(1.59417558, 0.503518283, -0.27781257, -0.479532152, -0.850883245, 0.214584604, 0.500525951, -0.0643587708, 0.863325953, -0.72077924, 0.52139771, 0.456751227), CFrame.new(-1.42133021, 0.882488608, -0.526019335, 0.729344368, -0.406111121, -0.550572753, -0.668506563, -0.251951158, -0.699728191, 0.145450085, 0.878404379, -0.455247164), CFrame.new(0.573727071, -1.95096779, -1.22873545, 0.938116789, 0.0196046084, -0.345763713, -0.158003122, 0.912660599, -0.376942575, 0.308175087, 0.408247858, 0.859279752), CFrame.new(-1.57658029, -0.675674319, -0.77901566, 0.467840195, 0.880314589, -0.0785596371, -0.883812904, 0.46593374, -0.0421961024, -0.000542193651, 0.0891730785, 0.996015906)}, 0.3, false)
  2480. end
  2481. con:disconnect()
  2482. Humanoid.WalkSpeed = 16
  2483. attack = false
  2484. end
  2485.  
  2486. zcharge = function()
  2487.  
  2488. attack = true
  2489. Humanoid.WalkSpeed = 0
  2490. local con = Hitbox2.Touched:connect(function(hit)
  2491.  
  2492. Damagefunc(Hitbox, hit, 10, 15, 0, "Knockdown", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  2493. end
  2494. )
  2495. for i = 0, 1, 0.1 do
  2496. swait()
  2497. PlayAnimationFromTable({CFrame.new(-7.4505806e-08, -0.52697587, -3.87430191e-07, 0.49999997, 0, -0.866025448, 0.3383829, 0.920504987, 0.195365429, 0.797180772, -0.390730888, 0.460252464), CFrame.new(-0.00457178801, 1.52314627, -0.00264084339, 0.496346921, -0.128834456, 0.858511269, 0.0870493725, 0.991328657, 0.0984385014, -0.863748908, 0.0258732289, 0.503257811), CFrame.new(1.58965564, 0.0380209088, 0.283814371, 0.702988684, -0.202762187, 0.68168503, -0.0493850484, 0.942267776, 0.331198901, -0.709484279, -0.266494155, 0.652390122), CFrame.new(-0.957961798, 0.388875067, -0.580982625, 0.498959899, -0.605039239, -0.620456755, -0.177665517, 0.629324317, -0.756561935, 0.848218203, 0.487727761, 0.206512973), CFrame.new(0.475381613, -1.72711968, -0.225535661, 0.898424983, -0.209510744, 0.385924935, 0.142198294, 0.970295727, 0.195719063, -0.415466428, -0.120961055, 0.901529908), CFrame.new(-0.823683679, -1.18009675, -0.55290395, 0.904990435, 0.3383829, 0.257855475, -0.261449993, 0.920504987, -0.29036963, -0.33561334, 0.195365429, 0.921518385)}, 0.3, false)
  2498. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-60), math.rad(0), math.rad(0)), 0.3)
  2499. end
  2500. CFuncs.Sound.Create("rbxassetid://588718542", RootPart, 1, 1)
  2501. for i = 0, 1, 0.05 do
  2502. swait()
  2503. Torso.Velocity = RootPart.CFrame.lookVector * 50
  2504. Effects.Block.Create(BrickColor.new("Bright red"), RootPart.CFrame * cn(0, -2.5, 0), 1, 1, 1, 1, 1, 1, 0.07)
  2505. PlayAnimationFromTable({CFrame.new(2.23517418e-06, -0.0269758552, -0.400000453, 0.49999997, 0, -0.866025448, 0.419857353, 0.874619782, 0.242404699, 0.757442951, -0.484809458, 0.437309861), CFrame.new(0.0156050287, 1.47637296, 0.00900906324, 0.504236579, -0.0386269987, 0.862701178, 0.0867842212, 0.99620831, -0.00611934066, -0.859193802, 0.0779544711, 0.505676866), CFrame.new(1.58237851, 0.14626199, 0.279613227, 0.706799626, -0.392232031, 0.588717401, 0.0135454684, 0.839562178, 0.543094635, -0.707284033, -0.375884712, 0.598715186), CFrame.new(-0.867231786, 0.814694762, -0.528600514, 0.651124299, -0.585457623, -0.482987046, -0.64793539, -0.0973888189, -0.755443633, 0.395242691, 0.80483216, -0.442750931), CFrame.new(0.259177744, -2.28317618, -0.350361317, 0.908591628, -0.120527536, 0.399918109, 0.0818039924, 0.990267992, 0.112593502, -0.409596711, -0.0695866197, 0.909608901), CFrame.new(-1.13574374, -1.50748217, -0.733070374, 0.878400624, 0.419857353, 0.228324533, -0.324400842, 0.874619782, -0.360283643, -0.350964934, 0.242404699, 0.904468715)}, 0.3, false)
  2506. end
  2507. MagniDamage(RootPart, 15, 10, 15, 10, "Normal")
  2508. CFuncs.Sound.Create("rbxassetid://588695708", RootPart, 1, 0.8)
  2509. Effects.Wave.Create(BrickColor.new("Bright red"), RootPart.CFrame * cn(0, -2, 0), 5, 0.5, 5, 1, 0.1, 1, 0.07)
  2510. Effects.Block.Create(BrickColor.new("Bright red"), RootPart.CFrame, 25, 25, 25, 1, 1, 1, 0.07)
  2511. Effects.Block.Create(BrickColor.new("Br. yellowish orange"), RootPart.CFrame, 35, 35, 35, 1, 1, 1, 0.1)
  2512. for i = 0, 1, 0.1 do
  2513. swait()
  2514. PlayAnimationFromTable({CFrame.new(1.75088644e-06, -0.526975155, -0.900000274, 0.90754509, -0.401925236, -0.121728957, 0.318062395, 0.468566597, 0.824185371, -0.274222791, -0.786702812, 0.553082645), CFrame.new(0.188973203, 1.64538634, 0.0836241096, 0.670363545, 0.592903912, -0.446181089, -0.629381418, 0.772826552, 0.0813516378, 0.393054187, 0.226283014, 0.891237438), CFrame.new(1.48912203, 0.214848548, 0.953392267, 0.771034598, -0.0640162826, -0.633567274, 0.423061073, 0.795120418, 0.434514344, 0.475946277, -0.603063285, 0.640148103), CFrame.new(-1.76185381, 1.4779309, -0.140850782, 0.340459913, 0.655301571, -0.674289882, -0.611849248, -0.390125185, -0.688071728, -0.713951945, 0.646824718, 0.268123865), CFrame.new(0.936474085, -1.26703024, -1.42831111, 0.429388165, -0.309227228, 0.848530591, 0.872645915, 0.384071797, -0.301625371, -0.232625902, 0.86998117, 0.434761763), CFrame.new(-0.685204506, -0.912095606, -1.00427413, 0.740100384, 0.435239971, 0.512657344, -0.142344087, 0.84643352, -0.5131163, -0.657259107, 0.306783855, 0.688399613)}, 0.3, false)
  2515. end
  2516. con:disconnect()
  2517. Humanoid.WalkSpeed = 16
  2518. attack = false
  2519. end
  2520.  
  2521. sattackone = function()
  2522.  
  2523. if cooldown2 >= 5 then
  2524. cooldown2 = cooldown2 - 5
  2525. else
  2526. coo1 = false
  2527. spartan = false
  2528. return
  2529. end
  2530. attack = true
  2531. Humanoid.WalkSpeed = 5
  2532. for i = 0, 1, 0.3 do
  2533. swait()
  2534. PlayAnimationFromTable({CFrame.new(-0.400002331, -1.16485393, 7.74860382e-07, 0.19871749, -0.945228219, 0.258949757, 0.752965748, 0.316374511, 0.577017963, -0.627338767, 0.0803167447, 0.774593592), CFrame.new(0.0857160464, 1.44183326, -0.209180146, 0.791154265, 0.533243477, -0.299543619, -0.433752894, 0.834468901, 0.339882404, 0.431199849, -0.138971508, 0.891489506), CFrame.new(1.18355656, 0.497324497, 0.401606619, 0.0676564798, -0.680344224, 0.729763269, 0.996030152, 0.0884684771, -0.00986470655, -0.0578496344, 0.727533579, 0.683628798), CFrame.new(-1.29352582, 0.754917502, -0.320430666, 0.929596961, 0.0948791504, -0.356156468, -0.32557869, -0.24156028, -0.914137423, -0.172765791, 0.96573627, -0.193663076), CFrame.new(-1.55317128, -0.720179915, 0.107768402, 0.350142002, 0.936506927, -0.0188527703, -0.922528863, 0.341288805, -0.180173516, -0.162299514, 0.0804785192, 0.983454108), CFrame.new(-0.453190565, -1.59683776, -0.846960545, -0.418863833, 0.63145864, 0.652543545, 0.42688182, 0.771193981, -0.472262323, -0.801451802, 0.080745399, -0.592583418)}, 0.3, false)
  2535. end
  2536. for i = 1, 7 do
  2537. for i = 0, 1, 0.5 do
  2538. swait()
  2539. PlayAnimationFromTable({CFrame.new(-0.400002331, -1.16485393, 7.74860382e-07, 0.19871749, -0.945228219, 0.258949757, 0.752965748, 0.316374511, 0.577017963, -0.627338767, 0.0803167447, 0.774593592), CFrame.new(0.0857160464, 1.44183326, -0.209180146, 0.791154265, 0.533243477, -0.299543619, -0.433752894, 0.834468901, 0.339882404, 0.431199849, -0.138971508, 0.891489506), CFrame.new(1.18355656, 0.497324497, 0.401606619, 0.0676564798, -0.680344224, 0.729763269, 0.996030152, 0.0884684771, -0.00986470655, -0.0578496344, 0.727533579, 0.683628798), CFrame.new(-1.29352582, 0.754917502, -0.320430666, 0.929596961, 0.0948791504, -0.356156468, -0.32557869, -0.24156028, -0.914137423, -0.172765791, 0.96573627, -0.193663076), CFrame.new(-1.55317128, -0.720179915, 0.107768402, 0.350142002, 0.936506927, -0.0188527703, -0.922528863, 0.341288805, -0.180173516, -0.162299514, 0.0804785192, 0.983454108), CFrame.new(-0.453190565, -1.59683776, -0.846960545, -0.418863833, 0.63145864, 0.652543545, 0.42688182, 0.771193981, -0.472262323, -0.801451802, 0.080745399, -0.592583418)}, 0.4, false)
  2540. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(70)), 0.3)
  2541. end
  2542. CFuncs.Sound.Create("rbxassetid://588693579", RootPart, 1, 1.1)
  2543. local dod = math.random(1, 3)
  2544. if dod == 1 then
  2545. for i = 0, 1, 0.5 do
  2546. swait()
  2547. PlayAnimationFromTable({CFrame.new(-0.400001943, -1.16485381, 8.34465027e-07, 0.362856686, -0.91730839, 0.163952336, 0.432706743, 0.321690232, 0.842187703, -0.825287759, -0.23465015, 0.51365298), CFrame.new(-0.0873291343, 1.48329997, -0.0467529967, 0.715092957, 0.30206582, -0.630395353, -0.348942012, 0.935671508, 0.0525201261, 0.605707407, 0.182414562, 0.774495482), CFrame.new(2.09871554, 0.885291278, -0.489994407, -0.251944214, -0.922203064, 0.293369353, 0.955634177, -0.28488788, -0.0748477131, 0.152602136, 0.261496305, 0.95306462), CFrame.new(-1.2953136, 0.524101794, -0.627111614, 0.995589495, -0.0396563411, -0.0850233808, -0.0937751234, -0.393623382, -0.914476335, 0.002797544, 0.918416023, -0.395605981), CFrame.new(-1.25787163, -1.03107584, -0.545211315, 0.619856894, 0.74076879, -0.258918971, -0.765942693, 0.499406189, -0.404876888, -0.170614392, 0.449282736, 0.876946807), CFrame.new(0.270343721, -1.41294813, -1.18452799, -0.262877673, 0.344278097, 0.901314497, 0.506049633, 0.844562888, -0.175005943, -0.821467638, 0.410104752, -0.396238595)}, 0.4, false)
  2548. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2549. end
  2550. Effects.Sphere.Create(BrickColor.new("Really red"), Hitbox.CFrame, 5, 20, 5, 0.05, 10, 0.05, 0.1)
  2551. else
  2552. if dod == 2 then
  2553. for i = 0, 1, 0.5 do
  2554. swait()
  2555. PlayAnimationFromTable({CFrame.new(-0.400001943, -1.16485381, 8.34465027e-07, 0.362856686, -0.91730839, 0.163952336, 0.432706743, 0.321690232, 0.842187703, -0.825287759, -0.23465015, 0.51365298), CFrame.new(-0.0873291343, 1.48329997, -0.0467529967, 0.715092957, 0.30206582, -0.630395353, -0.348942012, 0.935671508, 0.0525201261, 0.605707407, 0.182414562, 0.774495482), CFrame.new(1.88236165, 0.724448979, -0.911088228, -0.135023758, -0.755199194, 0.641437948, 0.988004029, -0.151582107, 0.0295107067, 0.0749440342, 0.637727916, 0.766606987), CFrame.new(-1.2953136, 0.524101794, -0.627111614, 0.995589495, -0.0396563411, -0.0850233808, -0.0937751234, -0.393623382, -0.914476335, 0.002797544, 0.918416023, -0.395605981), CFrame.new(-1.25787163, -1.03107584, -0.545211315, 0.619856894, 0.74076879, -0.258918971, -0.765942693, 0.499406189, -0.404876888, -0.170614392, 0.449282736, 0.876946807), CFrame.new(0.270343721, -1.41294813, -1.18452799, -0.262877673, 0.344278097, 0.901314497, 0.506049633, 0.844562888, -0.175005943, -0.821467638, 0.410104752, -0.396238595)}, 0.4, false)
  2556. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2557. end
  2558. Effects.Sphere.Create(BrickColor.new("Really red"), Hitbox.CFrame, 5, 20, 5, 0.05, 10, 0.05, 0.1)
  2559. else
  2560. if dod == 3 then
  2561. for i = 0, 1, 0.5 do
  2562. swait()
  2563. PlayAnimationFromTable({CFrame.new(-0.400001943, -1.16485381, 8.34465027e-07, 0.362856686, -0.91730839, 0.163952336, 0.432706743, 0.321690232, 0.842187703, -0.825287759, -0.23465015, 0.51365298), CFrame.new(-0.0873291343, 1.48329997, -0.0467529967, 0.715092957, 0.30206582, -0.630395353, -0.348942012, 0.935671508, 0.0525201261, 0.605707407, 0.182414562, 0.774495482), CFrame.new(2.2591877, 0.0549398847, -0.611490369, -0.0118236989, -0.96984756, 0.243425116, 0.99980706, -0.0152848065, -0.012334682, 0.0156834275, 0.24323231, 0.969841123), CFrame.new(-1.2953136, 0.524101794, -0.627111614, 0.995589495, -0.0396563411, -0.0850233808, -0.0937751234, -0.393623382, -0.914476335, 0.002797544, 0.918416023, -0.395605981), CFrame.new(-1.25787163, -1.03107584, -0.545211315, 0.619856894, 0.74076879, -0.258918971, -0.765942693, 0.499406189, -0.404876888, -0.170614392, 0.449282736, 0.876946807), CFrame.new(0.270343721, -1.41294813, -1.18452799, -0.262877673, 0.344278097, 0.901314497, 0.506049633, 0.844562888, -0.175005943, -0.821467638, 0.410104752, -0.396238595)}, 0.4, false)
  2564. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2565. end
  2566. Effects.Sphere.Create(BrickColor.new("Really red"), Hitbox.CFrame, 5, 20, 5, 0.05, 10, 0.05, 0.1)
  2567. end
  2568. end
  2569. end
  2570. MagniDamage(Hitbox, 6, 5, 10, 0, "Normal")
  2571. end
  2572. Humanoid.WalkSpeed = 16
  2573. attack = false
  2574. end
  2575.  
  2576. sattacktwo = function()
  2577.  
  2578. if cooldown2 >= 5 then
  2579. cooldown2 = cooldown2 - 5
  2580. else
  2581. coo1 = false
  2582. spartan = false
  2583. return
  2584. end
  2585. attack = true
  2586. Humanoid.WalkSpeed = 8
  2587. local con = Hitbox.Touched:connect(function(hit)
  2588.  
  2589. Damagefunc(Hitbox, hit, 13, 20, 0, "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  2590. end
  2591. )
  2592. for i = 0, 1, 0.3 do
  2593. swait()
  2594. PlayAnimationFromTable({CFrame.new(2.4959445e-07, -0.464853436, -1.11758709e-08, -0.646091819, -0.173648179, -0.743243933, -0.113923423, 0.98480773, -0.131053954, 0.754709661, 0, -0.656058848), CFrame.new(-0.170885667, 1.47721159, -0.196581244, 0.610041082, -0.224385336, 0.759934664, -0.0711100101, 0.939692557, 0.334546149, -0.789172292, -0.258125901, 0.557295084), CFrame.new(2.05457616, 0.66353935, 0.0771416202, -0.113923736, -0.987232447, -0.1113258, 0.98480767, -0.126998529, 0.118427925, -0.131054103, -0.0961427391, 0.986702204), CFrame.new(-1.24488759, 0.16600877, -0.974805236, 0.993460953, -0.00752234459, 0.113923386, 0.113923408, 0.131054163, -0.98480773, -0.00752204657, 0.991346598, 0.131054163), CFrame.new(0.609205186, -2.00422788, -0.0613143444, 0.973315358, -0.198257715, 0.11554566, 0.0841862708, 0.776930511, 0.623932362, -0.21347034, -0.597555637, 0.772889018), CFrame.new(-0.522858739, -2.00422764, 0.922772944, 0.651369631, 0.397847474, 0.646091878, -0.633022189, 0.754406571, 0.173648164, -0.418330461, -0.522099674, 0.743243754)}, 0.4, false)
  2595. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2596. end
  2597. for i = 0, 1, 0.3 do
  2598. swait()
  2599. PlayAnimationFromTable({CFrame.new(0.033678256, 0.235145599, 0.308240443, -0.973315597, -0.0841862187, 0.21347028, -0.113923341, 0.984807789, -0.131053925, -0.199194252, -0.151876062, -0.968119442), CFrame.new(-0.136462271, 1.48129964, -0.195787504, 0.634153605, 0.0407405272, -0.772133112, 0.137943268, 0.976629376, 0.164823368, 0.760802805, -0.211033866, 0.613713086), CFrame.new(2.05457282, 0.663538635, 0.0771382749, -0.113923684, -0.987232506, -0.111325786, 0.98480773, -0.126998454, 0.118427932, -0.131054103, -0.0961426795, 0.986702204), CFrame.new(-1.24488795, 0.166009307, -0.974805117, 0.993461132, -0.00752224028, 0.113923296, 0.113923311, 0.131054103, -0.984807789, -0.00752216578, 0.991346657, 0.131054103), CFrame.new(0.567987978, -1.73805308, -0.314448357, 0.973315597, -0.198257759, 0.115545705, 0.0841862932, 0.77693069, 0.623932242, -0.213470414, -0.597555578, 0.772889197), CFrame.new(-0.530017853, -1.8854332, 0.295581549, 0.763049066, -0.00792280212, 0.64629215, -0.13710475, 0.975185215, 0.173828274, -0.631631613, -0.221249223, 0.743027747)}, 0.4, false)
  2600. end
  2601. for i = 0, 1, 0.3 do
  2602. swait()
  2603. PlayAnimationFromTable({CFrame.new(0.0336855538, -0.564853847, 0.308241606, 0.994613647, 0.051689893, 0.0898427963, -0.0912466198, 0.847822011, 0.522371352, -0.0491693802, -0.527755558, 0.847971916), CFrame.new(-0.112381108, 1.52698231, -0.00930890441, 0.971614003, -0.208583027, 0.111621037, 0.232936442, 0.925895393, -0.297419369, -0.0413127691, 0.314977407, 0.94819957), CFrame.new(1.81924629, 0.834065676, -0.252414674, -0.0912469625, -0.885945261, 0.454725146, 0.847822011, -0.308642924, -0.431204557, 0.522371292, 0.346179873, 0.779286623), CFrame.new(-1.3215034, 0.328110993, -0.700080574, 0.960345328, 0.278150439, 0.0192115754, -0.0744783208, 0.322324753, -0.943694711, -0.268681467, 0.904841959, 0.330259234), CFrame.new(0.574013531, -1.42853761, -0.902848005, 0.90852958, -0.282889456, 0.30748567, 0.28565222, 0.957618773, 0.036999315, -0.304920793, 0.0542190373, 0.950832963), CFrame.new(-0.374900252, -2.01547813, -0.30741924, 0.603622913, -0.00745700253, 0.797235072, 0.343967259, 0.904542089, -0.251972497, -0.719253719, 0.426319152, 0.548567235)}, 0.4, false)
  2604. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2605. end
  2606. CFuncs.Sound.Create("rbxassetid://588693922", RootPart, 1, 1)
  2607. for i = 0, 1, 0.3 do
  2608. swait()
  2609. PlayAnimationFromTable({CFrame.new(-0.566314936, -0.835617423, -0.27476871, 0.816107869, 0.532828331, -0.223745435, -0.103623793, 0.515819013, 0.850407481, 0.568533301, -0.670838833, 0.476177633), CFrame.new(-0.0724722892, 1.42486942, 0.150846198, 0.880865276, -0.361220062, 0.305935413, 0.441821873, 0.859365463, -0.257457823, -0.169911414, 0.36195454, 0.916580081), CFrame.new(1.97107089, 1.19725895, 0.313646257, -0.486288637, -0.781376481, 0.391119182, 0.192825139, -0.532534719, -0.824151218, 0.852256894, -0.325357735, 0.40963462), CFrame.new(-1.55033076, 0.268466353, -1.17038536, 0.749226928, 0.27124241, -0.604224026, -0.642773449, 0.0778198242, -0.762093484, -0.159691453, 0.959360123, 0.232652128), CFrame.new(0.773490548, -1.39807868, -0.779710352, 0.961340308, -0.217301667, 0.169129819, 0.271254808, 0.853022397, -0.445840478, -0.0473896712, 0.474481702, 0.878988862), CFrame.new(-0.959059596, -1.87286079, -0.820432007, 0.702612638, 0.189346999, 0.685917795, -0.0697793141, 0.977634549, -0.198397338, -0.708142757, 0.0915336013, 0.700110972)}, 0.3, false)
  2610. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2611. end
  2612. for i = 0, 1, 0.13 do
  2613. swait()
  2614. PlayAnimationFromTable({CFrame.new(-0.56631428, -0.835619211, -0.274769545, 0.813055813, 0.370008469, -0.449481994, 0.125340238, 0.642704487, 0.755791485, 0.568533301, -0.670838833, 0.476177633), CFrame.new(0.137399927, 1.49113739, -0.00637356937, 0.876034141, -0.180928677, 0.447022319, 0.279254675, 0.946046948, -0.164353281, -0.393167883, 0.26881209, 0.879294634), CFrame.new(2.00643468, 1.06336331, -0.33721602, -0.0517476685, -0.802754343, 0.594060242, 0.468802184, -0.544767261, -0.69530797, 0.881786048, 0.24251619, 0.404523432), CFrame.new(-1.30057442, 0.505212665, -1.13504565, 0.328835696, -0.117620692, -0.937033892, -0.931490064, 0.123023644, -0.342332661, 0.155542731, 0.985408783, -0.0691078901), CFrame.new(0.438014925, -1.59378219, -0.654875219, 0.958472311, -0.0195348859, 0.284515828, 0.118254155, 0.935064673, -0.334170848, -0.259512663, 0.353938699, 0.898543596), CFrame.new(-1.31237149, -1.81132758, -0.311906219, 0.5376966, 0.31614086, 0.781624854, -0.273102462, 0.942367673, -0.193282723, -0.797682464, -0.10953626, 0.593046725)}, 0.3, false)
  2615. end
  2616. con:disconnect()
  2617. Humanoid.WalkSpeed = 16
  2618. attack = false
  2619. end
  2620.  
  2621. sattackthree = function()
  2622.  
  2623. if cooldown2 >= 5 then
  2624. cooldown2 = cooldown2 - 5
  2625. else
  2626. coo1 = false
  2627. spartan = false
  2628. return
  2629. end
  2630. attack = true
  2631. local con = Hitbox.Touched:connect(function(hit)
  2632.  
  2633. Damagefunc(Hitbox, hit, 10, 15, 0, "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  2634. end
  2635. )
  2636. Humanoid.WalkSpeed = 7
  2637. for i = 0, 1, 0.1 do
  2638. swait()
  2639. PlayAnimationFromTable({CFrame.new(-3.7997961e-07, -0.46485275, 1.95577741e-08, 0.0524010062, -0.208422005, -0.976634324, 0, 0.977977872, -0.208708763, 0.998626113, 0.0109365489, 0.0512470268), CFrame.new(-0.00681257248, 1.49406314, -0.186099261, 0.449959576, -0.105598755, 0.8867836, -0.301508039, 0.916717112, 0.262150288, -0.840612531, -0.385329515, 0.380646825), CFrame.new(1.94304061, 0.319142371, -0.465579301, 0, -0.905584812, 0.424165159, 0.977977872, 0.0885269865, 0.189003482, -0.208708763, 0.414824188, 0.885641992), CFrame.new(-1.27201116, 0.305094898, -0.645323515, 0.861424029, -0.507886469, 0, 0.106000349, 0.179786727, -0.977977872, 0.496701717, 0.842453659, 0.208708763), CFrame.new(0.499313116, -1.98485994, 0.450374544, 0.998626053, 0.0262004063, -0.0453804471, 0.0109365107, 0.742742777, 0.669487596, 0.051246848, -0.669064105, 0.741435766), CFrame.new(-0.998626232, -2.00126433, 0.37350595, 0.764991999, 0.641904414, -0.0524008237, -0.620254099, 0.756204486, 0.20842199, 0.173412755, -0.126939371, 0.976634264)}, 0.3, false)
  2640. end
  2641. CFuncs.Sound.Create("rbxassetid://588693922", RootPart, 1, 1.5)
  2642. for i = 0, 1, 0.3 do
  2643. swait()
  2644. PlayAnimationFromTable({CFrame.new(0, -0.464853376, -5.58793545e-07, 0.730971038, -0.0620537773, 0.679581344, -0.16762802, 0.949016809, 0.266960412, -0.661500037, -0.309057176, 0.683301866), CFrame.new(0.0026326403, 1.5227797, -0.0550755337, 0.813257456, 0.130747855, -0.567025065, -0.0969804153, 0.991256297, 0.0894749463, 0.573765874, -0.0177758634, 0.818826437), CFrame.new(1.96579301, 0.576898515, -0.332184494, 0.0344252586, -0.799230993, 0.600037456, 0.996308148, -0.0198004544, -0.0835337192, 0.078643769, 0.600697875, 0.795598805), CFrame.new(-0.693707347, 0.649028063, -1.12062609, 0.535793483, -0.827542365, 0.16762802, -0.139608935, -0.282624066, -0.949016809, 0.832727432, 0.485074639, -0.266960412), CFrame.new(1.2995609, -1.78936791, -0.296530426, 0.84817642, -0.472139895, 0.240168273, 0.493244499, 0.869261444, -0.0330824554, -0.193149447, 0.146521434, 0.970167398), CFrame.new(-0.278498471, -2.09745455, -0.342037708, 0.941839278, 0.0246425569, -0.335159481, 0.0170078799, 0.992534757, 0.120770097, 0.335633576, -0.119446367, 0.934389055)}, 0.3, false)
  2645. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2646. end
  2647. for i = 0, 1, 0.1 do
  2648. swait()
  2649. PlayAnimationFromTable({CFrame.new(3.05473804e-07, -0.464853168, 1.1920929e-07, 0.836797535, -0.0620547049, 0.543984592, -0.119301923, 0.949016809, 0.291777581, -0.534356713, -0.309057146, 0.786731601), CFrame.new(-0.00686490163, 1.52278018, -0.0547095388, 0.8996979, 0.135902345, -0.414818704, -0.0969794244, 0.988781512, 0.113605171, 0.425604314, -0.0619814098, 0.902784228), CFrame.new(1.66048074, 0.450184107, -0.342210174, 0.0474176779, -0.684224963, 0.727728069, 0.996308148, -0.0198002756, -0.0835346207, 0.0715657175, 0.729002237, 0.680760026), CFrame.new(-0.966651201, 0.596489191, -0.851131201, 0.670812845, -0.731968164, 0.119301923, -0.139609829, -0.282623798, -0.949016809, 0.728367567, 0.619956911, -0.291777581), CFrame.new(1.22934771, -1.78936875, -0.515257418, 0.802418351, -0.439970732, 0.403175801, 0.493244052, 0.869261742, -0.0330832154, -0.335909545, 0.22541061, 0.914524436), CFrame.new(-0.333090901, -2.09745407, -0.28914243, 0.985479891, 0.003768906, -0.169751287, 0.0170070156, 0.992534876, 0.120769769, 0.168939263, -0.121903092, 0.978058934)}, 0.3, false)
  2650. end
  2651. MagniDamage(Hitbox, 10, 10, 15, 0, "Normal")
  2652. CFuncs.Sound.Create("rbxassetid://588695708", RootPart, 1, 1)
  2653. Effects.Sphere.Create(BrickColor.new("Bright red"), Hitbox.CFrame, 20, 20, 20, 5, 5, 5, 0.07)
  2654. Effects.Block.Create(BrickColor.new("Bright red"), Hitbox.CFrame, 20, 20, 20, 5, 5, 5, 0.1)
  2655. con:disconnect()
  2656. Humanoid.WalkSpeed = 16
  2657. attack = false
  2658. end
  2659.  
  2660. local deb = false
  2661. local dab = false
  2662. naenae = function()
  2663.  
  2664. attack = true
  2665. Humanoid.WalkSpeed = 10
  2666. dab = true
  2667. for i = 0, 1, 0.1 do
  2668. swait()
  2669. PlayAnimationFromTable({CFrame.new(-9.08970833e-07, -0.0269755125, -0.399999857, 0.671375871, 0.112154834, -0.732581556, 0.039671436, 0.981627166, 0.186639532, 0.740054488, -0.154367819, 0.654591441), CFrame.new(-0.0282344185, 1.54118264, -0.0629338622, 0.667401969, -0.130515009, 0.733171463, 0.197973236, 0.980190754, -0.00572595, -0.717900455, 0.148969889, 0.680019677), CFrame.new(1.6765914, 0.0904558003, 0.391398251, 0.213757694, -0.131213099, 0.968034506, -0.329037607, 0.923365235, 0.19781521, -0.919805288, -0.36080426, 0.154202402), CFrame.new(-0.972902775, 0.673638701, -0.54847002, 0.848377526, -0.528548658, -0.029864762, -0.177330226, -0.230574042, -0.95675993, 0.498808146, 0.816989541, -0.289341509), CFrame.new(0.767481565, -2.00398517, -0.194516778, 0.848553836, -0.0765869319, 0.523536801, 0.108111382, 0.993690133, -0.0298635215, -0.517946184, 0.0819411054, 0.85147959), CFrame.new(-0.567735434, -1.89344144, -0.492111027, 0.393860459, 0.039671436, 0.918313742, 0.156301677, 0.981627166, -0.109443642, -0.905783415, 0.186639532, 0.380423427)}, 0.3, false)
  2670. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-60), math.rad(0), math.rad(-20)), 0.3)
  2671. end
  2672. local con = Hitbox2.Touched:connect(function(hit)
  2673.  
  2674. if hit.Parent.Parent:FindFirstChild("Humanoid") ~= nil and deb == false then
  2675. if cooldown3 >= 5 then
  2676. cooldown3 = cooldown3 - 5
  2677. else
  2678. coo2 = false
  2679. attack = false
  2680. dab = false
  2681. end
  2682. deb = true
  2683. hum = hit.Parent.Parent.Humanoid
  2684. tors = hit.Parent.Parent.Torso
  2685. Torso.Velocity = RootPart.CFrame.lookVector * -30
  2686. for i = 0, 1, 0.1 do
  2687. swait()
  2688. PlayAnimationFromTable({CFrame.new(-5.51342964e-07, -0.0269757994, -0.400001228, 0.671375871, 0.112154834, -0.732581556, 0.192670509, 0.928081393, 0.318658233, 0.715634406, -0.355086267, 0.601482511), CFrame.new(0.046197392, 1.49928892, -0.00113653392, 0.673030317, -0.0662002116, 0.736646354, 0.197039723, 0.976040125, -0.0923097581, -0.71288532, 0.207275912, 0.669948637), CFrame.new(1.67531443, -0.21943903, 0.342787862, 0.213757694, -0.131213129, 0.968034565, -0.329037607, 0.923365235, 0.197815239, -0.919805408, -0.36080426, 0.154202402), CFrame.new(-0.68226403, 0.824069381, -0.668590426, 0.708357155, -0.657461643, -0.256854892, -0.399092704, -0.072905995, -0.914007545, 0.58219856, 0.749952614, -0.314031661), CFrame.new(0.447295725, -2.048877, -0.494824529, 0.848502874, 0.0783486143, 0.523358881, 0.0511581451, 0.972202897, -0.228482917, -0.526712239, 0.220642492, 0.820908725), CFrame.new(-0.858617187, -1.6974709, -0.728688002, 0.401810855, 0.192670509, 0.895224094, 0.221649155, 0.928081393, -0.299226671, -0.888492882, 0.318658233, 0.330207944)}, 0.3, false)
  2689. end
  2690. CFuncs.Sound.Create("rbxassetid://315748970", tors, 1, 1)
  2691. Effects.Sphere.Create(BrickColor.new("Bright red"), tors.CFrame, 20, 20, 20, 5, 5, 5, 0.07)
  2692. Effects.Block.Create(BrickColor.new("Bright red"), tors.CFrame, 20, 20, 20, 5, 5, 5, 0.1)
  2693. MagniDamage(tors, 10, 10, 15, 0, "Normal")
  2694. Humanoid.Health = Humanoid.Health + 15
  2695. for i = 0, 1, 0.1 do
  2696. swait()
  2697. PlayAnimationFromTable({CFrame.new(-9.08970833e-07, -0.0269755125, -0.399999857, 0.671375871, 0.112154834, -0.732581556, 0.039671436, 0.981627166, 0.186639532, 0.740054488, -0.154367819, 0.654591441), CFrame.new(-0.0282344185, 1.54118264, -0.0629338622, 0.667401969, -0.130515009, 0.733171463, 0.197973236, 0.980190754, -0.00572595, -0.717900455, 0.148969889, 0.680019677), CFrame.new(1.6765914, 0.0904558003, 0.391398251, 0.213757694, -0.131213099, 0.968034506, -0.329037607, 0.923365235, 0.19781521, -0.919805288, -0.36080426, 0.154202402), CFrame.new(-0.972902775, 0.673638701, -0.54847002, 0.848377526, -0.528548658, -0.029864762, -0.177330226, -0.230574042, -0.95675993, 0.498808146, 0.816989541, -0.289341509), CFrame.new(0.767481565, -2.00398517, -0.194516778, 0.848553836, -0.0765869319, 0.523536801, 0.108111382, 0.993690133, -0.0298635215, -0.517946184, 0.0819411054, 0.85147959), CFrame.new(-0.567735434, -1.89344144, -0.492111027, 0.393860459, 0.039671436, 0.918313742, 0.156301677, 0.981627166, -0.109443642, -0.905783415, 0.186639532, 0.380423427)}, 0.3, false)
  2698. end
  2699. deb = false
  2700. end
  2701. if hit.Parent:FindFirstChild("Humanoid") and deb == false then
  2702. if cooldown3 >= 5 then
  2703. cooldown3 = cooldown3 - 5
  2704. else
  2705. coo2 = false
  2706. attack = false
  2707. dab = false
  2708. end
  2709. deb = true
  2710. hum = hit.Parent.Humanoid
  2711. tors = hit.Parent.Torso
  2712. Torso.Velocity = RootPart.CFrame.lookVector * -30
  2713. for i = 0, 1, 0.1 do
  2714. swait()
  2715. PlayAnimationFromTable({CFrame.new(-5.51342964e-07, -0.0269757994, -0.400001228, 0.671375871, 0.112154834, -0.732581556, 0.192670509, 0.928081393, 0.318658233, 0.715634406, -0.355086267, 0.601482511), CFrame.new(0.046197392, 1.49928892, -0.00113653392, 0.673030317, -0.0662002116, 0.736646354, 0.197039723, 0.976040125, -0.0923097581, -0.71288532, 0.207275912, 0.669948637), CFrame.new(1.67531443, -0.21943903, 0.342787862, 0.213757694, -0.131213129, 0.968034565, -0.329037607, 0.923365235, 0.197815239, -0.919805408, -0.36080426, 0.154202402), CFrame.new(-0.68226403, 0.824069381, -0.668590426, 0.708357155, -0.657461643, -0.256854892, -0.399092704, -0.072905995, -0.914007545, 0.58219856, 0.749952614, -0.314031661), CFrame.new(0.447295725, -2.048877, -0.494824529, 0.848502874, 0.0783486143, 0.523358881, 0.0511581451, 0.972202897, -0.228482917, -0.526712239, 0.220642492, 0.820908725), CFrame.new(-0.858617187, -1.6974709, -0.728688002, 0.401810855, 0.192670509, 0.895224094, 0.221649155, 0.928081393, -0.299226671, -0.888492882, 0.318658233, 0.330207944)}, 0.3, false)
  2716. end
  2717. CFuncs.Sound.Create("rbxassetid://315748970", tors, 1, 1)
  2718. Effects.Sphere.Create(BrickColor.new("Bright red"), tors.CFrame, 20, 20, 20, 5, 5, 5, 0.07)
  2719. Effects.Block.Create(BrickColor.new("Bright red"), tors.CFrame, 20, 20, 20, 5, 5, 5, 0.1)
  2720. MagniDamage(tors, 10, 10, 15, 0, "Normal")
  2721. Humanoid.Health = Humanoid.Health + 15
  2722. for i = 0, 1, 0.1 do
  2723. swait()
  2724. PlayAnimationFromTable({CFrame.new(-9.08970833e-07, -0.0269755125, -0.399999857, 0.671375871, 0.112154834, -0.732581556, 0.039671436, 0.981627166, 0.186639532, 0.740054488, -0.154367819, 0.654591441), CFrame.new(-0.0282344185, 1.54118264, -0.0629338622, 0.667401969, -0.130515009, 0.733171463, 0.197973236, 0.980190754, -0.00572595, -0.717900455, 0.148969889, 0.680019677), CFrame.new(1.6765914, 0.0904558003, 0.391398251, 0.213757694, -0.131213099, 0.968034506, -0.329037607, 0.923365235, 0.19781521, -0.919805288, -0.36080426, 0.154202402), CFrame.new(-0.972902775, 0.673638701, -0.54847002, 0.848377526, -0.528548658, -0.029864762, -0.177330226, -0.230574042, -0.95675993, 0.498808146, 0.816989541, -0.289341509), CFrame.new(0.767481565, -2.00398517, -0.194516778, 0.848553836, -0.0765869319, 0.523536801, 0.108111382, 0.993690133, -0.0298635215, -0.517946184, 0.0819411054, 0.85147959), CFrame.new(-0.567735434, -1.89344144, -0.492111027, 0.393860459, 0.039671436, 0.918313742, 0.156301677, 0.981627166, -0.109443642, -0.905783415, 0.186639532, 0.380423427)}, 0.3, false)
  2725. end
  2726. deb = false
  2727. end
  2728. end
  2729. )
  2730. local dd = Hitbox2.Touched:connect(function(hit)
  2731.  
  2732. if dab == false then
  2733. con:disconnect()
  2734. end
  2735. end
  2736. )
  2737. end
  2738.  
  2739. local doing = false
  2740. ult = function()
  2741.  
  2742. attack = true
  2743. Humanoid.WalkSpeed = 10
  2744. for i = 0, 1, 0.1 do
  2745. swait()
  2746. PlayAnimationFromTable({CFrame.new(-2.08075335e-09, -0.0269756522, 3.86498868e-08, 1, 0, -2.98023224e-07, -7.71340893e-08, 0.965925813, -0.258819044, 2.87868318e-07, 0.258819044, 0.965925813), CFrame.new(7.21774995e-07, 1.57829869, 0.0947343111, 0.996201932, -0.0868240148, -0.00657818513, 0.0829662085, 0.969432592, -0.230904773, 0.0264251884, 0.229482055, 0.972954154), CFrame.new(1.54903889, 1.29764509, -0.675872505, 0.99530232, -0.0814853311, -0.0522811785, -0.0898038447, -0.978798926, -0.184086636, -0.0361723602, 0.187916905, -0.981518567), CFrame.new(-1.67583156, 0.0309402347, 0.423407376, 0.361026108, 0.787957191, 0.498782098, -0.0720872134, 0.556834936, -0.827489078, -0.929765284, 0.262789309, 0.2578336), CFrame.new(0.482964694, -1.94994688, 0.34587723, 0.829037786, -7.71340893e-08, -0.559192657, 0.144729763, 0.965925813, 0.214570716, 0.540138602, -0.258819044, 0.800788999), CFrame.new(-0.482964247, -1.88752437, 0.578841269, 0.981627166, -7.71340893e-08, 0.190809175, -0.0493849739, 0.965925813, 0.254063815, -0.184307531, -0.258819044, 0.948179007)}, 0.3, false)
  2747. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2748. end
  2749. do
  2750. for i = 0, 1, 0.1 do
  2751. swait()
  2752. PlayAnimationFromTable({CFrame.new(-7.00666192e-10, -0.0269756168, -4.02797014e-08, 1, 0, -2.98023224e-07, -2.59745079e-08, 0.996194661, -0.087155953, 2.96889141e-07, 0.087155953, 0.996194661), CFrame.new(2.8766226e-06, 1.50300813, -0.0311145484, 0.996201932, -0.0868241265, -0.00657818094, 0.0868240818, 0.98480767, 0.15038386, -0.00657870481, -0.15038386, 0.988605797), CFrame.new(1.54903591, 0.100242078, -0.326966822, 0.654300213, -0.72489351, -0.215454295, -0.0556103215, 0.238012165, -0.969668806, 0.754187346, 0.646435976, 0.11541985), CFrame.new(-1.67583156, -0.0430535674, 0.422347665, 0.361026108, 0.787957251, 0.498782068, 0.0904597938, 0.502742529, -0.859690011, -0.928157926, 0.355490208, 0.110224739), CFrame.new(0.482964575, -1.98038363, 0.00201824307, 0.829037786, -2.59745079e-08, -0.559192657, 0.0487369895, 0.996194661, 0.0722555593, 0.557064712, -0.087155953, 0.825883031), CFrame.new(-0.482964337, -1.95936334, 0.242282584, 0.981627166, -2.59745079e-08, 0.19080919, -0.0166301318, 0.996194661, 0.0855546594, -0.190083101, -0.087155953, 0.977891743)}, 0.2, false)
  2753. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2754. end
  2755. end
  2756. Effects.Wave.Create(BrickColor.new("Bright red"), RootPart.CFrame * cn(0, -2, 0), 5, 0.5, 5, 1, 0.1, 1, 0.07)
  2757. for i = 0, 1, 0.1 do
  2758. swait()
  2759. PlayAnimationFromTable({CFrame.new(-1.12433918e-06, -0.0269756541, -5.23519702e-07, 0.422618508, 0.0789901242, 0.902858913, -2.59745079e-08, 0.996194661, -0.087155953, -0.906307697, 0.0368336961, 0.421010315), CFrame.new(-0.0906295478, 1.49797595, -0.0886303484, 0.42009452, 0.0212918594, -0.907230556, 0.165463179, 0.981169045, 0.099645108, 0.89226824, -0.191973627, 0.40866074), CFrame.new(1.19037974, 0.0168904662, -1.27968037, 0.992548227, 0.00893497467, -0.121524811, -0.119515195, 0.265794486, -0.95659256, 0.023753494, 0.963988304, 0.26488173), CFrame.new(-0.343276203, 0.258422852, -0.721229911, 0.44429031, -0.886849284, 0.126903594, 0.435720623, 0.090135932, -0.895557344, 0.782785892, 0.453181982, 0.426465034), CFrame.new(0.509931803, -1.98787832, -0.083645843, -0.156434208, -2.59745079e-08, -0.987688422, 0.0860829204, 0.996194661, -0.0136341956, 0.983929992, -0.087155953, -0.155838877), CFrame.new(-0.449347138, -1.99369812, -0.150166422, 0.970295787, -2.59745079e-08, -0.241921723, 0.0210849419, 0.996194661, 0.0845670551, 0.241001159, -0.087155953, 0.966603518)}, 0.3, false)
  2760. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(90), math.rad(0), math.rad(0)), 0.3)
  2761. end
  2762. CFuncs.Sound.Create("rbxassetid://231917970", RootPart, 1, 1)
  2763. CFuncs.Sound.Create("rbxassetid://292363841", RootPart, 1, 1)
  2764. Runes = {""}
  2765. BillboardGui = function(image, position, size)
  2766.  
  2767. local billpar = Instance.new("Part")
  2768. billpar.Transparency = 1
  2769. billpar.formFactor = "Custom"
  2770. billpar.Size = Vector3.new(1, 1, 1)
  2771. billpar.Anchored = true
  2772. billpar.CanCollide = false
  2773. billpar.CFrame = CFrame.new(position)
  2774. billpar.Name = "BillboardGuiPart"
  2775. local bill = Instance.new("BillboardGui", billpar)
  2776. bill.Adornee = billpar
  2777. bill.Size = UDim2.new(1, 0, 1, 0)
  2778. bill.SizeOffset = Vector2.new(size, size)
  2779. local d = Instance.new("ImageLabel", bill)
  2780. d.BackgroundTransparency = 1
  2781. d.Size = UDim2.new(1, 0, 1, 0)
  2782. d.Image = image
  2783. return billpar
  2784. end
  2785.  
  2786. eb = BillboardGui(Runes[math.random(1, #Runes)], RightArm.CFrame * CFrame.new(0, -2, 0).p, 0)
  2787. eb.Parent = EffectModel
  2788. eb.BillboardGui.Size = UDim2.new(3, 0, 3, 0)
  2789. eb.BillboardGui.ImageLabel.ImageColor3 = BrickColor.new("Toothpaste").Color
  2790. doing = true
  2791. for i = 1, 3 do
  2792. swait()
  2793. local blast = Instance.new("Part", EffectModel)
  2794. blast.Anchored = true
  2795. blast.Transparency = 1
  2796. blast.CanCollide = false
  2797. blast.Size = Vector3.new(1, 1, 1)
  2798. blast.CFrame = RightArm.CFrame * CFrame.new(0, -2, 0) * CFrame.fromEulerAnglesXYZ(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  2799. m = Instance.new("SpecialMesh", blast)
  2800. m.Scale = Vector3.new(3, 3, 3)
  2801. m.MeshType = "Sphere"
  2802. blast.BrickColor = BrickColor.new("White")
  2803. blast.Material = "Neon"
  2804. coroutine.resume(coroutine.create(function(p)
  2805.  
  2806. for i = 1, 15 do
  2807. blast.Transparency = i / 10
  2808. blast.Mesh.Scale = blast.Mesh.Scale / 1.1
  2809. swait()
  2810. end
  2811. blast:Remove()
  2812. end
  2813. ), p)
  2814. p = Instance.new("Part")
  2815. local p = Instance.new("Part")
  2816. p.TopSurface = 0
  2817. p.BottomSurface = 0
  2818. p.CanCollide = false
  2819. p.Anchored = true
  2820. p.BrickColor = BrickColor.new("White")
  2821. p.formFactor = "Symmetric"
  2822. p.Size = Vector3.new(1, 1, 1)
  2823. p.CFrame = blast.CFrame * CFrame.fromEulerAnglesXYZ(math.pi / 2 + math.random(-15, 15) / 9, math.random(-15, 15) / 9, math.random(-10, 10) / 9)
  2824. p.Parent = EffectModel
  2825. m = Instance.new("SpecialMesh")
  2826. m.MeshType = "FileMesh"
  2827. m.MeshId = "http://www.roblox.com/asset/?id=51226819"
  2828. m.Scale = Vector3.new(5, 5, 5)
  2829. m.Parent = p
  2830. m.Name = "Triangle"
  2831. coroutine.resume(coroutine.create(function(p)
  2832.  
  2833. for i = 1, 10 do
  2834. p.Transparency = i / 10
  2835. p.Triangle.Scale = p.Triangle.Scale + Vector3.new(0.8, 0.8, 0)
  2836. swait()
  2837. end
  2838. p.Parent = nil
  2839. end
  2840. ), p)
  2841. p = Instance.new("Part")
  2842. p.TopSurface = 0
  2843. p.BottomSurface = 0
  2844. p.CanCollide = false
  2845. p.Anchored = true
  2846. p.BrickColor = BrickColor.new("Black")
  2847. p.Material = "Neon"
  2848. p.formFactor = "Symmetric"
  2849. p.Size = Vector3.new(1, 1, 1)
  2850. p.CFrame = blast.CFrame * CFrame.fromEulerAnglesXYZ(math.random(-10, 10) / 4, math.random(-10, 10) / 4, math.random(-10, 10) / 4)
  2851. p.Parent = EffectModel
  2852. local m = Instance.new("BlockMesh")
  2853. m.Parent = p
  2854. m.Scale = Vector3.new(0.4, 0.4, 0.4)
  2855. coroutine.resume(coroutine.create(function(p)
  2856.  
  2857. for i = 1, 10 do
  2858. p.Transparency = i / 10
  2859. p.CFrame = p.CFrame * CFrame.new(0, -0.5, 0)
  2860. swait()
  2861. end
  2862. p.Parent = nil
  2863. end
  2864. ), p)
  2865. end
  2866. eb:Destroy()
  2867. local billpar = Instance.new("Part")
  2868. billpar.Transparency = 1
  2869. billpar.formFactor = "Custom"
  2870. billpar.Size = Vector3.new(1, 1, 1)
  2871. billpar.Anchored = true
  2872. billpar.CanCollide = false
  2873. billpar.CFrame = RootPart.CFrame
  2874. billpar.BrickColor = BrickColor.new("White")
  2875. billpar.Material = "Neon"
  2876. billpar.Name = "oraora"
  2877. billpar.Parent = EffectModel
  2878. m = Instance.new("SpecialMesh", billpar)
  2879. m.MeshType = "FileMesh"
  2880. m.MeshId = "http://www.roblox.com/asset/?id=51226819"
  2881. billpar.BrickColor = BrickColor.new("Bright red")
  2882. billpar.Material = "Neon"
  2883. local bill = Instance.new("BillboardGui", billpar)
  2884. bill.Adornee = billpar
  2885. bill.Size = UDim2.new(7, 0, 7, 0)
  2886. bill.SizeOffset = Vector2.new(0, 0)
  2887. local d = Instance.new("ImageLabel", bill)
  2888. d.BackgroundTransparency = 1
  2889. d.Size = UDim2.new(1, 0, 1, 0)
  2890. d.Image = Runes[math.random(1, #Runes)]
  2891. d.ImageColor3 = BrickColor.new("Toothpaste").Color
  2892. num = 0
  2893. coroutine.resume(coroutine.create(function(p)
  2894.  
  2895. for er = 1, 100 do
  2896. swait()
  2897. d.Rotation = d.Rotation + 3
  2898. DIR = billpar.CFrame.lookVector
  2899. num = num + 1
  2900. if num == 4 then
  2901. CFuncs.Sound.Create("rbxassetid://231917970", billpar, 1, 1)
  2902. MagniDamage(billpar, 11, 3, 6, math.random(1, 3), "Normal")
  2903. num = 0
  2904. local hitfloor2, posfloor2 = rayCast(billpar.Position, CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0)).lookVector, 20, Character)
  2905. do
  2906. if hitfloor2 ~= nil and equipped == true then
  2907. local p = Instance.new("Part")
  2908. p.TopSurface = 0
  2909. p.BottomSurface = 0
  2910. p.CanCollide = false
  2911. p.Anchored = true
  2912. p.BrickColor = BrickColor.new("Light stone grey")
  2913. p.CFrame = cn(posfloor2) * CFrame.new(0, 1, 0) * CFrame.Angles(0, math.random(-10, 10), 0)
  2914. p.formFactor = "Symmetric"
  2915. p.Size = Vector3.new(1, 1, 1)
  2916. p.Parent = EffectModel
  2917. m = Instance.new("SpecialMesh")
  2918. m.MeshType = "FileMesh"
  2919. m.MeshId = "http://www.roblox.com/asset/?id=51226819"
  2920. p.Material = "SmoothPlastic"
  2921. m.Parent = p
  2922. m.Scale = Vector3.new(12, 2, 12)
  2923. m.Name = "Mesh"
  2924. game:GetService("Debris"):AddItem(p, 5)
  2925. coroutine.resume(coroutine.create(function(p)
  2926.  
  2927. for ii = 1, 20 do
  2928. p.Transparency = 0.5 + ii / 20
  2929. p.CFrame = p.CFrame * CFrame.Angles(0, -math.rad(3 + ii), 0) - Vector3.new(0, 0.05, 0)
  2930. p.Mesh.Scale = p.Mesh.Scale + Vector3.new(0.4, -0.1, 0.4)
  2931. swait()
  2932. end
  2933. p:Remove()
  2934. end
  2935. ), p)
  2936. end
  2937. p = Instance.new("Part")
  2938. do
  2939. do
  2940. local p = Instance.new("Part")
  2941. p.TopSurface = 0
  2942. p.BottomSurface = 0
  2943. p.CanCollide = false
  2944. p.Anchored = true
  2945. p.BrickColor = BrickColor.new("Bright red")
  2946. p.formFactor = "Symmetric"
  2947. p.Size = Vector3.new(1, 1, 1)
  2948. p.CFrame = billpar.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(0), 0, 0)
  2949. p.Parent = EffectModel
  2950. m = Instance.new("SpecialMesh")
  2951. m.MeshType = "FileMesh"
  2952. m.MeshId = "http://www.roblox.com/asset/?id=51226819"
  2953. m.Scale = Vector3.new(8, 8, 8)
  2954. m.Parent = p
  2955. m.Name = "Triangle"
  2956. Effects.Ring.Create(BrickColor.new("White"), billpar.CFrame * cn(0, 1.5, -3) * angles(0, 0, 0), 15, 15, 2, 1, 1, 0, 0.06)
  2957. Effects.Sphere.Create(BrickColor.new("Bright red"), billpar.CFrame * cn(0, 1.5, -3), 10, 10, 10, 20, 20, 20, 0.1)
  2958. Effects.Block.Create(BrickColor.new("Bright orange"), billpar.CFrame * cn(math.random(-5, 5), math.random(-2, 5), math.random(-5, 5)), 10, 10, 10, 6, 6, 6, 0.05)
  2959. coroutine.resume(coroutine.create(function(p)
  2960.  
  2961. for iii = 1, 15 do
  2962. p.Transparency = iii / 20
  2963. p.CFrame = billpar.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(0), 0)
  2964. swait()
  2965. end
  2966. p.Parent = nil
  2967. end
  2968. ), p)
  2969. if trigger == true then
  2970. attack = true
  2971. CFuncs.Sound.Create("rbxassetid://231917806", RootPart, 1, 1)
  2972. Torso.CFrame = billpar.CFrame
  2973. MagniDamage(RootPart, 30, 10, 20, 0, "Knockdown")
  2974. Effects.Ring.Create(BrickColor.new("White"), Torso.CFrame * angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 15, 15, 2, 1, 1, 0, 0.06)
  2975. Effects.Sphere.Create(BrickColor.new("Bright red"), RootPart.CFrame, 50, 50, 50, 5, 5, 5, 0.04)
  2976. Effects.Block.Create(BrickColor.new("Bright orange"), RootPart.CFrame, 10, 10, 10, 16, 16, 16, 0.05)
  2977. Effects.Wave.Create(BrickColor.new("Bright orange"), RootPart.CFrame * cn(0, -1.5, 0), 5, 1, 5, 3, 0, 3, 0.05)
  2978. doing = false
  2979. Humanoid.WalkSpeed = 16
  2980. billpar:Destroy()
  2981. trigger = false
  2982. for i = 0, 1, 0.3 do
  2983. swait()
  2984. PlayAnimationFromTable({CFrame.new(-0.566314936, -0.835617423, -0.27476871, 0.816107869, 0.532828331, -0.223745435, -0.103623793, 0.515819013, 0.850407481, 0.568533301, -0.670838833, 0.476177633), CFrame.new(-0.0724722892, 1.42486942, 0.150846198, 0.880865276, -0.361220062, 0.305935413, 0.441821873, 0.859365463, -0.257457823, -0.169911414, 0.36195454, 0.916580081), CFrame.new(1.97107089, 1.19725895, 0.313646257, -0.486288637, -0.781376481, 0.391119182, 0.192825139, -0.532534719, -0.824151218, 0.852256894, -0.325357735, 0.40963462), CFrame.new(-1.55033076, 0.268466353, -1.17038536, 0.749226928, 0.27124241, -0.604224026, -0.642773449, 0.0778198242, -0.762093484, -0.159691453, 0.959360123, 0.232652128), CFrame.new(0.773490548, -1.39807868, -0.779710352, 0.961340308, -0.217301667, 0.169129819, 0.271254808, 0.853022397, -0.445840478, -0.0473896712, 0.474481702, 0.878988862), CFrame.new(-0.959059596, -1.87286079, -0.820432007, 0.702612638, 0.189346999, 0.685917795, -0.0697793141, 0.977634549, -0.198397338, -0.708142757, 0.0915336013, 0.700110972)}, 0.3, false)
  2985. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2986. end
  2987. for i = 0, 1, 0.13 do
  2988. swait()
  2989. PlayAnimationFromTable({CFrame.new(-0.56631428, -0.835619211, -0.274769545, 0.813055813, 0.370008469, -0.449481994, 0.125340238, 0.642704487, 0.755791485, 0.568533301, -0.670838833, 0.476177633), CFrame.new(0.137399927, 1.49113739, -0.00637356937, 0.876034141, -0.180928677, 0.447022319, 0.279254675, 0.946046948, -0.164353281, -0.393167883, 0.26881209, 0.879294634), CFrame.new(2.00643468, 1.06336331, -0.33721602, -0.0517476685, -0.802754343, 0.594060242, 0.468802184, -0.544767261, -0.69530797, 0.881786048, 0.24251619, 0.404523432), CFrame.new(-1.30057442, 0.505212665, -1.13504565, 0.328835696, -0.117620692, -0.937033892, -0.931490064, 0.123023644, -0.342332661, 0.155542731, 0.985408783, -0.0691078901), CFrame.new(0.438014925, -1.59378219, -0.654875219, 0.958472311, -0.0195348859, 0.284515828, 0.118254155, 0.935064673, -0.334170848, -0.259512663, 0.353938699, 0.898543596), CFrame.new(-1.31237149, -1.81132758, -0.311906219, 0.5376966, 0.31614086, 0.781624854, -0.273102462, 0.942367673, -0.193282723, -0.797682464, -0.10953626, 0.593046725)}, 0.3, false)
  2990. end
  2991. attack = false
  2992. break
  2993. else
  2994. billpar.CFrame = billpar.CFrame * CFrame.new(0, 0, -2)
  2995. end
  2996. -- DECOMPILER ERROR at PC684: LeaveBlock: unexpected jumping out DO_STMT
  2997.  
  2998. -- DECOMPILER ERROR at PC684: LeaveBlock: unexpected jumping out DO_STMT
  2999.  
  3000. -- DECOMPILER ERROR at PC684: LeaveBlock: unexpected jumping out IF_THEN_STMT
  3001.  
  3002. -- DECOMPILER ERROR at PC684: LeaveBlock: unexpected jumping out IF_STMT
  3003.  
  3004. end
  3005. end
  3006. end
  3007. end
  3008. end
  3009. doing = false
  3010. billpar:Destroy()
  3011. end
  3012. ))
  3013. for i = 0, 1, 0.1 do
  3014. swait()
  3015. PlayAnimationFromTable({CFrame.new(-6.04661182e-07, -0.0269757602, 3.04076821e-07, 0.829037368, -0.0487369858, -0.557065248, 0.182055369, 0.965444684, 0.186473384, 0.528727531, -0.256010145, 0.809262633), CFrame.new(0.114466198, 1.52497041, 0.0369310677, 0.957162917, -0.0433604345, 0.286284596, 0.0310716927, 0.998395741, 0.0473311692, -0.287877649, -0.036408335, 0.956974804), CFrame.new(2.12150669, 0.883369029, 0.478789538, -0.289641976, -0.895451903, 0.338043571, -0.426095784, -0.195622057, -0.883274734, 0.857058883, -0.399872363, -0.324887931), CFrame.new(-1.47265232, 0.425108433, -0.118067831, 0.720503688, 0.587817609, 0.367892355, 0.306421727, 0.206041947, -0.929328978, -0.622077286, 0.782315254, -0.0316661), CFrame.new(0.351139486, -2.04318953, -0.345162094, 0.98296386, 0.182055369, -0.0252568126, -0.183563858, 0.965444684, -0.184988663, -0.00929415226, 0.186473384, 0.982416093), CFrame.new(-0.616526186, -1.9505806, 0.120104805, 0.879762888, 0.182055369, 0.439173102, -0.0752303451, 0.965444684, -0.249513268, -0.469422579, 0.186473384, 0.863058507)}, 0.3, false)
  3016. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(90), math.rad(0), math.rad(50)), 0.3)
  3017. end
  3018. Humanoid.WalkSpeed = 16
  3019. attack = false
  3020. end
  3021.  
  3022. mouse.Button1Down:connect(function()
  3023.  
  3024. if attack == false and attacktype == 1 then
  3025. if spartan == false then
  3026. attacktype = 2
  3027. attackone()
  3028. else
  3029. attacktype = 2
  3030. sattackone()
  3031. end
  3032. else
  3033. if attack == false and attacktype == 2 then
  3034. if spartan == false then
  3035. attacktype = 3
  3036. attacktwo()
  3037. else
  3038. attacktype = 3
  3039. sattacktwo()
  3040. end
  3041. else
  3042. if attack == false and attacktype == 3 then
  3043. if spartan == false then
  3044. attacktype = 1
  3045. attackthree()
  3046. else
  3047. attacktype = 1
  3048. sattackthree()
  3049. end
  3050. end
  3051. end
  3052. end
  3053. end
  3054. )
  3055. mouse.KeyDown:connect(function(k)
  3056.  
  3057. k = k:lower()
  3058. if attack == false and k == "z" and co1 <= cooldown1 then
  3059. cooldown1 = 0
  3060. zcharge()
  3061. else
  3062. if attack == false and spartan == false and k == "x" and co2 <= cooldown2 then
  3063. coo1 = true
  3064. spartan = true
  3065. else
  3066. if attack == false and spartan == true and k == "x" then
  3067. coo1 = false
  3068. spartan = false
  3069. else
  3070. if attack == false and k == "c" and co3 <= cooldown3 then
  3071. coo2 = true
  3072. naenae()
  3073. else
  3074. if attack == true and k == "c" and dab == true then
  3075. coo2 = false
  3076. attack = false
  3077. dab = false
  3078. Humanoid.WalkSpeed = 16
  3079. else
  3080. if attack == false and k == "v" and doing == false and co4 <= cooldown4 then
  3081. cooldown4 = 0
  3082. ult()
  3083. else
  3084. if attack == false and doing == true and trigger == false and k == "v" then
  3085. trigger = true
  3086. end
  3087. end
  3088. end
  3089. end
  3090. end
  3091. end
  3092. end
  3093. end
  3094. )
  3095. updateskills = function()
  3096.  
  3097. if cooldown1 <= co1 then
  3098. cooldown1 = cooldown1 + 0.033333333333333
  3099. end
  3100. if cooldown2 <= co2 and coo1 == false then
  3101. cooldown2 = cooldown2 + 0.033333333333333
  3102. end
  3103. if cooldown3 <= co3 and coo2 == false then
  3104. cooldown3 = cooldown3 + 0.033333333333333
  3105. end
  3106. if cooldown4 <= co4 then
  3107. cooldown4 = cooldown4 + 0.033333333333333
  3108. end
  3109. end
  3110.  
  3111. while true do
  3112. swait()
  3113. updateskills()
  3114. bar4:TweenSize(UDim2.new(1 * (cooldown4 / co4), 0, 1, 0), "Out", "Quad", 0.5)
  3115. bar3:TweenSize(UDim2.new(1 * (cooldown3 / co3), 0, 1, 0), "Out", "Quad", 0.5)
  3116. bar1:TweenSize(UDim2.new(1 * (cooldown1 / co1), 0, 1, 0), "Out", "Quad", 0.5)
  3117. bar2:TweenSize(UDim2.new(1 * (cooldown2 / co2), 0, 1, 0), "Out", "Quad", 0.5)
  3118. for i,v in pairs(Character:GetChildren()) do
  3119. if v:IsA("Part") then
  3120. v.Material = "SmoothPlastic"
  3121. else
  3122. if v:IsA("Hat") then
  3123. v:WaitForChild("Handle").Material = "SmoothPlastic"
  3124. end
  3125. end
  3126. end
  3127. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  3128. velocity = RootPart.Velocity.y
  3129. sine = sine + change
  3130. local hit, pos = rayCast(RootPart.Position, CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0)).lookVector, 4, Character)
  3131. if equipped == true or equipped == false then
  3132. if 1 < RootPart.Velocity.y and hit == nil then
  3133. Anim = "Jump"
  3134. if attack == false then
  3135. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0 - 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(30), math.rad(0)), 0.3)
  3136. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3137. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0 + 0.1 * math.cos((sine) / 8), 0.5) * angles(math.rad(-30), math.rad(0), math.rad(0)), 0.3)
  3138. LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0 + 0.1 * math.cos((sine) / 7), -0.5) * angles(math.rad(60), math.rad(0), math.rad(20)), 0.3)
  3139. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3140. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3141. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-60), math.rad(0), math.rad(0)), 0.3)
  3142. end
  3143. else
  3144. if RootPart.Velocity.y < -1 and hit == nil then
  3145. Anim = "Fall"
  3146. if attack == false then
  3147. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0 - 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3148. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  3149. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0 + 0.1 * math.cos((sine) / 8), 0.5) * angles(math.rad(-30), math.rad(0), math.rad(0)), 0.3)
  3150. LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0 + 0.1 * math.cos((sine) / 7), -0.5) * angles(math.rad(60), math.rad(0), math.rad(20)), 0.3)
  3151. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3152. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3153. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-60), math.rad(0), math.rad(0)), 0.3)
  3154. end
  3155. else
  3156. if Torsovelocity < 1 and hit ~= nil then
  3157. Anim = "Idle"
  3158. if attack == false then
  3159. if spartan == false then
  3160. change = 1
  3161. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0 - 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(30), math.rad(0)), 0.3)
  3162. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(-10), math.rad(-30), math.rad(0)), 0.3)
  3163. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0 + 0.1 * math.cos((sine) / 8), 0.5) * angles(math.rad(-30), math.rad(0), math.rad(0)), 0.3)
  3164. LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0 + 0.1 * math.cos((sine) / 7), -0.5) * angles(math.rad(60), math.rad(0), math.rad(20)), 0.3)
  3165. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3166. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3167. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-60), math.rad(0), math.rad(0)), 0.3)
  3168. else
  3169. change = 1
  3170. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, -0.5 - 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(-90), math.rad(0)), 0.3)
  3171. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(0), math.rad(90), math.rad(0)), 0.3)
  3172. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5 + 0.1 * math.cos((sine) / 8), -1) * angles(math.rad(0), math.rad(60), math.rad(90)), 0.3)
  3173. LW.C0 = clerp(LW.C0, CFrame.new(-1.3, 0.5 + 0.1 * math.cos((sine) / 7), -0.5) * angles(math.rad(90), math.rad(0), math.rad(0)), 0.3)
  3174. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(-30), math.rad(0), math.rad(0)), 0.3)
  3175. LH.C0 = clerp(LH.C0, CFrame.new(-1, -2 + 0.05 * math.cos((sine) / 6), 0) * angles(math.rad(0), math.rad(0), math.rad(-40)), 0.3)
  3176. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(-20)), 0.3)
  3177. end
  3178. end
  3179. else
  3180. if 2 < Torsovelocity and hit ~= nil then
  3181. Anim = "Walk"
  3182. if attack == false then
  3183. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3184. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3)
  3185. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0, 0.5) * angles(math.rad(-30), math.rad(0), math.rad(0)), 0.3)
  3186. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, -0.5) * angles(math.rad(60), math.rad(0), math.rad(20)), 0.3)
  3187. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2, 0 + 1 * math.cos((sine) / 3)) * angles(math.rad(0 - 50 * math.cos((sine) / 3)), math.rad(0), math.rad(0)), 0.3)
  3188. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2, 0 - 1 * math.cos((sine) / 3)) * angles(math.rad(0 + 50 * math.cos((sine) / 3)), math.rad(0), math.rad(0)), 0.3)
  3189. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, cn(0, 0, 0) * angles(math.rad(-60), math.rad(0), math.rad(0)), 0.3)
  3190. end
  3191. end
  3192. end
  3193. end
  3194. end
  3195. end
  3196. if 0 < #Effects then
  3197. for e = 1, #Effects do
  3198. if Effects[e] ~= nil then
  3199. local Thing = Effects[e]
  3200. if Thing ~= nil then
  3201. local Part = Thing[1]
  3202. local Mode = Thing[2]
  3203. local Delay = Thing[3]
  3204. local IncX = Thing[4]
  3205. local IncY = Thing[5]
  3206. local IncZ = Thing[6]
  3207. if Thing[1].Transparency <= 1 then
  3208. if Thing[2] == "Block1" then
  3209. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  3210. Mesh = Thing[1].Mesh
  3211. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  3212. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3213. else
  3214. if Thing[2] == "Block2" then
  3215. Thing[1].CFrame = Thing[1].CFrame
  3216. Mesh = Thing[7]
  3217. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  3218. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3219. else
  3220. if Thing[2] == "Cylinder" then
  3221. Mesh = Thing[1].Mesh
  3222. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  3223. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3224. else
  3225. if Thing[2] == "Blood" then
  3226. Mesh = Thing[7]
  3227. Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, 0.5, 0)
  3228. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  3229. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3230. else
  3231. if Thing[2] == "Elec" then
  3232. Mesh = Thing[1].Mesh
  3233. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  3234. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3235. else
  3236. if Thing[2] == "Disappear" then
  3237. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3238. else
  3239. if Thing[2] == "Shatter" then
  3240. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  3241. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  3242. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  3243. Thing[6] = Thing[6] + Thing[5]
  3244. end
  3245. end
  3246. end
  3247. end
  3248. end
  3249. end
  3250. end
  3251. else
  3252. Part.Parent = nil
  3253. table.remove(Effects, e)
  3254. end
  3255. end
  3256. end
  3257. end
  3258. end
  3259. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement