View difference between Paste ID: TYh4FpKF and 4Q4f0xv0
SHOW: | | - or go back to the newest paste.
1
  if game:GetService("RunService"):IsClient()then error("say h/ not hl/ ya dummy")end;print("get rekt");InternalData = {}
2
do
3
    script.Parent = owner.Character
4
    local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
5
    local function NewFakeEvent()
6
        local Bind = Instance.new("BindableEvent")
7
        local Fake;Fake = {Connections = {},
8
        fakeEvent=true;
9
        Connect=function(self,Func)
10
            Bind.Event:connect(Func)
11
            self.Connections[Bind] = true
12
            return setmetatable({Connected = true},{
13
            __index = function (self,Index)
14
                if Index:lower() == "disconnect" then
15
                    return function() Fake.Connections[Bind] = false;self.Connected = false end
16
                end
17
                return Fake[Index]
18
            end;
19
            __tostring = function() return "Connection" end;
20
        })
21
        end}
22
        Fake.connect = Fake.Connect;return Fake;
23
    end
24
    local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
25
    local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
26
    local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
27
        self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
28
    end};ContextActionService.UnBindAction = ContextActionService.BindAction
29
    local function TriggerEvent(self,Event,...)
30
        local Trigger = Mouse[Event]
31
        if Trigger and Trigger.fakeEvent and Trigger.Connections then
32
            for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
33
        end
34
    end
35
    Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
36
    Event.OnServerEvent:Connect(function(FiredBy,Input)
37
        if FiredBy.Name ~= owner.Name then return end
38
        if Input.MouseEvent then
39
            Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
40
        else
41
            local Begin = Input.UserInputState == Enum.UserInputState.Begin
42
            if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
43
            for _,Action in pairs(ContextActionService.Actions) do
44
                for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
45
            end
46
            Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
47
            UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
48
        end
49
    end)
50
    InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
51
    Event.Parent = NLS([[
52
        local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
53
        local Input = function(Input,gameProcessedEvent)
54
            if gameProcessedEvent then return end
55
            Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
56
        end
57
        UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
58
        local Hit,Target
59
        while wait(1/30) do
60
            if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
61
                Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
62
            end
63
        end
64
    ]],owner.Character)
65
end
66
RealGame = game;game = setmetatable({},{
67
    __index = function (self,Index)
68
        local Sandbox = function (Thing)
69
            if Thing:IsA("Player") then
70
                local RealPlayer = Thing
71
                return setmetatable({},{
72
                    __index = function (self,Index)
73
                        local Type = type(RealPlayer[Index])
74
                        if Type == "function" then
75
                            if Index:lower() == "getmouse" or Index:lower() == "mouse" then
76
                                return function (self)return InternalData["Mouse"] end
77
                            end
78
                            return function (self,...)return RealPlayer[Index](RealPlayer,...) end
79
                        end
80
                        return RealPlayer[Index]
81
                    end;
82
                    __tostring = function(self) return RealPlayer.Name end
83
                })
84
            end
85
        end
86
        if RealGame[Index] then
87
            local Type = type(RealGame[Index])
88
            if Type == "function" then
89
                if Index:lower() == "getservice" or Index:lower() == "service" then
90
                    return function (self,Service)
91
                        local FakeServices = {
92
                            ["players"] = function()
93
                                return setmetatable({},{
94
                                    __index = function (self2,Index2)
95
                                        local RealService = RealGame:GetService(Service)
96
                                        local Type2 = type(Index2)
97
                                        if Type2 == "function" then
98
                                            return function (self,...) return RealService[Index2](RealService,...)end
99
                                        else
100
                                            if Index2:lower() == "localplayer" then return Sandbox(owner) end
101
                                            return RealService[Index2]
102
                                        end
103
                                    end;
104
                                    __tostring = function(self) return RealGame:GetService(Service).Name end
105
                                })
106
                            end;
107
                            ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
108
                            ["userinputservice"] = function() return InternalData["UserInputService"] end;
109
                            ["runservice"] = function()
110
                                return setmetatable({},{
111
                                    __index = function(self2,Index2)
112
                                        local RealService = RealGame:GetService(Service)
113
                                        local Type2 = type(Index2)
114
                                        if Type2 == "function" then
115
                                            return function (self,...) return RealService[Index2](RealService,...) end
116
                                        else
117
                                            local RunServices = {
118
                                                ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
119
                                                ["renderstepped"] = function() return RealService["Stepped"] end
120
                                            }
121
                                            if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
122
                                            return RealService[Index2]
123
                                        end
124
                                    end
125
                                })
126
                            end
127
                        }
128
                        if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
129
                        return RealGame:GetService(Service)
130
                    end
131
                end
132
                return function (self,...) return RealGame[Index](RealGame,...) end
133
            else
134
                if game:GetService(Index) then return game:GetService(Index) end
135
                return RealGame[Index]
136
            end
137
        end
138
        return nil
139
    end
140
});Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("running the script noob")
141
142
--Made local by:gamingsugo
143
--Discord:Arvain#7962
144
145
146
--Left--
147
o1 = Instance.new("Model")
148
o2 = Instance.new("Part")
149
o3 = Instance.new("SpecialMesh")
150
o4 = Instance.new("Weld")
151
o5 = Instance.new("Part")
152
o6 = Instance.new("SpecialMesh")
153
o7 = Instance.new("Weld")
154
o8 = Instance.new("Part")
155
o9 = Instance.new("SpecialMesh")
156
o10 = Instance.new("Weld")
157
o11 = Instance.new("Part")
158
o12 = Instance.new("SpecialMesh")
159
o13 = Instance.new("Weld")
160
o14 = Instance.new("Part")
161
o15 = Instance.new("CylinderMesh")
162
o16 = Instance.new("Part")
163
o17 = Instance.new("SpecialMesh")
164
o18 = Instance.new("Part")
165
o19 = Instance.new("SpecialMesh")
166
o20 = Instance.new("Weld")
167
o21 = Instance.new("Part")
168
o22 = Instance.new("SpecialMesh")
169
o23 = Instance.new("Weld")
170
o24 = Instance.new("Part")
171
o25 = Instance.new("SpecialMesh")
172
o26 = Instance.new("Weld")
173
o27 = Instance.new("Part")
174
o28 = Instance.new("SpecialMesh")
175
o29 = Instance.new("Weld")
176
o30 = Instance.new("Part")
177
o31 = Instance.new("SpecialMesh")
178
o32 = Instance.new("Weld")
179
o33 = Instance.new("Part")
180
o34 = Instance.new("Weld")
181
o35 = Instance.new("Part")
182
o36 = Instance.new("SpecialMesh")
183
o37 = Instance.new("Weld")
184
o38 = Instance.new("Part")
185
o39 = Instance.new("SpecialMesh")
186
o40 = Instance.new("Weld")
187
o41 = Instance.new("Part")
188
o42 = Instance.new("CylinderMesh")
189
o43 = Instance.new("Weld")
190
o44 = Instance.new("Part")
191
o45 = Instance.new("CylinderMesh")
192
o46 = Instance.new("Weld")
193
o47 = Instance.new("Part")
194
o48 = Instance.new("CylinderMesh")
195
o49 = Instance.new("Weld")
196
o50 = Instance.new("Part")
197
o51 = Instance.new("SpecialMesh")
198
o52 = Instance.new("Weld")
199
o53 = Instance.new("Part")
200
o54 = Instance.new("SpecialMesh")
201
o55 = Instance.new("Weld")
202
o56 = Instance.new("Part")
203
o57 = Instance.new("SpecialMesh")
204
o58 = Instance.new("Weld")
205
o59 = Instance.new("Part")
206
o60 = Instance.new("SpecialMesh")
207
o61 = Instance.new("Weld")
208
o62 = Instance.new("Part")
209
o63 = Instance.new("SpecialMesh")
210
o64 = Instance.new("Weld")
211
o65 = Instance.new("Part")
212
o66 = Instance.new("BlockMesh")
213
o67 = Instance.new("Weld")
214
o68 = Instance.new("Part")
215
o69 = Instance.new("SpecialMesh")
216
o70 = Instance.new("Weld")
217
o71 = Instance.new("Part")
218
o72 = Instance.new("SpecialMesh")
219
o73 = Instance.new("Weld")
220
o74 = Instance.new("Part")
221
o75 = Instance.new("CylinderMesh")
222
o76 = Instance.new("Weld")
223
o77 = Instance.new("Part")
224
o78 = Instance.new("SpecialMesh")
225
o79 = Instance.new("Weld")
226
o80 = Instance.new("Part")
227
o81 = Instance.new("SpecialMesh")
228
o82 = Instance.new("Weld")
229
o83 = Instance.new("Part")
230
o84 = Instance.new("SpecialMesh")
231
o85 = Instance.new("Weld")
232
o86 = Instance.new("Part")
233
o87 = Instance.new("CylinderMesh")
234
o88 = Instance.new("Weld")
235
o89 = Instance.new("Part")
236
o90 = Instance.new("SpecialMesh")
237
o91 = Instance.new("Weld")
238
o92 = Instance.new("Part")
239
o93 = Instance.new("SpecialMesh")
240
o94 = Instance.new("Weld")
241
o95 = Instance.new("Part")
242
o96 = Instance.new("SpecialMesh")
243
o97 = Instance.new("Weld")
244
o98 = Instance.new("Part")
245
o99 = Instance.new("Weld")
246
o100 = Instance.new("Part")
247
o101 = Instance.new("SpecialMesh")
248
o102 = Instance.new("Weld")
249
o103 = Instance.new("Part")
250
o104 = Instance.new("Weld")
251
o105 = Instance.new("Part")
252
o106 = Instance.new("CylinderMesh")
253
o107 = Instance.new("Weld")
254
o108 = Instance.new("Part")
255
o109 = Instance.new("BlockMesh")
256
o110 = Instance.new("Weld")
257
o111 = Instance.new("Part")
258
o112 = Instance.new("BlockMesh")
259
o113 = Instance.new("Weld")
260
o114 = Instance.new("Part")
261
o115 = Instance.new("BlockMesh")
262
o116 = Instance.new("Weld")
263
o117 = Instance.new("Part")
264
o118 = Instance.new("SpecialMesh")
265
o119 = Instance.new("Weld")
266
o120 = Instance.new("Part")
267
o121 = Instance.new("SpecialMesh")
268
o122 = Instance.new("Weld")
269
o123 = Instance.new("Part")
270
o124 = Instance.new("BlockMesh")
271
o125 = Instance.new("Weld")
272
o126 = Instance.new("Part")
273
o127 = Instance.new("SpecialMesh")
274
o128 = Instance.new("Weld")
275
o129 = Instance.new("Part")
276
o130 = Instance.new("SpecialMesh")
277
o131 = Instance.new("Weld")
278
o132 = Instance.new("Part")
279
o133 = Instance.new("SpecialMesh")
280
o134 = Instance.new("Weld")
281
o135 = Instance.new("Part")
282
o136 = Instance.new("SpecialMesh")
283
o137 = Instance.new("Weld")
284
o138 = Instance.new("Part")
285
o139 = Instance.new("SpecialMesh")
286
o140 = Instance.new("Weld")
287
o141 = Instance.new("Part")
288
o142 = Instance.new("SpecialMesh")
289
o143 = Instance.new("Part")
290
o144 = Instance.new("SpecialMesh")
291
o145 = Instance.new("Weld")
292
o146 = Instance.new("Part")
293
o147 = Instance.new("SpecialMesh")
294
o148 = Instance.new("Weld")
295
o149 = Instance.new("Part")
296
o150 = Instance.new("SpecialMesh")
297
o151 = Instance.new("Weld")
298
o152 = Instance.new("Part")
299
o153 = Instance.new("CylinderMesh")
300
o154 = Instance.new("Weld")
301
o155 = Instance.new("Part")
302
o156 = Instance.new("CylinderMesh")
303
o157 = Instance.new("Weld")
304
o158 = Instance.new("Part")
305
o159 = Instance.new("SpecialMesh")
306
o160 = Instance.new("Weld")
307
o161 = Instance.new("Part")
308
o162 = Instance.new("SpecialMesh")
309
o163 = Instance.new("Weld")
310
o164 = Instance.new("Part")
311
o165 = Instance.new("SpecialMesh")
312
o166 = Instance.new("Weld")
313
o167 = Instance.new("Part")
314
o168 = Instance.new("SpecialMesh")
315
o169 = Instance.new("Weld")
316
o170 = Instance.new("Part")
317
o171 = Instance.new("SpecialMesh")
318
o172 = Instance.new("Weld")
319
o173 = Instance.new("Part")
320
o174 = Instance.new("SpecialMesh")
321
o175 = Instance.new("Weld")
322
o176 = Instance.new("Part")
323
o177 = Instance.new("SpecialMesh")
324
o178 = Instance.new("Weld")
325
o179 = Instance.new("Part")
326
o180 = Instance.new("SpecialMesh")
327
o181 = Instance.new("Weld")
328
o182 = Instance.new("Part")
329
o183 = Instance.new("SpecialMesh")
330
o184 = Instance.new("Weld")
331
o185 = Instance.new("Part")
332
o186 = Instance.new("SpecialMesh")
333
o187 = Instance.new("Weld")
334
o188 = Instance.new("Part")
335
o189 = Instance.new("SpecialMesh")
336
o190 = Instance.new("Weld")
337
o191 = Instance.new("Part")
338
o192 = Instance.new("SpecialMesh")
339
o193 = Instance.new("Weld")
340
o194 = Instance.new("Part")
341
o195 = Instance.new("SpecialMesh")
342
o196 = Instance.new("Weld")
343
o197 = Instance.new("Part")
344
o198 = Instance.new("SpecialMesh")
345
o199 = Instance.new("Weld")
346
o200 = Instance.new("Part")
347
o201 = Instance.new("SpecialMesh")
348
o202 = Instance.new("Weld")
349
o203 = Instance.new("Part")
350
o204 = Instance.new("SpecialMesh")
351
o205 = Instance.new("Weld")
352
o206 = Instance.new("Part")
353
o207 = Instance.new("SpecialMesh")
354
o208 = Instance.new("Weld")
355
o209 = Instance.new("Part")
356
o210 = Instance.new("SpecialMesh")
357
o211 = Instance.new("Weld")
358
o212 = Instance.new("Part")
359
o213 = Instance.new("SpecialMesh")
360
o214 = Instance.new("Weld")
361
o215 = Instance.new("Part")
362
o216 = Instance.new("SpecialMesh")
363
o217 = Instance.new("Weld")
364
o218 = Instance.new("Part")
365
o219 = Instance.new("SpecialMesh")
366
o220 = Instance.new("Weld")
367
o221 = Instance.new("Part")
368
o222 = Instance.new("SpecialMesh")
369
o223 = Instance.new("Weld")
370
o224 = Instance.new("Part")
371
o225 = Instance.new("SpecialMesh")
372
o226 = Instance.new("Weld")
373
o227 = Instance.new("Part")
374
o228 = Instance.new("SpecialMesh")
375
o229 = Instance.new("Weld")
376
o230 = Instance.new("Part")
377
o231 = Instance.new("SpecialMesh")
378
o232 = Instance.new("Weld")
379
o233 = Instance.new("Part")
380
o234 = Instance.new("SpecialMesh")
381
o235 = Instance.new("Weld")
382
o236 = Instance.new("Part")
383
o237 = Instance.new("SpecialMesh")
384
o238 = Instance.new("Weld")
385
o239 = Instance.new("Part")
386
o240 = Instance.new("SpecialMesh")
387
o241 = Instance.new("Weld")
388
o242 = Instance.new("Part")
389
o243 = Instance.new("SpecialMesh")
390
o244 = Instance.new("Weld")
391
o245 = Instance.new("Part")
392
o246 = Instance.new("SpecialMesh")
393
o247 = Instance.new("Weld")
394
o248 = Instance.new("Part")
395
o249 = Instance.new("SpecialMesh")
396
o250 = Instance.new("Weld")
397
o251 = Instance.new("Part")
398
o252 = Instance.new("SpecialMesh")
399
o253 = Instance.new("Weld")
400
o254 = Instance.new("Part")
401
o255 = Instance.new("SpecialMesh")
402
o256 = Instance.new("Weld")
403
o257 = Instance.new("Part")
404
o258 = Instance.new("SpecialMesh")
405
o259 = Instance.new("Weld")
406
o260 = Instance.new("Part")
407
o261 = Instance.new("SpecialMesh")
408
o262 = Instance.new("Weld")
409
o263 = Instance.new("Part")
410
o264 = Instance.new("SpecialMesh")
411
o265 = Instance.new("Weld")
412
o266 = Instance.new("Part")
413
o267 = Instance.new("SpecialMesh")
414
o268 = Instance.new("Weld")
415
o269 = Instance.new("Part")
416
o270 = Instance.new("SpecialMesh")
417
o271 = Instance.new("Weld")
418
o272 = Instance.new("Part")
419
o273 = Instance.new("SpecialMesh")
420
o274 = Instance.new("Weld")
421
o275 = Instance.new("Part")
422
o276 = Instance.new("SpecialMesh")
423
o277 = Instance.new("Weld")
424
o278 = Instance.new("Part")
425
o279 = Instance.new("SpecialMesh")
426
o280 = Instance.new("Weld")
427
o281 = Instance.new("Part")
428
o282 = Instance.new("SpecialMesh")
429
o283 = Instance.new("Weld")
430
o284 = Instance.new("Part")
431
o285 = Instance.new("SpecialMesh")
432
o286 = Instance.new("Weld")
433
o287 = Instance.new("Part")
434
o288 = Instance.new("SpecialMesh")
435
o289 = Instance.new("Weld")
436
o290 = Instance.new("Part")
437
o291 = Instance.new("SpecialMesh")
438
o292 = Instance.new("Weld")
439
o293 = Instance.new("Part")
440
o294 = Instance.new("SpecialMesh")
441
o295 = Instance.new("Weld")
442
o296 = Instance.new("Part")
443
o297 = Instance.new("SpecialMesh")
444
o298 = Instance.new("Weld")
445
o299 = Instance.new("Part")
446
o300 = Instance.new("SpecialMesh")
447
o301 = Instance.new("Weld")
448
o302 = Instance.new("Part")
449
o303 = Instance.new("SpecialMesh")
450
o304 = Instance.new("Weld")
451
o305 = Instance.new("Part")
452
o306 = Instance.new("SpecialMesh")
453
o307 = Instance.new("Weld")
454
o308 = Instance.new("Part")
455
o309 = Instance.new("SpecialMesh")
456
o310 = Instance.new("Weld")
457
o311 = Instance.new("Part")
458
o312 = Instance.new("SpecialMesh")
459
o313 = Instance.new("Weld")
460
o314 = Instance.new("Part")
461
o315 = Instance.new("SpecialMesh")
462
o316 = Instance.new("Weld")
463
o317 = Instance.new("Part")
464
o318 = Instance.new("SpecialMesh")
465
o319 = Instance.new("Weld")
466
o320 = Instance.new("Part")
467
o321 = Instance.new("SpecialMesh")
468
o322 = Instance.new("Weld")
469
o323 = Instance.new("Part")
470
o324 = Instance.new("SpecialMesh")
471
o325 = Instance.new("Weld")
472
o326 = Instance.new("Part")
473
o327 = Instance.new("SpecialMesh")
474
o328 = Instance.new("Weld")
475
o329 = Instance.new("Part")
476
o330 = Instance.new("SpecialMesh")
477
o331 = Instance.new("Weld")
478
o332 = Instance.new("Part")
479
o333 = Instance.new("SpecialMesh")
480
o334 = Instance.new("Weld")
481
o335 = Instance.new("Part")
482
o336 = Instance.new("SpecialMesh")
483
o337 = Instance.new("Weld")
484
o338 = Instance.new("Part")
485
o339 = Instance.new("SpecialMesh")
486
o340 = Instance.new("Weld")
487
o341 = Instance.new("Part")
488
o342 = Instance.new("SpecialMesh")
489
o343 = Instance.new("Weld")
490
o344 = Instance.new("Part")
491
o345 = Instance.new("SpecialMesh")
492
o346 = Instance.new("Weld")
493
o347 = Instance.new("Part")
494
o348 = Instance.new("SpecialMesh")
495
o349 = Instance.new("Weld")
496
o350 = Instance.new("Part")
497
o351 = Instance.new("SpecialMesh")
498
o352 = Instance.new("Weld")
499
o353 = Instance.new("Part")
500
o354 = Instance.new("SpecialMesh")
501
o355 = Instance.new("Weld")
502
o356 = Instance.new("Part")
503
o357 = Instance.new("SpecialMesh")
504
o358 = Instance.new("Weld")
505
o359 = Instance.new("Part")
506
o360 = Instance.new("SpecialMesh")
507
o361 = Instance.new("Weld")
508
o362 = Instance.new("Part")
509
o363 = Instance.new("SpecialMesh")
510
o364 = Instance.new("Weld")
511
o365 = Instance.new("Part")
512
o1.Name = "Left"
513
o1.Parent = game.ReplicatedStorage
514
o2.Name = "part"
515
o2.Parent = o1
516
o2.Material = Enum.Material.Metal
517
o2.Position = Vector3.new(-7.26739264, 1.75540948, -9.51076508)
518
o2.Rotation = Vector3.new(-89.9899979, 85, -90.0099945)
519
o2.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
520
o2.Velocity = Vector3.new(-2.61577552e-21, 0.103487223, -3.79704497e-21)
521
o2.CanCollide = false
522
o2.Locked = true
523
o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
524
o2.CFrame = CFrame.new(-7.26739264, 1.75540948, -9.51076508, -2.06523491e-05, 0.0871428549, 0.996199965, 1.552701e-05, -0.996199369, 0.0871426314, 0.999999702, 1.72970376e-05, 1.92113312e-05)
525
o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
526
o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
527
o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
528
o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
529
o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
530
o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
531
o2.Position = Vector3.new(-7.26739264, 1.75540948, -9.51076508)
532
o2.Velocity = Vector3.new(-2.61577552e-21, 0.103487223, -3.79704497e-21)
533
o3.Parent = o2
534
o3.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
535
o3.MeshType = Enum.MeshType.Brick
536
o4.Name = "part_Weld"
537
o4.Parent = o2
538
o4.C0 = CFrame.new(-15.4239855, 2.46731901, 12.3522243, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
539
o4.C1 = CFrame.new(-15.4239874, 12.4249134, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
540
o4.Part0 = o2
541
o4.Part1 = o308
542
o5.Name = "part"
543
o5.Parent = o1
544
o5.Material = Enum.Material.Metal
545
o5.Position = Vector3.new(-7.26737595, 1.75540423, -9.76076984)
546
o5.Rotation = Vector3.new(-89.9899979, 85, -90.0099945)
547
o5.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
548
o5.Velocity = Vector3.new(-2.60984934e-21, 0.103487223, -3.7970579e-21)
549
o5.CanCollide = false
550
o5.Locked = true
551
o5.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
552
o5.CFrame = CFrame.new(-7.26737595, 1.75540423, -9.76076984, -2.06523491e-05, 0.0871426836, 0.996198654, 1.552701e-05, -0.996197939, 0.0871424526, 0.999999702, 1.72970103e-05, 1.92113021e-05)
553
o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
554
o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
555
o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
556
o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
557
o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
558
o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
559
o5.Position = Vector3.new(-7.26737595, 1.75540423, -9.76076984)
560
o5.Velocity = Vector3.new(-2.60984934e-21, 0.103487223, -3.7970579e-21)
561
o6.Parent = o5
562
o6.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
563
o6.MeshType = Enum.MeshType.Brick
564
o7.Name = "part_Weld"
565
o7.Parent = o5
566
o7.C0 = CFrame.new(-15.1739807, 2.46731949, 12.3522282, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
567
o7.C1 = CFrame.new(-15.173975, 12.4249115, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
568
o7.Part0 = o5
569
o7.Part1 = o242
570
o8.Name = "part"
571
o8.Parent = o1
572
o8.Material = Enum.Material.Metal
573
o8.Position = Vector3.new(-7.2673564, 1.7553978, -10.0107708)
574
o8.Rotation = Vector3.new(-89.9899979, 85, -90.0099945)
575
o8.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
576
o8.Velocity = Vector3.new(-2.60392579e-21, 0.103487223, -3.79707405e-21)
577
o8.CanCollide = false
578
o8.Locked = true
579
o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
580
o8.CFrame = CFrame.new(-7.2673564, 1.7553978, -10.0107708, -2.06523491e-05, 0.0871424302, 0.996197104, 1.552701e-05, -0.996196508, 0.0871423557, 0.999999702, 1.72969831e-05, 1.9211273e-05)
581
o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
582
o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
583
o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
584
o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
585
o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
586
o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
587
o8.Position = Vector3.new(-7.2673564, 1.7553978, -10.0107708)
588
o8.Velocity = Vector3.new(-2.60392579e-21, 0.103487223, -3.79707405e-21)
589
o9.Parent = o8
590
o9.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
591
o9.MeshType = Enum.MeshType.Brick
592
o10.Name = "part_Weld"
593
o10.Parent = o8
594
o10.C0 = CFrame.new(-14.9239798, 2.46731997, 12.3522339, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
595
o10.C1 = CFrame.new(-14.9239721, 12.4249153, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
596
o10.Part0 = o8
597
o10.Part1 = o176
598
o11.Name = "part"
599
o11.Parent = o1
600
o11.Material = Enum.Material.SmoothPlastic
601
o11.BrickColor = BrickColor.new("Institutional white")
602
o11.Position = Vector3.new(-6.15531635, 3.97901082, -9.21477699)
603
o11.Rotation = Vector3.new(90, 90, 0)
604
o11.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
605
o11.Velocity = Vector3.new(1.56150495e-21, 0.103487223, 2.14414666e-21)
606
o11.CanCollide = false
607
o11.Locked = true
608
o11.Shape = Enum.PartType.Ball
609
o11.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
610
o11.CFrame = CFrame.new(-6.15531635, 3.97901082, -9.21477699, 1.18017197e-05, -2.06523491e-05, 1.00000048, 1, 1.552701e-05, -1.17719173e-05, -1.55568141e-05, 0.999999702, 2.06456607e-05)
611
o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
612
o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
613
o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
614
o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
615
o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
616
o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
617
o11.Color = Color3.new(0.972549, 0.972549, 0.972549)
618
o11.Position = Vector3.new(-6.15531635, 3.97901082, -9.21477699)
619
o11.Velocity = Vector3.new(1.56150495e-21, 0.103487223, 2.14414666e-21)
620
o12.Parent = o11
621
o12.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
622
o12.MeshType = Enum.MeshType.Sphere
623
o13.Name = "part_Weld"
624
o13.Parent = o11
625
o13.C0 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
626
o13.C1 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
627
o13.Part0 = o11
628
o13.Part1 = o53
629
o14.Name = "part"
630
o14.Parent = o1
631
o14.Material = Enum.Material.Granite
632
o14.BrickColor = BrickColor.new("Alder")
633
o14.Position = Vector3.new(-6.47206688, 3.28450394, -9.76026821)
634
o14.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
635
o14.Velocity = Vector3.new(2.67552488e-22, 0.103487223, 2.89234475e-22)
636
o14.CanCollide = false
637
o14.Locked = true
638
o14.Size = Vector3.new(0.915499985, 2.04999995, 1.0999999)
639
o14.CFrame = CFrame.new(-6.47206688, 3.28450394, -9.76026821, 1, 1.17220197e-05, -2.06454806e-05, -1.17216987e-05, 1, 1.55407015e-05, 2.06456625e-05, -1.55404614e-05, 1)
640
o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
641
o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
642
o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
643
o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
644
o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
645
o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
646
o14.Color = Color3.new(0.705882, 0.501961, 1)
647
o14.Position = Vector3.new(-6.47206688, 3.28450394, -9.76026821)
648
o14.Velocity = Vector3.new(2.67552488e-22, 0.103487223, 2.89234475e-22)
649
o15.Parent = o14
650
o15.Scale = Vector3.new(0.5, 1, 0.5)
651
o16.Name = "Handle"
652
o16.Parent = o1
653
o16.BrickColor = BrickColor.new("Bright orange")
654
o16.Transparency = 1
655
o16.Position = Vector3.new(-6.45531607, 3.37400794, -9.75977612)
656
o16.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
657
o16.Velocity = Vector3.new(4.35967602e-22, 0.103487223, 5.27714372e-22)
658
o16.CanCollide = false
659
o16.Size = Vector3.new(1, 2, 1)
660
o16.CFrame = CFrame.new(-6.45531607, 3.37400794, -9.75977612, 1.00000024, 1.17700811e-05, -2.06523491e-05, -1.17798645e-05, 0.99999994, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
661
o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
662
o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
663
o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
664
o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
665
o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
666
o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
667
o16.Color = Color3.new(0.854902, 0.521569, 0.254902)
668
o16.Position = Vector3.new(-6.45531607, 3.37400794, -9.75977612)
669
o16.Velocity = Vector3.new(4.35967602e-22, 0.103487223, 5.27714372e-22)
670
o17.Parent = o16
671
o17.MeshId = "rbxasset://fonts/rightarm.mesh"
672
o17.MeshType = Enum.MeshType.FileMesh
673
o18.Name = "part"
674
o18.Parent = o1
675
o18.BrickColor = BrickColor.new("Institutional white")
676
o18.Position = Vector3.new(-6.46031475, 2.79400635, -9.75976372)
677
o18.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
678
o18.Velocity = Vector3.new(-6.55462279e-22, 0.103487223, -1.01521052e-21)
679
o18.CanCollide = false
680
o18.Locked = true
681
o18.Size = Vector3.new(0.5, 0.349999934, 1)
682
o18.CFrame = CFrame.new(-6.46031475, 2.79400635, -9.75976372, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
683
o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
684
o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
685
o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
686
o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
687
o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
688
o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
689
o18.Color = Color3.new(0.972549, 0.972549, 0.972549)
690
o18.Position = Vector3.new(-6.46031475, 2.79400635, -9.75976372)
691
o18.Velocity = Vector3.new(-6.55462279e-22, 0.103487223, -1.01521052e-21)
692
o19.Parent = o18
693
o19.MeshId = "rbxasset://fonts/rightarm.mesh"
694
o19.Scale = Vector3.new(1.10000002, 0.0500000007, 1.10000002)
695
o19.MeshType = Enum.MeshType.FileMesh
696
o20.Name = "part_Weld"
697
o20.Parent = o18
698
o20.C0 = CFrame.new(11.7132454, -2.42000055, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
699
o20.C1 = CFrame.new(-15.174984, -12.1832561, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
700
o20.Part0 = o18
701
o20.Part1 = o56
702
o21.Name = "part"
703
o21.Parent = o1
704
o21.BrickColor = BrickColor.new("Institutional white")
705
o21.Position = Vector3.new(-6.45530319, 4.1435051, -9.75978851)
706
o21.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
707
o21.Velocity = Vector3.new(1.88398503e-21, 0.103487223, 2.57457966e-21)
708
o21.CanCollide = false
709
o21.Locked = true
710
o21.Size = Vector3.new(0.5, 0.349999934, 1)
711
o21.CFrame = CFrame.new(-6.45530319, 4.1435051, -9.75978851, 1.00000024, 1.17700811e-05, -2.06523491e-05, -1.17798645e-05, 0.99999994, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
712
o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
713
o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
714
o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
715
o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
716
o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
717
o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
718
o21.Color = Color3.new(0.972549, 0.972549, 0.972549)
719
o21.Position = Vector3.new(-6.45530319, 4.1435051, -9.75978851)
720
o21.Velocity = Vector3.new(1.88398503e-21, 0.103487223, 2.57457966e-21)
721
o22.Parent = o21
722
o22.MeshId = "rbxasset://fonts/rightarm.mesh"
723
o22.Scale = Vector3.new(1.10000002, 0.075000003, 1.10000002)
724
o22.MeshType = Enum.MeshType.FileMesh
725
o23.Name = "ArmHandle_Weld"
726
o23.Parent = o21
727
o23.C0 = CFrame.new(11.7082539, -3.76949954, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
728
o23.C1 = CFrame.new(11.7082577, -3.00000238, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
729
o23.Part0 = o21
730
o23.Part1 = o16
731
o24.Name = "part"
732
o24.Parent = o1
733
o24.Material = Enum.Material.SmoothPlastic
734
o24.BrickColor = BrickColor.new("Institutional white")
735
o24.Position = Vector3.new(-6.15530109, 3.97899365, -10.3097734)
736
o24.Rotation = Vector3.new(90, 20, 0)
737
o24.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
738
o24.Velocity = Vector3.new(1.58747006e-21, 0.103487223, 2.14410142e-21)
739
o24.CanCollide = false
740
o24.Locked = true
741
o24.Shape = Enum.PartType.Ball
742
o24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
743
o24.CFrame = CFrame.new(-6.15530109, 3.97899365, -10.3097734, 0.939697027, -2.06523491e-05, 0.342008919, 0.342008829, 1.552701e-05, -0.939696729, 1.40798393e-05, 0.999999702, 2.16798508e-05)
744
o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
745
o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
746
o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
747
o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
748
o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
749
o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
750
o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
751
o24.Position = Vector3.new(-6.15530109, 3.97899365, -10.3097734)
752
o24.Velocity = Vector3.new(1.58747006e-21, 0.103487223, 2.14410142e-21)
753
o25.Parent = o24
754
o25.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
755
o25.MeshType = Enum.MeshType.Sphere
756
o26.Name = "part_Weld"
757
o26.Parent = o24
758
o26.C0 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
759
o26.C1 = CFrame.new(11.7082539, -3.76949954, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
760
o26.Part0 = o24
761
o26.Part1 = o21
762
o27.Name = "part"
763
o27.Parent = o1
764
o27.Material = Enum.Material.SmoothPlastic
765
o27.BrickColor = BrickColor.new("Really black")
766
o27.Position = Vector3.new(-6.15530205, 3.97899342, -10.3097734)
767
o27.Rotation = Vector3.new(90, 20, 0)
768
o27.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
769
o27.Velocity = Vector3.new(1.58746966e-21, 0.103487223, 2.14410082e-21)
770
o27.CanCollide = false
771
o27.Locked = true
772
o27.Shape = Enum.PartType.Ball
773
o27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
774
o27.CFrame = CFrame.new(-6.15530205, 3.97899342, -10.3097734, 0.939697027, -2.06523491e-05, 0.342008889, 0.342008859, 1.552701e-05, -0.939696729, 1.40798384e-05, 0.999999702, 2.16798508e-05)
775
o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
776
o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
777
o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
778
o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
779
o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
780
o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
781
o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
782
o27.Position = Vector3.new(-6.15530205, 3.97899342, -10.3097734)
783
o27.Velocity = Vector3.new(1.58746966e-21, 0.103487223, 2.14410082e-21)
784
o28.Parent = o27
785
o28.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
786
o28.MeshType = Enum.MeshType.Cylinder
787
o29.Name = "part_Weld"
788
o29.Parent = o27
789
o29.C0 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
790
o29.C1 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
791
o29.Part0 = o27
792
o29.Part1 = o24
793
o30.Name = "part"
794
o30.Parent = o1
795
o30.Material = Enum.Material.SmoothPlastic
796
o30.BrickColor = BrickColor.new("Institutional white")
797
o30.Position = Vector3.new(-6.78029633, 3.97900081, -10.3097887)
798
o30.Rotation = Vector3.new(-90, 10, 180)
799
o30.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
800
o30.Velocity = Vector3.new(1.58748389e-21, 0.103487223, 2.12928164e-21)
801
o30.CanCollide = false
802
o30.Locked = true
803
o30.Shape = Enum.PartType.Ball
804
o30.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
805
o30.CFrame = CFrame.new(-6.78029633, 3.97900081, -10.3097887, -0.98480618, -2.06523491e-05, 0.173658699, 0.17365858, 1.552701e-05, 0.984805942, -2.30334063e-05, 0.999999702, -1.17354157e-05)
806
o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
807
o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
808
o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
809
o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
810
o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
811
o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
812
o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
813
o30.Position = Vector3.new(-6.78029633, 3.97900081, -10.3097887)
814
o30.Velocity = Vector3.new(1.58748389e-21, 0.103487223, 2.12928164e-21)
815
o31.Parent = o30
816
o31.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
817
o31.MeshType = Enum.MeshType.Sphere
818
o32.Name = "part_Weld"
819
o32.Parent = o30
820
o32.C0 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
821
o32.C1 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
822
o32.Part0 = o30
823
o32.Part1 = o27
824
o33.Name = "part"
825
o33.Parent = o1
826
o33.Material = Enum.Material.SmoothPlastic
827
o33.BrickColor = BrickColor.new("Institutional white")
828
o33.Position = Vector3.new(-6.45530558, 3.97900581, -9.75977516)
829
o33.Rotation = Vector3.new(0, 90, 0)
830
o33.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
831
o33.Velocity = Vector3.new(1.5744348e-21, 0.103487223, 2.13701102e-21)
832
o33.CanCollide = false
833
o33.Locked = true
834
o33.Shape = Enum.PartType.Cylinder
835
o33.Size = Vector3.new(1.11000001, 0.349999934, 1)
836
o33.CFrame = CFrame.new(-6.45530558, 3.97900581, -9.75977516, 2.06523491e-05, 1.18166208e-05, 1.00000036, -1.552701e-05, 1, -1.17570162e-05, -0.999999702, -1.55568123e-05, 2.06456625e-05)
837
o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
838
o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
839
o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
840
o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
841
o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
842
o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
843
o33.Color = Color3.new(0.972549, 0.972549, 0.972549)
844
o33.Position = Vector3.new(-6.45530558, 3.97900581, -9.75977516)
845
o33.Velocity = Vector3.new(1.5744348e-21, 0.103487223, 2.13701102e-21)
846
o34.Name = "part_Weld"
847
o34.Parent = o33
848
o34.C0 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
849
o34.C1 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
850
o34.Part0 = o33
851
o34.Part1 = o30
852
o35.Name = "part"
853
o35.Parent = o1
854
o35.BrickColor = BrickColor.new("Institutional white")
855
o35.Position = Vector3.new(-6.45530748, 3.97900581, -9.75978661)
856
o35.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
857
o35.Velocity = Vector3.new(1.5744351e-21, 0.103487223, 2.13701102e-21)
858
o35.CanCollide = false
859
o35.Locked = true
860
o35.Size = Vector3.new(0.5, 0.349999934, 1)
861
o35.CFrame = CFrame.new(-6.45530748, 3.97900581, -9.75978661, 1.00000036, 1.18166208e-05, -2.06523491e-05, -1.17570162e-05, 1, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
862
o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
863
o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
864
o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
865
o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
866
o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
867
o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
868
o35.Color = Color3.new(0.972549, 0.972549, 0.972549)
869
o35.Position = Vector3.new(-6.45530748, 3.97900581, -9.75978661)
870
o35.Velocity = Vector3.new(1.5744351e-21, 0.103487223, 2.13701102e-21)
871
o36.Parent = o35
872
o36.MeshId = "rbxasset://fonts/rightarm.mesh"
873
o36.Scale = Vector3.new(1.10000002, 0.00999999978, 1.10000002)
874
o36.MeshType = Enum.MeshType.FileMesh
875
o37.Name = "part_Weld"
876
o37.Parent = o35
877
o37.C0 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
878
o37.C1 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
879
o37.Part0 = o35
880
o37.Part1 = o33
881
o38.Name = "part"
882
o38.Parent = o1
883
o38.Material = Enum.Material.SmoothPlastic
884
o38.BrickColor = BrickColor.new("Really black")
885
o38.Position = Vector3.new(-6.1553154, 3.97901082, -9.21477795)
886
o38.Rotation = Vector3.new(90, 90, 0)
887
o38.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
888
o38.Velocity = Vector3.new(1.56150485e-21, 0.103487223, 2.14414686e-21)
889
o38.CanCollide = false
890
o38.Locked = true
891
o38.Shape = Enum.PartType.Ball
892
o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
893
o38.CFrame = CFrame.new(-6.1553154, 3.97901082, -9.21477795, 1.18166208e-05, -2.06523491e-05, 1.00000036, 1, 1.552701e-05, -1.17570162e-05, -1.55568123e-05, 0.999999702, 2.06456625e-05)
894
o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
895
o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
896
o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
897
o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
898
o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
899
o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
900
o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
901
o38.Position = Vector3.new(-6.1553154, 3.97901082, -9.21477795)
902
o38.Velocity = Vector3.new(1.56150485e-21, 0.103487223, 2.14414686e-21)
903
o39.Parent = o38
904
o39.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
905
o39.MeshType = Enum.MeshType.Cylinder
906
o40.Name = "part_Weld"
907
o40.Parent = o38
908
o40.C0 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
909
o40.C1 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
910
o40.Part0 = o38
911
o40.Part1 = o35
912
o41.Name = "part"
913
o41.Parent = o1
914
o41.Material = Enum.Material.SmoothPlastic
915
o41.BrickColor = BrickColor.new("Institutional white")
916
o41.Position = Vector3.new(-6.78030825, 3.97900963, -9.75978947)
917
o41.Rotation = Vector3.new(90, 50, 0)
918
o41.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
919
o41.Velocity = Vector3.new(1.57444237e-21, 0.103487223, 2.12930487e-21)
920
o41.CanCollide = false
921
o41.Locked = true
922
o41.Shape = Enum.PartType.Cylinder
923
o41.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
924
o41.CFrame = CFrame.new(-6.78030825, 3.97900963, -9.75978947, 0.642796278, -2.06523491e-05, 0.766037703, 0.766037405, 1.552701e-05, -0.64279598, 1.35354458e-06, 0.999999702, 2.58152213e-05)
925
o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
926
o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
927
o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
928
o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
929
o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
930
o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
931
o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
932
o41.Position = Vector3.new(-6.78030825, 3.97900963, -9.75978947)
933
o41.Velocity = Vector3.new(1.57444237e-21, 0.103487223, 2.12930487e-21)
934
o42.Parent = o41
935
o42.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
936
o43.Name = "part_Weld"
937
o43.Parent = o41
938
o43.C0 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
939
o43.C1 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
940
o43.Part0 = o41
941
o43.Part1 = o38
942
o44.Name = "part"
943
o44.Parent = o1
944
o44.Material = Enum.Material.SmoothPlastic
945
o44.BrickColor = BrickColor.new("Dark stone grey")
946
o44.Position = Vector3.new(-6.15530825, 3.97900248, -9.75977612)
947
o44.Rotation = Vector3.new(90, 90, 0)
948
o44.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
949
o44.Velocity = Vector3.new(1.57442864e-21, 0.103487223, 2.14412465e-21)
950
o44.CanCollide = false
951
o44.Locked = true
952
o44.Shape = Enum.PartType.Cylinder
953
o44.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
954
o44.CFrame = CFrame.new(-6.15530825, 3.97900248, -9.75977612, 1.18017197e-05, -2.06523491e-05, 1.00000048, 1, 1.552701e-05, -1.17719173e-05, -1.55568123e-05, 0.999999702, 2.06456607e-05)
955
o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
956
o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
957
o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
958
o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
959
o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
960
o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
961
o44.Color = Color3.new(0.388235, 0.372549, 0.384314)
962
o44.Position = Vector3.new(-6.15530825, 3.97900248, -9.75977612)
963
o44.Velocity = Vector3.new(1.57442864e-21, 0.103487223, 2.14412465e-21)
964
o45.Parent = o44
965
o45.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
966
o46.Name = "part_Weld"
967
o46.Parent = o44
968
o46.C0 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
969
o46.C1 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
970
o46.Part0 = o44
971
o46.Part1 = o41
972
o47.Name = "part"
973
o47.Parent = o1
974
o47.Material = Enum.Material.SmoothPlastic
975
o47.BrickColor = BrickColor.new("Dark stone grey")
976
o47.Position = Vector3.new(-6.78030872, 3.97900987, -9.75978947)
977
o47.Rotation = Vector3.new(90, 50, 0)
978
o47.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
979
o47.Velocity = Vector3.new(1.57444288e-21, 0.103487223, 2.12930547e-21)
980
o47.CanCollide = false
981
o47.Locked = true
982
o47.Shape = Enum.PartType.Cylinder
983
o47.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
984
o47.CFrame = CFrame.new(-6.78030872, 3.97900987, -9.75978947, 0.642796338, -2.06523491e-05, 0.766037762, 0.766037405, 1.552701e-05, -0.64279598, 1.35354367e-06, 0.999999702, 2.58152213e-05)
985
o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
986
o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
987
o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
988
o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
989
o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
990
o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
991
o47.Color = Color3.new(0.388235, 0.372549, 0.384314)
992
o47.Position = Vector3.new(-6.78030872, 3.97900987, -9.75978947)
993
o47.Velocity = Vector3.new(1.57444288e-21, 0.103487223, 2.12930547e-21)
994
o48.Parent = o47
995
o48.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
996
o49.Name = "part_Weld"
997
o49.Parent = o47
998
o49.C0 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
999
o49.C1 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
1000
o49.Part0 = o47
1001
o49.Part1 = o44
1002
o50.Name = "part"
1003
o50.Parent = o1
1004
o50.Material = Enum.Material.SmoothPlastic
1005
o50.BrickColor = BrickColor.new("Institutional white")
1006
o50.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
1007
o50.Rotation = Vector3.new(90, 50, 0)
1008
o50.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1009
o50.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
1010
o50.CanCollide = false
1011
o50.Locked = true
1012
o50.Shape = Enum.PartType.Ball
1013
o50.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1014
o50.CFrame = CFrame.new(-6.78031635, 3.97901797, -9.21479034, 0.642796338, -2.06523491e-05, 0.766037762, 0.766037405, 1.552701e-05, -0.64279598, 1.35354367e-06, 0.999999702, 2.58152213e-05)
1015
o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1016
o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1017
o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1018
o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1019
o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1020
o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1021
o50.Color = Color3.new(0.972549, 0.972549, 0.972549)
1022
o50.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
1023
o50.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
1024
o51.Parent = o50
1025
o51.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
1026
o51.MeshType = Enum.MeshType.Sphere
1027
o52.Name = "part_Weld"
1028
o52.Parent = o50
1029
o52.C0 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
1030
o52.C1 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
1031
o52.Part0 = o50
1032
o52.Part1 = o47
1033
o53.Name = "part"
1034
o53.Parent = o1
1035
o53.Material = Enum.Material.SmoothPlastic
1036
o53.BrickColor = BrickColor.new("Really black")
1037
o53.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
1038
o53.Rotation = Vector3.new(90, 50, 0)
1039
o53.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1040
o53.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
1041
o53.CanCollide = false
1042
o53.Locked = true
1043
o53.Shape = Enum.PartType.Ball
1044
o53.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1045
o53.CFrame = CFrame.new(-6.78031635, 3.97901797, -9.21479034, 0.642796338, -2.06523491e-05, 0.766037762, 0.766037405, 1.552701e-05, -0.64279598, 1.35354367e-06, 0.999999702, 2.58152213e-05)
1046
o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1047
o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1048
o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1049
o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1050
o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1051
o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1052
o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1053
o53.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
1054
o53.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
1055
o54.Parent = o53
1056
o54.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
1057
o54.MeshType = Enum.MeshType.Cylinder
1058
o55.Name = "part_Weld"
1059
o55.Parent = o53
1060
o55.C0 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
1061
o55.C1 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
1062
o55.Part0 = o53
1063
o55.Part1 = o50
1064
o56.Name = "part"
1065
o56.Parent = o1
1066
o56.Position = Vector3.new(-6.93032694, 2.69901729, -9.75977421)
1067
o56.Rotation = Vector3.new(90, 0, 90)
1068
o56.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1069
o56.Velocity = Vector3.new(-8.34209628e-22, 0.103487223, -1.27904085e-21)
1070
o56.CanCollide = false
1071
o56.Locked = true
1072
o56.Size = Vector3.new(0.200000003, 0.349999934, 1)
1073
o56.CFrame = CFrame.new(-6.93032694, 2.69901729, -9.75977421, -2.06523491e-05, -1.0000006, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
1074
o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1075
o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1076
o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1077
o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1078
o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1079
o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1080
o56.Position = Vector3.new(-6.93032694, 2.69901729, -9.75977421)
1081
o56.Velocity = Vector3.new(-8.34209628e-22, 0.103487223, -1.27904085e-21)
1082
o57.Parent = o56
1083
o57.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1084
o57.Scale = Vector3.new(0.125, 0.200000003, 0.25)
1085
o57.MeshType = Enum.MeshType.FileMesh
1086
o58.Name = "part_Weld"
1087
o58.Parent = o56
1088
o58.C0 = CFrame.new(-15.174984, -12.1832561, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1089
o58.C1 = CFrame.new(12.008255, -2.1250031, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1090
o58.Part0 = o56
1091
o58.Part1 = o59
1092
o59.Name = "part"
1093
o59.Parent = o1
1094
o59.BrickColor = BrickColor.new("Institutional white")
1095
o59.Position = Vector3.new(-6.75532818, 2.49901223, -9.75976181)
1096
o59.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1097
o59.Velocity = Vector3.new(-1.21057358e-21, 0.103487223, -1.80690012e-21)
1098
o59.CanCollide = false
1099
o59.Locked = true
1100
o59.Size = Vector3.new(0.5, 0.349999934, 1)
1101
o59.CFrame = CFrame.new(-6.75532818, 2.49901223, -9.75976181, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1102
o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1103
o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1104
o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1105
o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1106
o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1107
o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1108
o59.Color = Color3.new(0.972549, 0.972549, 0.972549)
1109
o59.Position = Vector3.new(-6.75532818, 2.49901223, -9.75976181)
1110
o59.Velocity = Vector3.new(-1.21057358e-21, 0.103487223, -1.80690012e-21)
1111
o60.Parent = o59
1112
o60.MeshId = "rbxasset://fonts/rightarm.mesh"
1113
o60.Scale = Vector3.new(0.5, 0.174999997, 1.10000002)
1114
o60.MeshType = Enum.MeshType.FileMesh
1115
o61.Name = "part_Weld"
1116
o61.Parent = o59
1117
o61.C0 = CFrame.new(12.008255, -2.1250031, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1118
o61.C1 = CFrame.new(11.8332577, -2.325001, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1119
o61.Part0 = o59
1120
o61.Part1 = o62
1121
o62.Name = "part"
1122
o62.Parent = o1
1123
o62.BrickColor = BrickColor.new("Institutional white")
1124
o62.Position = Vector3.new(-6.58032846, 2.69900799, -9.75976086)
1125
o62.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1126
o62.Velocity = Vector3.new(-8.34227501e-22, 0.103487223, -1.27075581e-21)
1127
o62.CanCollide = false
1128
o62.Locked = true
1129
o62.Size = Vector3.new(0.5, 0.349999934, 1)
1130
o62.CFrame = CFrame.new(-6.58032846, 2.69900799, -9.75976086, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1131
o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1132
o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1133
o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1134
o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1135
o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1136
o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1137
o62.Color = Color3.new(0.972549, 0.972549, 0.972549)
1138
o62.Position = Vector3.new(-6.58032846, 2.69900799, -9.75976086)
1139
o62.Velocity = Vector3.new(-8.34227501e-22, 0.103487223, -1.27075581e-21)
1140
o63.Parent = o62
1141
o63.MeshId = "rbxasset://fonts/rightarm.mesh"
1142
o63.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
1143
o63.MeshType = Enum.MeshType.FileMesh
1144
o64.Name = "part_Weld"
1145
o64.Parent = o62
1146
o64.C0 = CFrame.new(11.8332577, -2.325001, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1147
o64.C1 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1148
o64.Part0 = o62
1149
o64.Part1 = o65
1150
o65.Name = "part"
1151
o65.Parent = o1
1152
o65.Material = Enum.Material.Granite
1153
o65.BrickColor = BrickColor.new("Alder")
1154
o65.Position = Vector3.new(-6.72032213, 2.69900966, -9.75976944)
1155
o65.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1156
o65.Velocity = Vector3.new(-8.34224169e-22, 0.103487223, -1.27407514e-21)
1157
o65.CanCollide = false
1158
o65.Locked = true
1159
o65.Size = Vector3.new(0.5, 0.349999934, 1)
1160
o65.CFrame = CFrame.new(-6.72032213, 2.69900966, -9.75976944, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1161
o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1162
o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1163
o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1164
o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1165
o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1166
o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1167
o65.Color = Color3.new(0.705882, 0.501961, 1)
1168
o65.Position = Vector3.new(-6.72032213, 2.69900966, -9.75976944)
1169
o65.Velocity = Vector3.new(-8.34224169e-22, 0.103487223, -1.27407514e-21)
1170
o66.Parent = o65
1171
o66.Scale = Vector3.new(0.529999971, 0.400000006, 1.09899998)
1172
o67.Name = "part_Weld"
1173
o67.Parent = o65
1174
o67.C0 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1175
o67.C1 = CFrame.new(-14.9249811, -12.1832581, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1176
o67.Part0 = o65
1177
o67.Part1 = o68
1178
o68.Name = "part"
1179
o68.Parent = o1
1180
o68.Position = Vector3.new(-6.9303236, 2.69901323, -10.0097761)
1181
o68.Rotation = Vector3.new(90, 0, 90)
1182
o68.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1183
o68.Velocity = Vector3.new(-8.28281736e-22, 0.103487223, -1.27905155e-21)
1184
o68.CanCollide = false
1185
o68.Locked = true
1186
o68.Size = Vector3.new(0.200000003, 0.349999934, 1)
1187
o68.CFrame = CFrame.new(-6.9303236, 2.69901323, -10.0097761, -2.06523491e-05, -1.0000006, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
1188
o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1189
o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1190
o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1191
o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1192
o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1193
o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1194
o68.Position = Vector3.new(-6.9303236, 2.69901323, -10.0097761)
1195
o68.Velocity = Vector3.new(-8.28281736e-22, 0.103487223, -1.27905155e-21)
1196
o69.Parent = o68
1197
o69.MeshId = "rbxassetid://9756362"
1198
o69.Scale = Vector3.new(0.125, 0.200000003, 0.25)
1199
o69.MeshType = Enum.MeshType.FileMesh
1200
o70.Name = "part_Weld"
1201
o70.Parent = o68
1202
o70.C0 = CFrame.new(-14.9249811, -12.1832581, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1203
o70.C1 = CFrame.new(12.1082554, -2.325001, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1204
o70.Part0 = o68
1205
o70.Part1 = o71
1206
o71.Name = "part"
1207
o71.Parent = o1
1208
o71.BrickColor = BrickColor.new("Institutional white")
1209
o71.Position = Vector3.new(-6.85532618, 2.69901133, -9.75976944)
1210
o71.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1211
o71.Velocity = Vector3.new(-8.34221038e-22, 0.103487223, -1.27727602e-21)
1212
o71.CanCollide = false
1213
o71.Locked = true
1214
o71.Size = Vector3.new(0.5, 0.349999934, 1)
1215
o71.CFrame = CFrame.new(-6.85532618, 2.69901133, -9.75976944, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1216
o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1217
o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1218
o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1219
o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1220
o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1221
o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1222
o71.Color = Color3.new(0.972549, 0.972549, 0.972549)
1223
o71.Position = Vector3.new(-6.85532618, 2.69901133, -9.75976944)
1224
o71.Velocity = Vector3.new(-8.34221038e-22, 0.103487223, -1.27727602e-21)
1225
o72.Parent = o71
1226
o72.MeshId = "rbxasset://fonts/rightarm.mesh"
1227
o72.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
1228
o72.MeshType = Enum.MeshType.FileMesh
1229
o73.Name = "part_Weld"
1230
o73.Parent = o71
1231
o73.C0 = CFrame.new(12.1082554, -2.325001, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1232
o73.C1 = CFrame.new(12.1932487, -2.325001, -14.6799793, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1233
o73.Part0 = o71
1234
o73.Part1 = o74
1235
o74.Name = "part"
1236
o74.Parent = o1
1237
o74.Material = Enum.Material.Granite
1238
o74.BrickColor = BrickColor.new("Alder")
1239
o74.Position = Vector3.new(-6.94030952, 2.69900465, -10.2547779)
1240
o74.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1241
o74.Velocity = Vector3.new(-8.22480971e-22, 0.103487223, -1.27931146e-21)
1242
o74.CanCollide = false
1243
o74.Locked = true
1244
o74.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
1245
o74.CFrame = CFrame.new(-6.94030952, 2.69900465, -10.2547779, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1246
o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1247
o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1248
o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1249
o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1250
o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1251
o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1252
o74.Color = Color3.new(0.705882, 0.501961, 1)
1253
o74.Position = Vector3.new(-6.94030952, 2.69900465, -10.2547779)
1254
o74.Velocity = Vector3.new(-8.22480971e-22, 0.103487223, -1.27931146e-21)
1255
o75.Parent = o74
1256
o75.Scale = Vector3.new(0.5, 0.5, 0.5)
1257
o76.Name = "part_Weld"
1258
o76.Parent = o74
1259
o76.C0 = CFrame.new(12.1932487, -2.325001, -14.6799793, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1260
o76.C1 = CFrame.new(11.7082539, -3.00500154, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1261
o76.Part0 = o74
1262
o76.Part1 = o77
1263
o77.Name = "part"
1264
o77.Parent = o1
1265
o77.BrickColor = BrickColor.new("Institutional white")
1266
o77.Position = Vector3.new(-6.45531654, 3.3790071, -9.75977612)
1267
o77.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1268
o77.Velocity = Vector3.new(4.45375166e-22, 0.103487223, 5.41012168e-22)
1269
o77.CanCollide = false
1270
o77.Locked = true
1271
o77.Size = Vector3.new(0.5, 0.349999934, 1)
1272
o77.CFrame = CFrame.new(-6.45531654, 3.3790071, -9.75977612, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1273
o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1274
o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1275
o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1276
o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1277
o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1278
o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1279
o77.Color = Color3.new(0.972549, 0.972549, 0.972549)
1280
o77.Position = Vector3.new(-6.45531654, 3.3790071, -9.75977612)
1281
o77.Velocity = Vector3.new(4.45375166e-22, 0.103487223, 5.41012168e-22)
1282
o78.Parent = o77
1283
o78.MeshId = "rbxasset://fonts/rightarm.mesh"
1284
o78.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
1285
o78.MeshType = Enum.MeshType.FileMesh
1286
o79.Name = "part_Weld"
1287
o79.Parent = o77
1288
o79.C0 = CFrame.new(11.7082539, -3.00500154, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1289
o79.C1 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
1290
o79.Part0 = o77
1291
o79.Part1 = o80
1292
o80.Name = "part"
1293
o80.Parent = o1
1294
o80.Material = Enum.Material.SmoothPlastic
1295
o80.BrickColor = BrickColor.new("Really black")
1296
o80.Position = Vector3.new(-6.78029823, 3.97900128, -10.3097878)
1297
o80.Rotation = Vector3.new(-90, 10, 180)
1298
o80.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1299
o80.Velocity = Vector3.new(1.58748511e-21, 0.103487223, 2.12928285e-21)
1300
o80.CanCollide = false
1301
o80.Locked = true
1302
o80.Shape = Enum.PartType.Ball
1303
o80.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1304
o80.CFrame = CFrame.new(-6.78029823, 3.97900128, -10.3097878, -0.984806418, -2.06523491e-05, 0.173658714, 0.173658594, 1.552701e-05, 0.984805942, -2.30334044e-05, 0.999999702, -1.17354175e-05)
1305
o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1306
o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1307
o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1308
o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1309
o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1310
o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1311
o80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1312
o80.Position = Vector3.new(-6.78029823, 3.97900128, -10.3097878)
1313
o80.Velocity = Vector3.new(1.58748511e-21, 0.103487223, 2.12928285e-21)
1314
o81.Parent = o80
1315
o81.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
1316
o81.MeshType = Enum.MeshType.Cylinder
1317
o82.Name = "part_Weld"
1318
o82.Parent = o80
1319
o82.C0 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
1320
o82.C1 = CFrame.new(-15.1749878, -12.0582561, 2.77500439, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1321
o82.Part0 = o80
1322
o82.Part1 = o83
1323
o83.Name = "part"
1324
o83.Parent = o1
1325
o83.Material = Enum.Material.SmoothPlastic
1326
o83.BrickColor = BrickColor.new("Institutional white")
1327
o83.Position = Vector3.new(-6.80532074, 3.149014, -9.75977421)
1328
o83.Rotation = Vector3.new(90, 0, 90)
1329
o83.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1330
o83.Velocity = Vector3.new(1.2580779e-23, 0.103487223, -7.90801629e-23)
1331
o83.CanCollide = false
1332
o83.Locked = true
1333
o83.Size = Vector3.new(0.799999952, 0.349999934, 1)
1334
o83.CFrame = CFrame.new(-6.80532074, 3.149014, -9.75977421, -2.06523491e-05, -1.00000048, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
1335
o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1336
o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1337
o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1338
o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1339
o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1340
o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1341
o83.Color = Color3.new(0.972549, 0.972549, 0.972549)
1342
o83.Position = Vector3.new(-6.80532074, 3.149014, -9.75977421)
1343
o83.Velocity = Vector3.new(1.2580779e-23, 0.103487223, -7.90801629e-23)
1344
o84.Parent = o83
1345
o84.Scale = Vector3.new(1.10000002, 1.125, 1)
1346
o84.MeshType = Enum.MeshType.Wedge
1347
o85.Name = "part_Weld"
1348
o85.Parent = o83
1349
o85.C0 = CFrame.new(-15.1749878, -12.0582561, 2.77500439, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1350
o85.C1 = CFrame.new(12.1932526, -2.325001, -15.6699905, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1351
o85.Part0 = o83
1352
o85.Part1 = o86
1353
o86.Name = "part"
1354
o86.Parent = o1
1355
o86.Material = Enum.Material.Granite
1356
o86.BrickColor = BrickColor.new("Alder")
1357
o86.Position = Vector3.new(-6.94033289, 2.69901991, -9.26476765)
1358
o86.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1359
o86.Velocity = Vector3.new(-8.45957471e-22, 0.103487223, -1.27927137e-21)
1360
o86.CanCollide = false
1361
o86.Locked = true
1362
o86.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
1363
o86.CFrame = CFrame.new(-6.94033289, 2.69901991, -9.26476765, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1364
o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1365
o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1366
o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1367
o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1368
o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1369
o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1370
o86.Color = Color3.new(0.705882, 0.501961, 1)
1371
o86.Position = Vector3.new(-6.94033289, 2.69901991, -9.26476765)
1372
o86.Velocity = Vector3.new(-8.45957471e-22, 0.103487223, -1.27927137e-21)
1373
o87.Parent = o86
1374
o87.Scale = Vector3.new(0.5, 0.5, 0.5)
1375
o88.Name = "part_Weld"
1376
o88.Parent = o86
1377
o88.C0 = CFrame.new(12.1932526, -2.325001, -15.6699905, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1378
o88.C1 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1379
o88.Part0 = o86
1380
o88.Part1 = o89
1381
o89.Name = "part"
1382
o89.Parent = o1
1383
o89.BrickColor = BrickColor.new("Institutional white")
1384
o89.Position = Vector3.new(-6.72032118, 2.69900966, -9.75976944)
1385
o89.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1386
o89.Velocity = Vector3.new(-8.3422432e-22, 0.103487223, -1.27407504e-21)
1387
o89.CanCollide = false
1388
o89.Locked = true
1389
o89.Size = Vector3.new(0.5, 0.349999934, 1)
1390
o89.CFrame = CFrame.new(-6.72032118, 2.69900966, -9.75976944, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1391
o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1392
o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1393
o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1394
o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1395
o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1396
o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1397
o89.Color = Color3.new(0.972549, 0.972549, 0.972549)
1398
o89.Position = Vector3.new(-6.72032118, 2.69900966, -9.75976944)
1399
o89.Velocity = Vector3.new(-8.3422432e-22, 0.103487223, -1.27407504e-21)
1400
o90.Parent = o89
1401
o90.MeshId = "rbxasset://fonts/rightarm.mesh"
1402
o90.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
1403
o90.MeshType = Enum.MeshType.FileMesh
1404
o91.Name = "part_Weld"
1405
o91.Parent = o89
1406
o91.C0 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1407
o91.C1 = CFrame.new(-15.424983, -12.1832542, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1408
o91.Part0 = o89
1409
o91.Part1 = o92
1410
o92.Name = "part"
1411
o92.Parent = o1
1412
o92.Position = Vector3.new(-6.93032932, 2.6990211, -9.50977516)
1413
o92.Rotation = Vector3.new(90, 0, 90)
1414
o92.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1415
o92.Velocity = Vector3.new(-8.40138227e-22, 0.103487223, -1.27903065e-21)
1416
o92.CanCollide = false
1417
o92.Locked = true
1418
o92.Size = Vector3.new(0.200000003, 0.349999934, 1)
1419
o92.CFrame = CFrame.new(-6.93032932, 2.6990211, -9.50977516, -2.06523491e-05, -1.00000048, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
1420
o92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1421
o92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1422
o92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1423
o92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1424
o92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1425
o92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1426
o92.Position = Vector3.new(-6.93032932, 2.6990211, -9.50977516)
1427
o92.Velocity = Vector3.new(-8.40138227e-22, 0.103487223, -1.27903065e-21)
1428
o93.Parent = o92
1429
o93.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1430
o93.Scale = Vector3.new(0.125, 0.200000003, 0.25)
1431
o93.MeshType = Enum.MeshType.FileMesh
1432
o94.Name = "part_Weld"
1433
o94.Parent = o92
1434
o94.C0 = CFrame.new(-15.424983, -12.1832542, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
1435
o94.C1 = CFrame.new(11.4032574, -3.00500154, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1436
o94.Part0 = o92
1437
o94.Part1 = o95
1438
o95.Name = "part"
1439
o95.Parent = o1
1440
o95.BrickColor = BrickColor.new("Institutional white")
1441
o95.Position = Vector3.new(-6.15031862, 3.37900352, -9.75976276)
1442
o95.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1443
o95.Velocity = Vector3.new(4.45367996e-22, 0.103487223, 5.48244041e-22)
1444
o95.CanCollide = false
1445
o95.Locked = true
1446
o95.Size = Vector3.new(0.5, 0.349999934, 1)
1447
o95.CFrame = CFrame.new(-6.15031862, 3.37900352, -9.75976276, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1448
o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1449
o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1450
o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1451
o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1452
o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1453
o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1454
o95.Color = Color3.new(0.972549, 0.972549, 0.972549)
1455
o95.Position = Vector3.new(-6.15031862, 3.37900352, -9.75976276)
1456
o95.Velocity = Vector3.new(4.45367996e-22, 0.103487223, 5.48244041e-22)
1457
o96.Parent = o95
1458
o96.MeshId = "rbxasset://fonts/rightarm.mesh"
1459
o96.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
1460
o96.MeshType = Enum.MeshType.FileMesh
1461
o97.Name = "part_Weld"
1462
o97.Parent = o95
1463
o97.C0 = CFrame.new(11.4032574, -3.00500154, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1464
o97.C1 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1465
o97.Part0 = o95
1466
o97.Part1 = o98
1467
o98.Name = "part"
1468
o98.Parent = o1
1469
o98.Material = Enum.Material.Granite
1470
o98.BrickColor = BrickColor.new("Alder")
1471
o98.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
1472
o98.Rotation = Vector3.new(0, 90, 0)
1473
o98.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1474
o98.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
1475
o98.CanCollide = false
1476
o98.Locked = true
1477
o98.Shape = Enum.PartType.Cylinder
1478
o98.Size = Vector3.new(1.12, 0.300000012, 0.949999988)
1479
o98.CFrame = CFrame.new(-6.45530605, 3.97900605, -9.75977421, 2.06523491e-05, 1.18017197e-05, 1.00000048, -1.552701e-05, 1, -1.17719173e-05, -0.999999702, -1.55568141e-05, 2.06456607e-05)
1480
o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1481
o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1482
o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1483
o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1484
o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1485
o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1486
o98.Color = Color3.new(0.705882, 0.501961, 1)
1487
o98.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
1488
o98.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
1489
o99.Name = "part_Weld"
1490
o99.Parent = o98
1491
o99.C0 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1492
o99.C1 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1493
o99.Part0 = o98
1494
o99.Part1 = o100
1495
o100.Name = "part"
1496
o100.Parent = o1
1497
o100.BrickColor = BrickColor.new("Institutional white")
1498
o100.Position = Vector3.new(-6.45530796, 3.97900605, -9.75978565)
1499
o100.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1500
o100.Velocity = Vector3.new(1.57443571e-21, 0.103487223, 2.13701162e-21)
1501
o100.CanCollide = false
1502
o100.Locked = true
1503
o100.Size = Vector3.new(0.5, 0.349999934, 1)
1504
o100.CFrame = CFrame.new(-6.45530796, 3.97900605, -9.75978565, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
1505
o100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1506
o100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1507
o100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1508
o100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1509
o100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1510
o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1511
o100.Color = Color3.new(0.972549, 0.972549, 0.972549)
1512
o100.Position = Vector3.new(-6.45530796, 3.97900605, -9.75978565)
1513
o100.Velocity = Vector3.new(1.57443571e-21, 0.103487223, 2.13701162e-21)
1514
o101.Parent = o100
1515
o101.MeshId = "rbxasset://fonts/rightarm.mesh"
1516
o101.Scale = Vector3.new(0.800000012, 0.0500000007, 1.10000002)
1517
o101.MeshType = Enum.MeshType.FileMesh
1518
o102.Name = "part_Weld"
1519
o102.Parent = o100
1520
o102.C0 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1521
o102.C1 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1522
o102.Part0 = o100
1523
o102.Part1 = o103
1524
o103.Name = "part"
1525
o103.Parent = o1
1526
o103.Material = Enum.Material.Neon
1527
o103.BrickColor = BrickColor.new("Alder")
1528
o103.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
1529
o103.Rotation = Vector3.new(0, 90, 0)
1530
o103.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1531
o103.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
1532
o103.CanCollide = false
1533
o103.Locked = true
1534
o103.Shape = Enum.PartType.Cylinder
1535
o103.Size = Vector3.new(1.11500001, 0.307500005, 0.957499981)
1536
o103.CFrame = CFrame.new(-6.45530605, 3.97900605, -9.75977421, 2.06523491e-05, 1.18017197e-05, 1.00000048, -1.552701e-05, 1, -1.17719173e-05, -0.999999702, -1.55568141e-05, 2.06456607e-05)
1537
o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1538
o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1539
o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1540
o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1541
o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1542
o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1543
o103.Color = Color3.new(0.705882, 0.501961, 1)
1544
o103.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
1545
o103.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
1546
o104.Name = "part_Weld"
1547
o104.Parent = o103
1548
o104.C0 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
1549
o104.C1 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
1550
o104.Part0 = o103
1551
o104.Part1 = o105
1552
o105.Name = "part"
1553
o105.Parent = o1
1554
o105.Material = Enum.Material.SmoothPlastic
1555
o105.BrickColor = BrickColor.new("Institutional white")
1556
o105.Position = Vector3.new(-6.15530872, 3.97900248, -9.75977612)
1557
o105.Rotation = Vector3.new(90, 90, 0)
1558
o105.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1559
o105.Velocity = Vector3.new(1.57442874e-21, 0.103487223, 2.14412465e-21)
1560
o105.CanCollide = false
1561
o105.Locked = true
1562
o105.Shape = Enum.PartType.Cylinder
1563
o105.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
1564
o105.CFrame = CFrame.new(-6.15530872, 3.97900248, -9.75977612, 1.18017197e-05, -2.06523491e-05, 1.00000048, 1, 1.552701e-05, -1.17719173e-05, -1.55568141e-05, 0.999999702, 2.06456607e-05)
1565
o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1566
o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1567
o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1568
o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1569
o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1570
o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1571
o105.Color = Color3.new(0.972549, 0.972549, 0.972549)
1572
o105.Position = Vector3.new(-6.15530872, 3.97900248, -9.75977612)
1573
o105.Velocity = Vector3.new(1.57442874e-21, 0.103487223, 2.14412465e-21)
1574
o106.Parent = o105
1575
o106.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
1576
o107.Name = "part_Weld"
1577
o107.Parent = o105
1578
o107.C0 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
1579
o107.C1 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
1580
o107.Part0 = o105
1581
o107.Part1 = o11
1582
o108.Parent = o1
1583
o108.Material = Enum.Material.SmoothPlastic
1584
o108.BrickColor = BrickColor.new("Institutional white")
1585
o108.Position = Vector3.new(-6.47820044, 2.08811569, -10.2095814)
1586
o108.Rotation = Vector3.new(-45, 90, 0)
1587
o108.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1588
o108.Velocity = Vector3.new(-1.97310586e-21, 0.103487223, -2.89330411e-21)
1589
o108.CanCollide = false
1590
o108.Locked = true
1591
o108.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
1592
o108.CFrame = CFrame.new(-6.47820044, 2.08811569, -10.2095814, 6.23700225e-06, 2.29261204e-05, 1.00000024, -0.707117677, 0.707095861, -1.18107737e-05, -0.707095623, -0.707117558, 2.06147542e-05)
1593
o108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1594
o108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1595
o108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1596
o108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1597
o108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1598
o108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1599
o108.Color = Color3.new(0.972549, 0.972549, 0.972549)
1600
o108.Position = Vector3.new(-6.47820044, 2.08811569, -10.2095814)
1601
o108.Velocity = Vector3.new(-1.97310586e-21, 0.103487223, -2.89330411e-21)
1602
o109.Parent = o108
1603
o109.Scale = Vector3.new(0.790749788, 1, 0.763249993)
1604
o110.Name = "Part_Weld"
1605
o110.Parent = o108
1606
o110.C0 = CFrame.new(11.62432, 9.20018959, 11.7311325, -4.37113883e-08, -0.707106709, -0.707106829, 0, 0.707106829, -0.707106709, 1, -3.09086161e-08, -3.09086197e-08)
1607
o110.C1 = CFrame.new(-14.5369148, 6.04063177, -11.7311316, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
1608
o110.Part0 = o108
1609
o110.Part1 = o111
1610
o111.Parent = o1
1611
o111.Material = Enum.Material.SmoothPlastic
1612
o111.BrickColor = BrickColor.new("Institutional white")
1613
o111.Position = Vector3.new(-6.47821569, 2.41113019, -9.32508469)
1614
o111.Rotation = Vector3.new(-30, -90, 0)
1615
o111.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1616
o111.Velocity = Vector3.new(-1.38626656e-21, 0.103487223, -2.03408479e-21)
1617
o111.CanCollide = false
1618
o111.Locked = true
1619
o111.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
1620
o111.CFrame = CFrame.new(-6.47821569, 2.41113019, -9.32508469, -1.20441282e-05, 2.05193683e-05, -1.00000024, 0.50001353, 0.86601758, 1.17580084e-05, 0.866017342, -0.500013471, -2.06835175e-05)
1621
o111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1622
o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1623
o111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1624
o111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1625
o111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1626
o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1627
o111.Color = Color3.new(0.972549, 0.972549, 0.972549)
1628
o111.Position = Vector3.new(-6.47821569, 2.41113019, -9.32508469)
1629
o111.Velocity = Vector3.new(-1.38626656e-21, 0.103487223, -2.03408479e-21)
1630
o112.Parent = o111
1631
o112.Scale = Vector3.new(0.790749788, 1, 0.763249993)
1632
o113.Name = "Part_Weld"
1633
o113.Parent = o111
1634
o113.C0 = CFrame.new(-14.5369148, 6.04063177, -11.7311316, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
1635
o113.C1 = CFrame.new(11.7440453, -9.10902119, 11.7311335, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
1636
o113.Part0 = o111
1637
o113.Part1 = o114
1638
o114.Parent = o1
1639
o114.Material = Enum.Material.SmoothPlastic
1640
o114.BrickColor = BrickColor.new("Institutional white")
1641
o114.Position = Vector3.new(-6.47819757, 2.39061642, -10.2095842)
1642
o114.Rotation = Vector3.new(30, 90, 0)
1643
o114.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1644
o114.Velocity = Vector3.new(-1.40386878e-21, 0.103487223, -2.08865104e-21)
1645
o114.CanCollide = false
1646
o114.Locked = true
1647
o114.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
1648
o114.CFrame = CFrame.new(-6.47819757, 2.39061642, -10.2095842, 2.37267905e-05, -1.3298795e-07, 1.00000024, 0.499986678, 0.866033077, -1.17580094e-05, -0.866032958, 0.499986529, 2.06078075e-05)
1649
o114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1650
o114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1651
o114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1652
o114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1653
o114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1654
o114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1655
o114.Color = Color3.new(0.972549, 0.972549, 0.972549)
1656
o114.Position = Vector3.new(-6.47819757, 2.39061642, -10.2095842)
1657
o114.Velocity = Vector3.new(-1.40386878e-21, 0.103487223, -2.08865104e-21)
1658
o115.Parent = o114
1659
o115.Scale = Vector3.new(0.790749788, 1, 0.763249993)
1660
o116.Name = "Part_Weld"
1661
o116.Parent = o114
1662
o116.C0 = CFrame.new(11.7440453, -9.10902119, 11.7311335, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
1663
o116.C1 = CFrame.new(-1.92440557, 15.179328, -11.7311325, -4.37113883e-08, 1, -1.62920685e-07, 0, -1.62920685e-07, -1, -1, -4.37113883e-08, 7.12148964e-15)
1664
o116.Part0 = o114
1665
o116.Part1 = o117
1666
o117.Parent = o1
1667
o117.Material = Enum.Material.SmoothPlastic
1668
o117.BrickColor = BrickColor.new("Institutional white")
1669
o117.Position = Vector3.new(-6.47820807, 2.29841208, -9.75540829)
1670
o117.Rotation = Vector3.new(-90, -90, 0)
1671
o117.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1672
o117.Velocity = Vector3.new(-1.58815931e-21, 0.103487223, -2.33391514e-21)
1673
o117.CanCollide = false
1674
o117.Locked = true
1675
o117.Size = Vector3.new(0.200000003, 0.664949954, 0.200000003)
1676
o117.CFrame = CFrame.new(-6.47820807, 2.29841208, -9.75540829, 1.17263735e-05, 2.06523491e-05, -1.00000024, 1, -1.56462193e-05, 1.17361533e-05, -1.57058239e-05, -0.999999821, -2.06456625e-05)
1677
o117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1678
o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1679
o117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1680
o117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1681
o117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1682
o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1683
o117.Color = Color3.new(0.972549, 0.972549, 0.972549)
1684
o117.Position = Vector3.new(-6.47820807, 2.29841208, -9.75540829)
1685
o117.Velocity = Vector3.new(-1.58815931e-21, 0.103487223, -2.33391514e-21)
1686
o118.Parent = o117
1687
o118.Scale = Vector3.new(0.158149958, 1, 0.763249993)
1688
o118.MeshType = Enum.MeshType.Brick
1689
o119.Name = "Part_Weld"
1690
o119.Parent = o117
1691
o119.C0 = CFrame.new(-1.92440557, 15.179328, -11.7311325, -4.37113883e-08, 1, -1.62920685e-07, 0, -1.62920685e-07, -1, -1, -4.37113883e-08, 7.12148964e-15)
1692
o119.C1 = CFrame.new(-14.3873434, 6.09654665, -11.7311316, -4.37113883e-08, 0.5, 0.866025388, 0, 0.866025388, -0.5, -1, -2.18556941e-08, -3.78551732e-08)
1693
o119.Part0 = o117
1694
o119.Part1 = o120
1695
o120.Parent = o1
1696
o120.Material = Enum.Material.SmoothPlastic
1697
o120.BrickColor = BrickColor.new("Institutional white")
1698
o120.Position = Vector3.new(-6.47821474, 2.2879169, -9.42665863)
1699
o120.Rotation = Vector3.new(-30, -90, 0)
1700
o120.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1701
o120.Velocity = Vector3.new(-1.61571406e-21, 0.103487223, -2.36183249e-21)
1702
o120.CanCollide = false
1703
o120.Locked = true
1704
o120.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
1705
o120.CFrame = CFrame.new(-6.47821474, 2.2879169, -9.42665863, -1.20441318e-05, 2.05193646e-05, -1.00000024, 0.500013411, 0.86601764, 1.17580084e-05, 0.866017401, -0.500013351, -2.06835175e-05)
1706
o120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1707
o120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1708
o120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1709
o120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1710
o120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1711
o120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1712
o120.Color = Color3.new(0.972549, 0.972549, 0.972549)
1713
o120.Position = Vector3.new(-6.47821474, 2.2879169, -9.42665863)
1714
o120.Velocity = Vector3.new(-1.61571406e-21, 0.103487223, -2.36183249e-21)
1715
o121.Parent = o120
1716
o121.Scale = Vector3.new(0.158149958, 1, 0.763249993)
1717
o121.MeshType = Enum.MeshType.Brick
1718
o122.Name = "Part_Weld"
1719
o122.Parent = o120
1720
o122.C0 = CFrame.new(-14.3873434, 6.09654665, -11.7311316, -4.37113883e-08, 0.5, 0.866025388, 0, 0.866025388, -0.5, -1, -2.18556941e-08, -3.78551732e-08)
1721
o122.C1 = CFrame.new(-9.81113243, -12.2642508, -11.7311316, -4.37113883e-08, -0.707106709, 0.707106829, 0, 0.707106829, 0.707106709, -1, 3.09086161e-08, -3.09086197e-08)
1722
o122.Part0 = o120
1723
o122.Part1 = o123
1724
o123.Parent = o1
1725
o123.Material = Enum.Material.SmoothPlastic
1726
o123.BrickColor = BrickColor.new("Institutional white")
1727
o123.Position = Vector3.new(-6.47821808, 2.10862899, -9.32507992)
1728
o123.Rotation = Vector3.new(45, -90, 0)
1729
o123.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1730
o123.Velocity = Vector3.new(-1.95550445e-21, 0.103487223, -2.83873907e-21)
1731
o123.CanCollide = false
1732
o123.Locked = true
1733
o123.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
1734
o123.CFrame = CFrame.new(-6.47821808, 2.10862899, -9.32507992, -2.29698326e-05, -6.2807112e-06, -1.00000024, -0.707095742, 0.707117736, 1.18107728e-05, 0.707117617, 0.707095504, -2.06765726e-05)
1735
o123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1736
o123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1737
o123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1738
o123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1739
o123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1740
o123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1741
o123.Color = Color3.new(0.972549, 0.972549, 0.972549)
1742
o123.Position = Vector3.new(-6.47821808, 2.10862899, -9.32507992)
1743
o123.Velocity = Vector3.new(-1.95550445e-21, 0.103487223, -2.83873907e-21)
1744
o124.Parent = o123
1745
o124.Scale = Vector3.new(0.790749788, 1, 0.763249993)
1746
o125.Name = "Part_Weld"
1747
o125.Parent = o123
1748
o125.C0 = CFrame.new(-9.81113243, -12.2642508, -11.7311316, -4.37113883e-08, -0.707106709, 0.707106829, 0, 0.707106829, 0.707106709, -1, 3.09086161e-08, -3.09086197e-08)
1749
o125.C1 = CFrame.new(-11.8906012, -9.07503128, -11.7311316, -4.37113883e-08, -0.5, 0.866025388, 0, 0.866025388, 0.5, -1, 2.18556941e-08, -3.78551732e-08)
1750
o125.Part0 = o123
1751
o125.Part1 = o126
1752
o126.Parent = o1
1753
o126.Material = Enum.Material.SmoothPlastic
1754
o126.BrickColor = BrickColor.new("Institutional white")
1755
o126.Position = Vector3.new(-6.47820091, 2.28790617, -10.0996571)
1756
o126.Rotation = Vector3.new(30, -90, 0)
1757
o126.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1758
o126.Velocity = Vector3.new(-1.59975569e-21, 0.103487223, -2.36186076e-21)
1759
o126.CanCollide = false
1760
o126.Locked = true
1761
o126.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
1762
o126.CFrame = CFrame.new(-6.47820091, 2.28790617, -10.0996571, -2.38142111e-05, -1.32987353e-07, -1.00000024, -0.499986589, 0.866033018, 1.18017197e-05, 0.866032839, 0.49998641, -2.06835193e-05)
1763
o126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1764
o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1765
o126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1766
o126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1767
o126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1768
o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1769
o126.Color = Color3.new(0.972549, 0.972549, 0.972549)
1770
o126.Position = Vector3.new(-6.47820091, 2.28790617, -10.0996571)
1771
o126.Velocity = Vector3.new(-1.59975569e-21, 0.103487223, -2.36186076e-21)
1772
o127.Parent = o126
1773
o127.Scale = Vector3.new(0.158149958, 1, 0.763249993)
1774
o127.MeshType = Enum.MeshType.Brick
1775
o128.Name = "Part_Weld"
1776
o128.Parent = o126
1777
o128.C0 = CFrame.new(-11.8906012, -9.07503128, -11.7311316, -4.37113883e-08, -0.5, 0.866025388, 0, 0.866025388, 0.5, -1, 2.18556941e-08, -3.78551732e-08)
1778
o128.C1 = CFrame.new(12.2190666, 0.378772736, 14.6808443, 0.965936959, -0.258777469, 2.36039277e-08, -0.258777469, -0.965936959, -1.62644113e-07, 6.4888539e-08, 1.50995803e-07, -1)
1779
o128.Part0 = o126
1780
o128.Part1 = o129
1781
o129.Parent = o1
1782
o129.Material = Enum.Material.Neon
1783
o129.BrickColor = BrickColor.new("Alder")
1784
o129.Position = Vector3.new(-6.45187712, 3.90188384, -10.2539158)
1785
o129.Rotation = Vector3.new(180, 0, 15)
1786
o129.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1787
o129.Velocity = Vector3.new(1.44104263e-21, 0.103487223, 1.93194979e-21)
1788
o129.CanCollide = false
1789
o129.Locked = true
1790
o129.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
1791
o129.CFrame = CFrame.new(-6.45187712, 3.90188384, -10.2539158, 0.965934157, -0.258788884, 2.07172397e-05, -0.258788824, -0.96593374, -1.53183937e-05, 2.39724868e-05, 9.45932607e-06, -0.999999642)
1792
o129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1793
o129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1794
o129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1795
o129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1796
o129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1797
o129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1798
o129.Color = Color3.new(0.705882, 0.501961, 1)
1799
o129.Position = Vector3.new(-6.45187712, 3.90188384, -10.2539158)
1800
o129.Velocity = Vector3.new(1.44104263e-21, 0.103487223, 1.93194979e-21)
1801
o130.Parent = o129
1802
o130.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
1803
o130.MeshType = Enum.MeshType.Brick
1804
o131.Name = "Part_Weld"
1805
o131.Parent = o129
1806
o131.C0 = CFrame.new(12.2190666, 0.378772736, 14.6808443, 0.965936959, -0.258777469, 2.36039277e-08, -0.258777469, -0.965936959, -1.62644113e-07, 6.4888539e-08, 1.50995803e-07, -1)
1807
o131.C1 = CFrame.new(3.60923386, -11.7324982, 14.6808453, 4.31100525e-05, -1, 1.50998545e-07, -1, -4.31100525e-05, -6.35665174e-08, 6.3573026e-08, -1.50995803e-07, -1)
1808
o131.Part0 = o129
1809
o131.Part1 = o132
1810
o132.Parent = o1
1811
o132.Material = Enum.Material.Neon
1812
o132.BrickColor = BrickColor.new("Alder")
1813
o132.Position = Vector3.new(-6.47970009, 3.98272705, -10.2539177)
1814
o132.Rotation = Vector3.new(180, 0, 90)
1815
o132.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1816
o132.Velocity = Vector3.new(1.59317106e-21, 0.103487223, 2.14633235e-21)
1817
o132.CanCollide = false
1818
o132.Locked = true
1819
o132.Size = Vector3.new(0.302901715, 0.229906425, 0.229906395)
1820
o132.CFrame = CFrame.new(-6.47970009, 3.98272705, -10.2539177, 3.13371347e-05, -1.00000024, 2.0715921e-05, -0.999999821, -3.13073397e-05, -1.5620386e-05, 1.56435381e-05, -2.07060621e-05, -0.999999642)
1821
o132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1822
o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1823
o132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1824
o132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1825
o132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1826
o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1827
o132.Color = Color3.new(0.705882, 0.501961, 1)
1828
o132.Position = Vector3.new(-6.47970009, 3.98272705, -10.2539177)
1829
o132.Velocity = Vector3.new(1.59317106e-21, 0.103487223, 2.14633235e-21)
1830
o133.Parent = o132
1831
o133.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
1832
o133.MeshType = Enum.MeshType.Brick
1833
o134.Name = "Part_Weld"
1834
o134.Parent = o132
1835
o134.C0 = CFrame.new(3.60923386, -11.7324982, 14.6808453, 4.31100525e-05, -1, 1.50998545e-07, -1, -4.31100525e-05, -6.35665174e-08, 6.3573026e-08, -1.50995803e-07, -1)
1836
o134.C1 = CFrame.new(8.31720257, 8.98535156, 14.6808434, 0.866003811, 0.500037432, 2.23302301e-08, 0.500037432, -0.866003811, -1.61465636e-07, -6.14007902e-08, 1.50995803e-07, -1)
1837
o134.Part0 = o132
1838
o134.Part1 = o135
1839
o135.Parent = o1
1840
o135.Material = Enum.Material.Neon
1841
o135.BrickColor = BrickColor.new("Alder")
1842
o135.Position = Vector3.new(-6.44278574, 3.9964304, -10.2539167)
1843
o135.Rotation = Vector3.new(180, 0, -30)
1844
o135.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1845
o135.Velocity = Vector3.new(1.61895755e-21, 0.103487223, 2.18365968e-21)
1846
o135.CanCollide = false
1847
o135.Locked = true
1848
o135.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
1849
o135.CFrame = CFrame.new(-6.44278574, 3.9964304, -10.2539167, 0.866009891, 0.500027359, 2.0590951e-05, 0.50002712, -0.866009533, -1.53183937e-05, 1.0152984e-05, 2.35767184e-05, -0.999999642)
1850
o135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1851
o135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1852
o135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1853
o135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1854
o135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1855
o135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1856
o135.Color = Color3.new(0.705882, 0.501961, 1)
1857
o135.Position = Vector3.new(-6.44278574, 3.9964304, -10.2539167)
1858
o135.Velocity = Vector3.new(1.61895755e-21, 0.103487223, 2.18365968e-21)
1859
o136.Parent = o135
1860
o136.Scale = Vector3.new(0.447949916, 0.104347944, 0.606715083)
1861
o136.MeshType = Enum.MeshType.Brick
1862
o137.Name = "Part_Weld"
1863
o137.Parent = o135
1864
o137.C0 = CFrame.new(8.31720257, 8.98535156, 14.6808434, 0.866003811, 0.500037432, 2.23302301e-08, 0.500037432, -0.866003811, -1.61465636e-07, -6.14007902e-08, 1.50995803e-07, -1)
1865
o137.C1 = CFrame.new(11.9701443, -2.67644763, 14.6808453, 0.866046965, -0.499962628, 2.1012454e-09, -0.499962628, -0.866046965, -1.75563628e-07, 8.95950336e-08, 1.50995803e-07, -1)
1866
o137.Part0 = o135
1867
o137.Part1 = o138
1868
o138.Parent = o1
1869
o138.Material = Enum.Material.Neon
1870
o138.BrickColor = BrickColor.new("Alder")
1871
o138.Position = Vector3.new(-6.45187712, 4.04068899, -10.2539177)
1872
o138.Rotation = Vector3.new(180, 0, 30)
1873
o138.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1874
o138.Velocity = Vector3.new(1.70224218e-21, 0.103487223, 2.30117183e-21)
1875
o138.CanCollide = false
1876
o138.Locked = true
1877
o138.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
1878
o138.CFrame = CFrame.new(-6.45187712, 4.04068899, -10.2539177, 0.866041303, -0.499972939, 2.07419471e-05, -0.499972761, -0.866040945, -1.53183955e-05, 2.56252988e-05, 2.92012328e-06, -0.999999642)
1879
o138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1880
o138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1881
o138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1882
o138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1883
o138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1884
o138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1885
o138.Color = Color3.new(0.705882, 0.501961, 1)
1886
o138.Position = Vector3.new(-6.45187712, 4.04068899, -10.2539177)
1887
o138.Velocity = Vector3.new(1.70224218e-21, 0.103487223, 2.30117183e-21)
1888
o139.Parent = o138
1889
o139.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
1890
o139.MeshType = Enum.MeshType.Brick
1891
o140.Name = "Part_Weld"
1892
o140.Parent = o138
1893
o140.C0 = CFrame.new(11.9701443, -2.67644763, 14.6808453, 0.866046965, -0.499962628, 2.1012454e-09, -0.499962628, -0.866046965, -1.75563628e-07, 8.95950336e-08, 1.50995803e-07, -1)
1894
o140.C1 = CFrame.new(-10.3952847, 6.437222, -15.6695423, -0.965936959, -0.258777469, 2.26190878e-07, 0.258777469, -0.965936959, 9.57233368e-08, 1.93715096e-07, 1.50995817e-07, 1)
1895
o140.Part0 = o138
1896
o140.Part1 = o141
1897
o141.Parent = o1
1898
o141.Material = Enum.Material.Neon
1899
o141.BrickColor = BrickColor.new("Alder")
1900
o141.Position = Vector3.new(-6.45406055, 3.90189886, -9.26521587)
1901
o141.Rotation = Vector3.new(0, 0, -165)
1902
o141.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1903
o141.Velocity = Vector3.new(1.41759703e-21, 0.103487223, 1.93193788e-21)
1904
o141.CanCollide = false
1905
o141.Locked = true
1906
o141.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
1907
o141.CFrame = CFrame.new(-6.45406055, 3.90189886, -9.26521587, -0.965940237, 0.258766174, -2.0458634e-05, -0.258766055, -0.965939879, 1.56203841e-05, -1.57049162e-05, 2.04016669e-05, 0.999999642)
1908
o141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1909
o141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1910
o141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1911
o141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1912
o141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1913
o141.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1914
o141.Color = Color3.new(0.705882, 0.501961, 1)
1915
o141.Position = Vector3.new(-6.45406055, 3.90189886, -9.26521587)
1916
o141.Velocity = Vector3.new(1.41759703e-21, 0.103487223, 1.93193788e-21)
1917
o142.Parent = o141
1918
o142.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
1919
o142.MeshType = Enum.MeshType.Brick
1920
o143.Parent = o1
1921
o143.Material = Enum.Material.Neon
1922
o143.BrickColor = BrickColor.new("Alder")
1923
o143.Position = Vector3.new(-6.46314669, 3.99644661, -9.26521683)
1924
o143.Rotation = Vector3.new(0, 0, 150)
1925
o143.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1926
o143.Velocity = Vector3.new(1.59551165e-21, 0.103487223, 2.183216e-21)
1927
o143.CanCollide = false
1928
o143.Locked = true
1929
o143.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
1930
o143.CFrame = CFrame.new(-6.46314669, 3.99644661, -9.26521683, -0.86599803, -0.500047565, -2.03474556e-05, 0.500047565, -0.86599803, 1.5691694e-05, -2.54674487e-05, 3.41428176e-06, 1)
1931
o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1932
o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1933
o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1934
o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1935
o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1936
o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1937
o143.Color = Color3.new(0.705882, 0.501961, 1)
1938
o143.Position = Vector3.new(-6.46314669, 3.99644661, -9.26521683)
1939
o143.Velocity = Vector3.new(1.59551165e-21, 0.103487223, 2.183216e-21)
1940
o144.Parent = o143
1941
o144.Scale = Vector3.new(0.447949916, 0.104347944, 0.606715083)
1942
o144.MeshType = Enum.MeshType.Brick
1943
o145.Name = "Part_Weld"
1944
o145.Parent = o143
1945
o145.C0 = CFrame.new(-11.9575319, -2.72144461, -15.6695414, -0.866003811, 0.500037432, 1.82585694e-07, -0.500037432, -0.866003811, 2.79785695e-07, 2.98023224e-07, 1.50995803e-07, 1)
1946
o145.C1 = CFrame.new(-8.30559921, 9.02858734, -15.6695433, -0.866046965, -0.499962658, 2.17448431e-07, 0.499962658, -0.866046965, 4.88191958e-08, 1.63912773e-07, 1.50995817e-07, 1)
1947
o145.Part0 = o143
1948
o145.Part1 = o146
1949
o146.Parent = o1
1950
o146.Material = Enum.Material.Neon
1951
o146.BrickColor = BrickColor.new("Alder")
1952
o146.Position = Vector3.new(-6.45405054, 4.04070663, -9.26521778)
1953
o146.Rotation = Vector3.new(0, 0, -150)
1954
o146.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1955
o146.Velocity = Vector3.new(1.6787989e-21, 0.103487223, 2.30116376e-21)
1956
o146.CanCollide = false
1957
o146.Locked = true
1958
o146.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
1959
o146.CFrame = CFrame.new(-6.45405054, 4.04070663, -9.26521778, -0.866052866, 0.499952525, -2.0481566e-05, -0.499952525, -0.866052866, 1.56916958e-05, -9.89301407e-06, 2.38296489e-05, 1)
1960
o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1961
o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1962
o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1963
o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1964
o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1965
o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1966
o146.Color = Color3.new(0.705882, 0.501961, 1)
1967
o146.Position = Vector3.new(-6.45405054, 4.04070663, -9.26521778)
1968
o146.Velocity = Vector3.new(1.6787989e-21, 0.103487223, 2.30116376e-21)
1969
o147.Parent = o146
1970
o147.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
1971
o147.MeshType = Enum.MeshType.Brick
1972
o148.Name = "Part_Weld"
1973
o148.Parent = o146
1974
o148.C0 = CFrame.new(-8.30559921, 9.02858734, -15.6695433, -0.866046965, -0.499962658, 2.17448431e-07, 0.499962658, -0.866046965, 4.88191958e-08, 1.63912773e-07, 1.50995817e-07, 1)
1975
o148.C1 = CFrame.new(3.60822964, 11.6793289, -15.6695404, -4.30782638e-05, -1, -1.50987475e-07, 1, -4.30782638e-05, -1.93721604e-07, 1.93715096e-07, -1.50995817e-07, 1)
1976
o148.Part0 = o146
1977
o148.Part1 = o149
1978
o149.Parent = o1
1979
o149.Material = Enum.Material.Neon
1980
o149.BrickColor = BrickColor.new("Alder")
1981
o149.Position = Vector3.new(-6.42622948, 3.9827435, -9.26521683)
1982
o149.Rotation = Vector3.new(0, 0, -90)
1983
o149.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
1984
o149.Velocity = Vector3.new(1.56972556e-21, 0.103487223, 2.14764218e-21)
1985
o149.CanCollide = false
1986
o149.Locked = true
1987
o149.Size = Vector3.new(0.302901715, 0.229906425, 0.229906395)
1988
o149.CFrame = CFrame.new(-6.42622948, 3.9827435, -9.26521683, -5.4800279e-05, 1, -2.04517673e-05, -1, -5.47999662e-05, 1.53897035e-05, 1.53885849e-05, 2.04526095e-05, 1)
1989
o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1990
o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1991
o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1992
o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1993
o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1994
o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1995
o149.Color = Color3.new(0.705882, 0.501961, 1)
1996
o149.Position = Vector3.new(-6.42622948, 3.9827435, -9.26521683)
1997
o149.Velocity = Vector3.new(1.56972556e-21, 0.103487223, 2.14764218e-21)
1998
o150.Parent = o149
1999
o150.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
2000
o150.MeshType = Enum.MeshType.Brick
2001
o151.Name = "part_Weld"
2002
o151.Parent = o149
2003
o151.C0 = CFrame.new(3.60822964, 11.6793289, -15.6695404, -4.30782638e-05, -1, -1.50987475e-07, 1, -4.30782638e-05, -1.93721604e-07, 1.93715096e-07, -1.50995817e-07, 1)
2004
o151.C1 = CFrame.new(11.7252579, -2.88699794, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2005
o151.Part0 = o149
2006
o151.Part1 = o152
2007
o152.Name = "part"
2008
o152.Parent = o1
2009
o152.Material = Enum.Material.SmoothPlastic
2010
o152.BrickColor = BrickColor.new("Institutional white")
2011
o152.Position = Vector3.new(-6.47231483, 3.26100397, -9.75976753)
2012
o152.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2013
o152.Velocity = Vector3.new(2.2331905e-22, 0.103487223, 2.26718599e-22)
2014
o152.CanCollide = false
2015
o152.Locked = true
2016
o152.Size = Vector3.new(1, 2, 1)
2017
o152.CFrame = CFrame.new(-6.47231483, 3.26100397, -9.75976753, 1, 1.17220197e-05, -2.06454806e-05, -1.17216987e-05, 1, 1.55407015e-05, 2.06456625e-05, -1.55404614e-05, 1)
2018
o152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2019
o152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2020
o152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2021
o152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2022
o152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2023
o152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2024
o152.Color = Color3.new(0.972549, 0.972549, 0.972549)
2025
o152.Position = Vector3.new(-6.47231483, 3.26100397, -9.75976753)
2026
o152.Velocity = Vector3.new(2.2331905e-22, 0.103487223, 2.26718599e-22)
2027
o153.Parent = o152
2028
o153.Scale = Vector3.new(0.5, 1, 0.5)
2029
o154.Name = "part_Weld"
2030
o154.Parent = o152
2031
o154.C0 = CFrame.new(11.7252579, -2.88699794, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2032
o154.C1 = CFrame.new(11.7252579, -2.90149784, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2033
o154.Part0 = o152
2034
o154.Part1 = o155
2035
o155.Name = "part"
2036
o155.Parent = o1
2037
o155.Material = Enum.Material.Neon
2038
o155.BrickColor = BrickColor.new("Alder")
2039
o155.Position = Vector3.new(-6.47231483, 3.27550387, -9.75976753)
2040
o155.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2041
o155.Velocity = Vector3.new(2.5060455e-22, 0.103487223, 2.65288394e-22)
2042
o155.CanCollide = false
2043
o155.Locked = true
2044
o155.Size = Vector3.new(0.849999964, 2.04999995, 1)
2045
o155.CFrame = CFrame.new(-6.47231483, 3.27550387, -9.75976753, 1, 1.17220197e-05, -2.06454806e-05, -1.17216987e-05, 1, 1.55407015e-05, 2.06456625e-05, -1.55404614e-05, 1)
2046
o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2047
o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2048
o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2049
o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2050
o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2051
o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2052
o155.Color = Color3.new(0.705882, 0.501961, 1)
2053
o155.Position = Vector3.new(-6.47231483, 3.27550387, -9.75976753)
2054
o155.Velocity = Vector3.new(2.5060455e-22, 0.103487223, 2.65288394e-22)
2055
o156.Parent = o155
2056
o156.Scale = Vector3.new(0.5, 1, 0.5)
2057
o157.Name = "part_Weld"
2058
o157.Parent = o155
2059
o157.C0 = CFrame.new(11.7252579, -2.90149784, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2060
o157.C1 = CFrame.new(11.7250099, -2.9104979, -15.1744814, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2061
o157.Part0 = o155
2062
o157.Part1 = o14
2063
o158.Name = "part"
2064
o158.Parent = o1
2065
o158.Material = Enum.Material.Metal
2066
o158.Position = Vector3.new(-7.26236534, 2.07540035, -10.0107718)
2067
o158.Rotation = Vector3.new(89.9899979, 85, 90.0099945)
2068
o158.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2069
o158.Velocity = Vector3.new(-2.00175467e-21, 0.103487223, -2.94574849e-21)
2070
o158.CanCollide = false
2071
o158.Locked = true
2072
o158.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2073
o158.CFrame = CFrame.new(-7.26236534, 2.07540035, -10.0107718, -2.06523491e-05, -0.087161839, 0.996196568, 1.552701e-05, -0.996195853, -0.0871618837, 0.999999702, 1.36983799e-05, 2.19229241e-05)
2074
o158.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2075
o158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2076
o158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2077
o158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2078
o158.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2079
o158.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2080
o158.Position = Vector3.new(-7.26236534, 2.07540035, -10.0107718)
2081
o158.Velocity = Vector3.new(-2.00175467e-21, 0.103487223, -2.94574849e-21)
2082
o159.Parent = o158
2083
o159.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
2084
o159.MeshType = Enum.MeshType.Brick
2085
o160.Name = "part_Weld"
2086
o160.Parent = o158
2087
o160.C0 = CFrame.new(-14.9239836, 0.604206085, 12.6159229, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
2088
o160.C1 = CFrame.new(-14.9239779, 3.40832949, 12.0952158, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
2089
o160.Part0 = o158
2090
o160.Part1 = o179
2091
o161.Name = "part"
2092
o161.Parent = o1
2093
o161.Material = Enum.Material.Metal
2094
o161.BrickColor = BrickColor.new("Really black")
2095
o161.Position = Vector3.new(-6.9128418, 2.61751699, -9.51077843)
2096
o161.Rotation = Vector3.new(-90, -10, -90)
2097
o161.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2098
o161.Velocity = Vector3.new(-9.93486224e-22, 0.103487223, -1.49541673e-21)
2099
o161.CanCollide = false
2100
o161.Locked = true
2101
o161.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2102
o161.CFrame = CFrame.new(-6.9128418, 2.61751699, -9.51077843, -2.06523491e-05, 0.984810472, -0.173636466, 1.552701e-05, 0.173636392, 0.984809875, 0.999999702, 1.76305984e-05, -1.890555e-05)
2103
o161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2104
o161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2105
o161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2106
o161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2107
o161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2108
o161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2109
o161.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2110
o161.Position = Vector3.new(-6.9128418, 2.61751699, -9.51077843)
2111
o161.Velocity = Vector3.new(-9.93486224e-22, 0.103487223, -1.49541673e-21)
2112
o162.Parent = o161
2113
o162.Scale = Vector3.new(0.075000003, 1.5, 1)
2114
o162.MeshType = Enum.MeshType.Wedge
2115
o163.Name = "part_Weld"
2116
o163.Parent = o161
2117
o163.C0 = CFrame.new(-15.4239779, 11.5913601, -4.32197857, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
2118
o163.C1 = CFrame.new(11.7132454, -2.42000055, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
2119
o163.Part0 = o161
2120
o163.Part1 = o18
2121
o164.Name = "part"
2122
o164.Parent = o1
2123
o164.Material = Enum.Material.Metal
2124
o164.BrickColor = BrickColor.new("Really black")
2125
o164.Position = Vector3.new(-6.91284275, 2.6175139, -9.76078129)
2126
o164.Rotation = Vector3.new(-90, -10, -90)
2127
o164.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2128
o164.Velocity = Vector3.new(-9.87556413e-22, 0.103487223, -1.49542501e-21)
2129
o164.CanCollide = false
2130
o164.Locked = true
2131
o164.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2132
o164.CFrame = CFrame.new(-6.91284275, 2.6175139, -9.76078129, -2.06523491e-05, 0.984810591, -0.173636481, 1.552701e-05, 0.173636407, 0.984809995, 0.999999702, 1.76306003e-05, -1.89055518e-05)
2133
o164.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2134
o164.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2135
o164.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2136
o164.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2137
o164.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2138
o164.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2139
o164.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2140
o164.Position = Vector3.new(-6.91284275, 2.6175139, -9.76078129)
2141
o164.Velocity = Vector3.new(-9.87556413e-22, 0.103487223, -1.49542501e-21)
2142
o165.Parent = o164
2143
o165.Scale = Vector3.new(0.075000003, 1.5, 1)
2144
o165.MeshType = Enum.MeshType.Wedge
2145
o166.Name = "part_Weld"
2146
o166.Parent = o164
2147
o166.C0 = CFrame.new(-15.173975, 11.5913639, -4.32197952, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
2148
o166.C1 = CFrame.new(-15.4239779, 11.5913601, -4.32197857, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
2149
o166.Part0 = o164
2150
o166.Part1 = o161
2151
o167.Name = "part"
2152
o167.Parent = o1
2153
o167.Material = Enum.Material.Metal
2154
o167.BrickColor = BrickColor.new("Really black")
2155
o167.Position = Vector3.new(-6.91284323, 2.61750984, -10.0107822)
2156
o167.Rotation = Vector3.new(-90, -10, -90)
2157
o167.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2158
o167.Velocity = Vector3.new(-9.8162842e-22, 0.103487223, -1.49543582e-21)
2159
o167.CanCollide = false
2160
o167.Locked = true
2161
o167.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2162
o167.CFrame = CFrame.new(-6.91284323, 2.61750984, -10.0107822, -2.06523491e-05, 0.98481071, -0.173636496, 1.552701e-05, 0.173636422, 0.984810114, 0.999999702, 1.76306021e-05, -1.89055536e-05)
2163
o167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2164
o167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2165
o167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2166
o167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2167
o167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2168
o167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2169
o167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
2170
o167.Position = Vector3.new(-6.91284323, 2.61750984, -10.0107822)
2171
o167.Velocity = Vector3.new(-9.8162842e-22, 0.103487223, -1.49543582e-21)
2172
o168.Parent = o167
2173
o168.Scale = Vector3.new(0.075000003, 1.5, 1)
2174
o168.MeshType = Enum.MeshType.Wedge
2175
o169.Name = "part_Weld"
2176
o169.Parent = o167
2177
o169.C0 = CFrame.new(-14.923974, 11.5913677, -4.32198, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
2178
o169.C1 = CFrame.new(-15.173975, 11.5913639, -4.32197952, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
2179
o169.Part0 = o167
2180
o169.Part1 = o164
2181
o170.Name = "part"
2182
o170.Parent = o1
2183
o170.Material = Enum.Material.Metal
2184
o170.Position = Vector3.new(-7.24260473, 1.5667212, -10.0107689)
2185
o170.Rotation = Vector3.new(-90, 30, -90)
2186
o170.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2187
o170.Velocity = Vector3.new(-2.95897207e-21, 0.103487223, -4.2983665e-21)
2188
o170.CanCollide = false
2189
o170.Locked = true
2190
o170.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2191
o170.CFrame = CFrame.new(-7.24260473, 1.5667212, -10.0107689, -2.06523491e-05, 0.866020322, 0.500010908, 1.552701e-05, -0.50001055, 0.866019785, 0.999999702, 2.56580843e-05, -3.14976205e-06)
2192
o170.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2193
o170.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2194
o170.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2195
o170.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2196
o170.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2197
o170.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2198
o170.Position = Vector3.new(-7.24260473, 1.5667212, -10.0107689)
2199
o170.Velocity = Vector3.new(-2.95897207e-21, 0.103487223, -4.2983665e-21)
2200
o171.Parent = o170
2201
o171.MeshId = "rbxassetid://9756362"
2202
o171.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
2203
o171.MeshType = Enum.MeshType.FileMesh
2204
o172.Name = "part_Weld"
2205
o172.Parent = o170
2206
o172.C0 = CFrame.new(-14.9239779, 11.4177895, 5.21484423, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
2207
o172.C1 = CFrame.new(-14.923974, 11.5913677, -4.32198, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
2208
o172.Part0 = o170
2209
o172.Part1 = o167
2210
o173.Name = "part"
2211
o173.Parent = o1
2212
o173.Material = Enum.Material.Metal
2213
o173.Position = Vector3.new(-7.17200708, 1.42038417, -10.0107689)
2214
o173.Rotation = Vector3.new(-90, 20, -90)
2215
o173.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2216
o173.Velocity = Vector3.new(-3.23434486e-21, 0.103487223, -4.68594747e-21)
2217
o173.CanCollide = false
2218
o173.Locked = true
2219
o173.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2220
o173.CFrame = CFrame.new(-7.17200708, 1.42038417, -10.0107689, -2.06523491e-05, 0.939689755, 0.3420313, 1.552701e-05, -0.342031091, 0.939689219, 0.999999702, 2.47213302e-05, -7.55740348e-06)
2221
o173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2222
o173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2223
o173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2224
o173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2225
o173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2226
o173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2227
o173.Position = Vector3.new(-7.17200708, 1.42038417, -10.0107689)
2228
o173.Velocity = Vector3.new(-3.23434486e-21, 0.103487223, -4.68594747e-21)
2229
o174.Parent = o173
2230
o174.MeshId = "rbxassetid://9756362"
2231
o174.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
2232
o174.MeshType = Enum.MeshType.FileMesh
2233
o175.Name = "part_Weld"
2234
o175.Parent = o173
2235
o175.C0 = CFrame.new(-14.923974, 12.0334835, 3.26629925, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
2236
o175.C1 = CFrame.new(-14.9239779, 11.4177895, 5.21484423, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
2237
o175.Part0 = o173
2238
o175.Part1 = o170
2239
o176.Name = "part"
2240
o176.Parent = o1
2241
o176.Material = Enum.Material.Metal
2242
o176.Position = Vector3.new(-7.17200804, 1.33038437, -10.0107698)
2243
o176.Rotation = Vector3.new(-90, 0, -90)
2244
o176.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2245
o176.Velocity = Vector3.new(-3.40370363e-21, 0.103487223, -4.92534719e-21)
2246
o176.CanCollide = false
2247
o176.Locked = true
2248
o176.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2249
o176.CFrame = CFrame.new(-7.17200804, 1.33038437, -10.0107698, -2.06523491e-05, 1.00000119, 1.17123127e-05, 1.552701e-05, -1.1742115e-05, 1.0000006, 0.999999702, 2.06456716e-05, -1.5556825e-05)
2250
o176.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2251
o176.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2252
o176.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2253
o176.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2254
o176.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2255
o176.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2256
o176.Position = Vector3.new(-7.17200804, 1.33038437, -10.0107698)
2257
o176.Velocity = Vector3.new(-3.40370363e-21, 0.103487223, -4.92534719e-21)
2258
o177.Parent = o176
2259
o177.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2260
o177.MeshType = Enum.MeshType.Wedge
2261
o178.Name = "part_Weld"
2262
o178.Parent = o176
2263
o178.C0 = CFrame.new(-14.9239721, 12.4249153, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
2264
o178.C1 = CFrame.new(-14.923974, 12.0334835, 3.26629925, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
2265
o178.Part0 = o176
2266
o178.Part1 = o173
2267
o179.Name = "part"
2268
o179.Parent = o1
2269
o179.Material = Enum.Material.Metal
2270
o179.Position = Vector3.new(-7.25041485, 1.63026619, -10.0107698)
2271
o179.Rotation = Vector3.new(-89.9899979, 80, -90.0099945)
2272
o179.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2273
o179.Velocity = Vector3.new(-2.8393952e-21, 0.103487223, -4.12952311e-21)
2274
o179.CanCollide = false
2275
o179.Locked = true
2276
o179.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2277
o179.CFrame = CFrame.new(-7.25041485, 1.63026619, -10.0107698, -2.06523491e-05, 0.17363593, 0.98481226, 1.552701e-05, -0.984811604, 0.173635691, 0.999999702, 1.89055645e-05, 1.76306457e-05)
2278
o179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2279
o179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2280
o179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2281
o179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2282
o179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2283
o179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2284
o179.Position = Vector3.new(-7.25041485, 1.63026619, -10.0107698)
2285
o179.Velocity = Vector3.new(-2.8393952e-21, 0.103487223, -4.12952311e-21)
2286
o180.Parent = o179
2287
o180.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
2288
o180.MeshType = Enum.MeshType.Brick
2289
o181.Name = "part_Weld"
2290
o181.Parent = o179
2291
o181.C0 = CFrame.new(-14.9239779, 3.40832949, 12.0952158, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
2292
o181.C1 = CFrame.new(-14.923974, 9.47493267, 8.04478168, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
2293
o181.Part0 = o179
2294
o181.Part1 = o182
2295
o182.Name = "part"
2296
o182.Parent = o1
2297
o182.Material = Enum.Material.Metal
2298
o182.Position = Vector3.new(-7.13541603, 1.38526404, -10.0107679)
2299
o182.Rotation = Vector3.new(-90, 45, -90)
2300
o182.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2301
o182.Velocity = Vector3.new(-3.30043307e-21, 0.103487223, -4.77849921e-21)
2302
o182.CanCollide = false
2303
o182.Locked = true
2304
o182.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2305
o182.CFrame = CFrame.new(-7.13541603, 1.38526404, -10.0107679, -2.06523491e-05, 0.707101107, 0.70711565, 1.552701e-05, -0.707115233, 0.707100511, 0.999999702, 2.55990617e-05, 3.59832757e-06)
2306
o182.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2307
o182.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2308
o182.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2309
o182.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2310
o182.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2311
o182.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2312
o182.Position = Vector3.new(-7.13541603, 1.38526404, -10.0107679)
2313
o182.Velocity = Vector3.new(-3.30043307e-21, 0.103487223, -4.77849921e-21)
2314
o183.Parent = o182
2315
o183.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
2316
o183.MeshType = Enum.MeshType.Brick
2317
o184.Name = "part_Weld"
2318
o184.Parent = o182
2319
o184.C0 = CFrame.new(-14.923974, 9.47493267, 8.04478168, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
2320
o184.C1 = CFrame.new(-14.923974, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
2321
o184.Part0 = o182
2322
o184.Part1 = o185
2323
o185.Name = "part"
2324
o185.Parent = o1
2325
o185.Material = Enum.Material.Metal
2326
o185.Position = Vector3.new(-7.19041348, 1.46294463, -10.0107698)
2327
o185.Rotation = Vector3.new(-90, 60, -90)
2328
o185.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2329
o185.Velocity = Vector3.new(-3.15425596e-21, 0.103487223, -4.57317424e-21)
2330
o185.CanCollide = false
2331
o185.Locked = true
2332
o185.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2333
o185.CFrame = CFrame.new(-7.19041348, 1.46294463, -10.0107698, -2.06523491e-05, 0.499991924, 0.8660326, 1.552701e-05, -0.866032064, 0.499991477, 0.999999702, 2.37954737e-05, 1.01012483e-05)
2334
o185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2335
o185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2336
o185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2337
o185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2338
o185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2339
o185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2340
o185.Position = Vector3.new(-7.19041348, 1.46294463, -10.0107698)
2341
o185.Velocity = Vector3.new(-3.15425596e-21, 0.103487223, -4.57317424e-21)
2342
o186.Parent = o185
2343
o186.Scale = Vector3.new(0.0250000022, 0.699999988, 0.774999976)
2344
o186.MeshType = Enum.MeshType.Brick
2345
o187.Name = "part_Weld"
2346
o187.Parent = o185
2347
o187.C0 = CFrame.new(-14.923974, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
2348
o187.C1 = CFrame.new(-14.9239836, 11.9266863, 4.17670155, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
2349
o187.Part0 = o185
2350
o187.Part1 = o188
2351
o188.Name = "part"
2352
o188.Parent = o1
2353
o188.Material = Enum.Material.Metal
2354
o188.Position = Vector3.new(-7.32150173, 1.62906897, -10.010766)
2355
o188.Rotation = Vector3.new(-90, 25, -90)
2356
o188.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2357
o188.Velocity = Vector3.new(-2.84164813e-21, 0.103487223, -4.13439532e-21)
2358
o188.CanCollide = false
2359
o188.Locked = true
2360
o188.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2361
o188.CFrame = CFrame.new(-7.32150173, 1.62906897, -10.010766, -2.06523491e-05, 0.906304955, 0.422629476, 1.552701e-05, -0.422629297, 0.9063043, 0.999999702, 2.52859536e-05, -5.37404503e-06)
2362
o188.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2363
o188.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2364
o188.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2365
o188.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2366
o188.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2367
o188.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2368
o188.Position = Vector3.new(-7.32150173, 1.62906897, -10.010766)
2369
o188.Velocity = Vector3.new(-2.84164813e-21, 0.103487223, -4.13439532e-21)
2370
o189.Parent = o188
2371
o189.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2372
o189.MeshType = Enum.MeshType.Wedge
2373
o190.Name = "part_Weld"
2374
o190.Parent = o188
2375
o190.C0 = CFrame.new(-14.9239836, 11.9266863, 4.17670155, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
2376
o190.C1 = CFrame.new(-14.9239779, 9.80968094, 7.91943741, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
2377
o190.Part0 = o188
2378
o190.Part1 = o191
2379
o191.Name = "part"
2380
o191.Parent = o1
2381
o191.Material = Enum.Material.Metal
2382
o191.Position = Vector3.new(-7.28347826, 1.71063662, -10.0107727)
2383
o191.Rotation = Vector3.new(-90, 45, -90)
2384
o191.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2385
o191.Velocity = Vector3.new(-2.68815645e-21, 0.103487223, -3.91652249e-21)
2386
o191.CanCollide = false
2387
o191.Locked = true
2388
o191.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2389
o191.CFrame = CFrame.new(-7.28347826, 1.71063662, -10.0107727, -2.06523491e-05, 0.70709902, 0.707117617, 1.552701e-05, -0.7071172, 0.707098484, 0.999999702, 2.5599049e-05, 3.59839987e-06)
2390
o191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2391
o191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2392
o191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2393
o191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2394
o191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2395
o191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2396
o191.Position = Vector3.new(-7.28347826, 1.71063662, -10.0107727)
2397
o191.Velocity = Vector3.new(-2.68815645e-21, 0.103487223, -3.91652249e-21)
2398
o192.Parent = o191
2399
o192.MeshId = "rbxassetid://9756362"
2400
o192.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
2401
o192.MeshType = Enum.MeshType.FileMesh
2402
o193.Name = "part_Weld"
2403
o193.Parent = o191
2404
o193.C0 = CFrame.new(-14.9239779, 9.80968094, 7.91943741, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
2405
o193.C1 = CFrame.new(-14.923974, -2.37625527, 12.39503, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
2406
o193.Part0 = o191
2407
o193.Part1 = o194
2408
o194.Name = "part"
2409
o194.Parent = o1
2410
o194.Material = Enum.Material.Metal
2411
o194.Position = Vector3.new(-7.20733833, 2.38039947, -10.0107851)
2412
o194.Rotation = Vector3.new(90, 70, 90)
2413
o194.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2414
o194.Velocity = Vector3.new(-1.42781602e-21, 0.103487223, -2.1331435e-21)
2415
o194.CanCollide = false
2416
o194.Locked = true
2417
o194.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2418
o194.CFrame = CFrame.new(-7.20733833, 2.38039947, -10.0107851, -2.06523491e-05, -0.342030704, 0.939690948, 1.552701e-05, -0.939690351, -0.342030525, 0.999999702, 7.55743395e-06, 2.47213447e-05)
2419
o194.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2420
o194.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2421
o194.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2422
o194.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2423
o194.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2424
o194.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2425
o194.Position = Vector3.new(-7.20733833, 2.38039947, -10.0107851)
2426
o194.Velocity = Vector3.new(-1.42781602e-21, 0.103487223, -2.1331435e-21)
2427
o195.Parent = o194
2428
o195.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
2429
o195.MeshType = Enum.MeshType.Brick
2430
o196.Name = "part_Weld"
2431
o196.Parent = o194
2432
o196.C0 = CFrame.new(-14.923974, -2.37625527, 12.39503, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
2433
o196.C1 = CFrame.new(-14.9239759, -5.39621353, 11.37535, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
2434
o196.Part0 = o194
2435
o196.Part1 = o197
2436
o197.Name = "part"
2437
o197.Parent = o1
2438
o197.Material = Enum.Material.Metal
2439
o197.Position = Vector3.new(-7.16037798, 2.47828889, -10.0107841)
2440
o197.Rotation = Vector3.new(90, 55, 90)
2441
o197.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2442
o197.Velocity = Vector3.new(-1.24361062e-21, 0.103487223, -1.87164235e-21)
2443
o197.CanCollide = false
2444
o197.Locked = true
2445
o197.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2446
o197.CFrame = CFrame.new(-7.16037798, 2.47828889, -10.0107841, -2.06523491e-05, -0.573584557, 0.819148719, 1.552701e-05, -0.819148183, -0.573584259, 0.999999702, 9.01615749e-07, 2.58349901e-05)
2447
o197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2448
o197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2449
o197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2450
o197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2451
o197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2452
o197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2453
o197.Position = Vector3.new(-7.16037798, 2.47828889, -10.0107841)
2454
o197.Velocity = Vector3.new(-1.24361062e-21, 0.103487223, -1.87164235e-21)
2455
o198.Parent = o197
2456
o198.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
2457
o198.MeshType = Enum.MeshType.Brick
2458
o199.Name = "part_Weld"
2459
o199.Parent = o197
2460
o199.C0 = CFrame.new(-14.9239759, -5.39621353, 11.37535, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
2461
o199.C1 = CFrame.new(-14.9239721, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
2462
o199.Part0 = o197
2463
o199.Part1 = o200
2464
o200.Name = "part"
2465
o200.Parent = o1
2466
o200.Material = Enum.Material.Metal
2467
o200.Position = Vector3.new(-7.27234888, 1.91539979, -10.0107813)
2468
o200.Rotation = Vector3.new(180, 90, 0)
2469
o200.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2470
o200.Velocity = Vector3.new(-2.30283892e-21, 0.103487223, -3.37158757e-21)
2471
o200.CanCollide = false
2472
o200.Locked = true
2473
o200.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2474
o200.CFrame = CFrame.new(-7.27234888, 1.91539979, -10.0107813, -2.06523491e-05, -1.16825104e-05, 1.00000191, 1.552701e-05, -1.00000131, -1.1742115e-05, 0.999999702, 1.55568359e-05, 2.06456862e-05)
2475
o200.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2476
o200.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2477
o200.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2478
o200.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2479
o200.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2480
o200.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2481
o200.Position = Vector3.new(-7.27234888, 1.91539979, -10.0107813)
2482
o200.Velocity = Vector3.new(-2.30283892e-21, 0.103487223, -3.37158757e-21)
2483
o201.Parent = o200
2484
o201.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
2485
o201.MeshType = Enum.MeshType.Brick
2486
o202.Name = "part_Weld"
2487
o202.Parent = o200
2488
o202.C0 = CFrame.new(-14.9239721, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
2489
o202.C1 = CFrame.new(-14.923974, 4.3719182, 11.7522163, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
2490
o202.Part0 = o200
2491
o202.Part1 = o203
2492
o203.Name = "part"
2493
o203.Parent = o1
2494
o203.Material = Enum.Material.Metal
2495
o203.Position = Vector3.new(-7.23040485, 1.55526567, -10.0107727)
2496
o203.Rotation = Vector3.new(-90, 75, -90)
2497
o203.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2498
o203.Velocity = Vector3.new(-2.98052885e-21, 0.103487223, -4.32854971e-21)
2499
o203.CanCollide = false
2500
o203.Locked = true
2501
o203.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2502
o203.CFrame = CFrame.new(-7.23040485, 1.55526567, -10.0107727, -2.06523491e-05, 0.258808166, 0.9659307, 1.552701e-05, -0.965930104, 0.258807957, 0.999999702, 2.03702457e-05, 1.59157971e-05)
2503
o203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2504
o203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2505
o203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2506
o203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2507
o203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2508
o203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2509
o203.Position = Vector3.new(-7.23040485, 1.55526567, -10.0107727)
2510
o203.Velocity = Vector3.new(-2.98052885e-21, 0.103487223, -4.32854971e-21)
2511
o204.Parent = o203
2512
o204.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
2513
o204.MeshType = Enum.MeshType.Brick
2514
o205.Name = "part_Weld"
2515
o205.Parent = o203
2516
o205.C0 = CFrame.new(-14.923974, 4.3719182, 11.7522163, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
2517
o205.C1 = CFrame.new(-14.9239759, -11.3810329, -5.27908039, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
2518
o205.Part0 = o203
2519
o205.Part1 = o206
2520
o206.Name = "part"
2521
o206.Parent = o1
2522
o206.Material = Enum.Material.Metal
2523
o206.Position = Vector3.new(-7.09784222, 2.57751417, -10.0107841)
2524
o206.Rotation = Vector3.new(90, -35, 90)
2525
o206.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2526
o206.Velocity = Vector3.new(-1.05689135e-21, 0.103487223, -1.60621784e-21)
2527
o206.CanCollide = false
2528
o206.Locked = true
2529
o206.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2530
o206.CFrame = CFrame.new(-7.09784222, 2.57751417, -10.0107841, -2.06523491e-05, -0.819147706, -0.57358557, 1.552701e-05, 0.573585272, -0.81914717, 0.999999702, -2.58349846e-05, 9.01580279e-07)
2531
o206.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2532
o206.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2533
o206.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2534
o206.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2535
o206.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2536
o206.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2537
o206.Position = Vector3.new(-7.09784222, 2.57751417, -10.0107841)
2538
o206.Velocity = Vector3.new(-1.05689135e-21, 0.103487223, -1.60621784e-21)
2539
o207.Parent = o206
2540
o207.Scale = Vector3.new(0.0250000022, 0.825000048, 0.825000048)
2541
o207.MeshType = Enum.MeshType.Wedge
2542
o208.Name = "part_Weld"
2543
o208.Parent = o206
2544
o208.C0 = CFrame.new(-14.9239759, -11.3810329, -5.27908039, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
2545
o208.C1 = CFrame.new(-14.9239759, -0.341733932, 12.6295233, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
2546
o208.Part0 = o206
2547
o208.Part1 = o209
2548
o209.Name = "part"
2549
o209.Parent = o1
2550
o209.Material = Enum.Material.Metal
2551
o209.Position = Vector3.new(-7.24408531, 2.23055029, -10.0107822)
2552
o209.Rotation = Vector3.new(89.9899979, 80, 90.0099945)
2553
o209.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2554
o209.Velocity = Vector3.new(-1.70979788e-21, 0.103487223, -2.53261499e-21)
2555
o209.CanCollide = false
2556
o209.Locked = true
2557
o209.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2558
o209.CFrame = CFrame.new(-7.24408531, 2.23055029, -10.0107822, -2.06523491e-05, -0.173658788, 0.984807491, 1.552701e-05, -0.984806895, -0.173658818, 0.999999702, 1.17354311e-05, 2.30334281e-05)
2559
o209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2560
o209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2561
o209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2562
o209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2563
o209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2564
o209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2565
o209.Position = Vector3.new(-7.24408531, 2.23055029, -10.0107822)
2566
o209.Velocity = Vector3.new(-1.70979788e-21, 0.103487223, -2.53261499e-21)
2567
o210.Parent = o209
2568
o210.Scale = Vector3.new(0.0250000022, 0.949999988, 0.774999976)
2569
o210.MeshType = Enum.MeshType.Brick
2570
o211.Name = "part_Weld"
2571
o211.Parent = o209
2572
o211.C0 = CFrame.new(-14.9239759, -0.341733932, 12.6295233, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
2573
o211.C1 = CFrame.new(14.9239798, 9.23743725, -8.0447855, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
2574
o211.Part0 = o209
2575
o211.Part1 = o212
2576
o212.Name = "part"
2577
o212.Parent = o1
2578
o212.Material = Enum.Material.Metal
2579
o212.Position = Vector3.new(-6.96747684, 1.2173245, -10.0107565)
2580
o212.Rotation = Vector3.new(90, -45, -90)
2581
o212.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2582
o212.Velocity = Vector3.new(-3.61645706e-21, 0.103487223, -5.22123148e-21)
2583
o212.CanCollide = false
2584
o212.Locked = true
2585
o212.Size = Vector3.new(0.200000003, 0.38499999, 0.200000003)
2586
o212.CFrame = CFrame.new(-6.96747684, 1.2173245, -10.0107565, 2.06523491e-05, 0.70710057, -0.707115114, -1.552701e-05, -0.707114756, -0.707100093, -0.999999702, 2.55990453e-05, -3.59832302e-06)
2587
o212.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2588
o212.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2589
o212.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2590
o212.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2591
o212.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2592
o212.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2593
o212.Position = Vector3.new(-6.96747684, 1.2173245, -10.0107565)
2594
o212.Velocity = Vector3.new(-3.61645706e-21, 0.103487223, -5.22123148e-21)
2595
o213.Parent = o212
2596
o213.Scale = Vector3.new(0.0250000022, 1, 0.774999976)
2597
o213.MeshType = Enum.MeshType.Wedge
2598
o214.Name = "part_Weld"
2599
o214.Parent = o212
2600
o214.C0 = CFrame.new(14.9239798, 9.23743725, -8.0447855, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
2601
o214.C1 = CFrame.new(-14.9239798, 12.5127945, 1.0852313, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
2602
o214.Part0 = o212
2603
o214.Part1 = o215
2604
o215.Name = "part"
2605
o215.Parent = o1
2606
o215.Material = Enum.Material.Metal
2607
o215.Position = Vector3.new(-7.25824022, 1.47809064, -10.010767)
2608
o215.Rotation = Vector3.new(-90, 10, -90)
2609
o215.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2610
o215.Velocity = Vector3.new(-3.12575458e-21, 0.103487223, -4.53449587e-21)
2611
o215.CanCollide = false
2612
o215.Locked = true
2613
o215.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2614
o215.CFrame = CFrame.new(-7.25824022, 1.47809064, -10.010767, -2.06523491e-05, 0.984807134, 0.173659742, 1.552701e-05, -0.173659742, 0.984806538, 0.999999702, 2.30334354e-05, -1.17354057e-05)
2615
o215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2616
o215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2617
o215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2618
o215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2619
o215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2620
o215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2621
o215.Position = Vector3.new(-7.25824022, 1.47809064, -10.010767)
2622
o215.Velocity = Vector3.new(-3.12575458e-21, 0.103487223, -4.53449587e-21)
2623
o216.Parent = o215
2624
o216.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2625
o216.MeshType = Enum.MeshType.Wedge
2626
o217.Name = "part_Weld"
2627
o217.Parent = o215
2628
o217.C0 = CFrame.new(-14.9239798, 12.5127945, 1.0852313, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
2629
o217.C1 = CFrame.new(-14.9239817, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
2630
o217.Part0 = o215
2631
o217.Part1 = o218
2632
o218.Name = "part"
2633
o218.Parent = o1
2634
o218.Material = Enum.Material.Metal
2635
o218.Position = Vector3.new(-7.33524895, 1.77119112, -10.0107708)
2636
o218.Rotation = Vector3.new(-90, 40, -90)
2637
o218.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2638
o218.Velocity = Vector3.new(-2.57420667e-21, 0.103487223, -3.75667589e-21)
2639
o218.CanCollide = false
2640
o218.Locked = true
2641
o218.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2642
o218.CFrame = CFrame.new(-7.33524895, 1.77119112, -10.0107708, -2.06523491e-05, 0.766037583, 0.642797887, 1.552701e-05, -0.642797589, 0.766037107, 0.999999702, 2.58152395e-05, 1.35357732e-06)
2643
o218.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2644
o218.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2645
o218.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2646
o218.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2647
o218.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2648
o218.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2649
o218.Position = Vector3.new(-7.33524895, 1.77119112, -10.0107708)
2650
o218.Velocity = Vector3.new(-2.57420667e-21, 0.103487223, -3.75667589e-21)
2651
o219.Parent = o218
2652
o219.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2653
o219.MeshType = Enum.MeshType.Wedge
2654
o220.Name = "part_Weld"
2655
o220.Parent = o218
2656
o220.C0 = CFrame.new(-14.9239817, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
2657
o220.C1 = CFrame.new(-14.9239759, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
2658
o220.Part0 = o218
2659
o220.Part1 = o221
2660
o221.Name = "part"
2661
o221.Parent = o1
2662
o221.Material = Enum.Material.Metal
2663
o221.Position = Vector3.new(-7.27739334, 1.84013617, -10.0107765)
2664
o221.Rotation = Vector3.new(-90, 60, -90)
2665
o221.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2666
o221.Velocity = Vector3.new(-2.44446775e-21, 0.103487223, -3.57190806e-21)
2667
o221.CanCollide = false
2668
o221.Locked = true
2669
o221.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2670
o221.CFrame = CFrame.new(-7.27739334, 1.84013617, -10.0107765, -2.06523491e-05, 0.499991447, 0.866031885, 1.552701e-05, -0.866031408, 0.499991119, 0.999999702, 2.37954555e-05, 1.01012392e-05)
2671
o221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2672
o221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2673
o221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2674
o221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2675
o221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2676
o221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2677
o221.Position = Vector3.new(-7.27739334, 1.84013617, -10.0107765)
2678
o221.Velocity = Vector3.new(-2.44446775e-21, 0.103487223, -3.57190806e-21)
2679
o222.Parent = o221
2680
o222.MeshId = "rbxassetid://9756362"
2681
o222.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
2682
o222.MeshType = Enum.MeshType.FileMesh
2683
o223.Name = "part_Weld"
2684
o223.Parent = o221
2685
o223.C0 = CFrame.new(-14.9239759, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
2686
o223.C1 = CFrame.new(-14.9239779, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
2687
o223.Part0 = o221
2688
o223.Part1 = o224
2689
o224.Name = "part"
2690
o224.Parent = o1
2691
o224.Material = Enum.Material.Metal
2692
o224.Position = Vector3.new(-7.27777147, 2.09608793, -10.0107784)
2693
o224.Rotation = Vector3.new(-90, 65, -90)
2694
o224.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2695
o224.Velocity = Vector3.new(-1.96282507e-21, 0.103487223, -2.89108449e-21)
2696
o224.CanCollide = false
2697
o224.Locked = true
2698
o224.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2699
o224.CFrame = CFrame.new(-7.27777147, 2.09608793, -10.0107784, -2.06523491e-05, 0.422607899, 0.906314135, 1.552701e-05, -0.906313658, 0.422607601, 0.999999702, 2.28245099e-05, 1.21367448e-05)
2700
o224.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2701
o224.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2702
o224.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2703
o224.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2704
o224.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2705
o224.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2706
o224.Position = Vector3.new(-7.27777147, 2.09608793, -10.0107784)
2707
o224.Velocity = Vector3.new(-1.96282507e-21, 0.103487223, -2.89108449e-21)
2708
o225.Parent = o224
2709
o225.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2710
o225.MeshType = Enum.MeshType.Wedge
2711
o226.Name = "part_Weld"
2712
o226.Parent = o224
2713
o226.C0 = CFrame.new(-14.9239779, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
2714
o226.C1 = CFrame.new(-14.9239759, 9.27238274, 8.61450481, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
2715
o226.Part0 = o224
2716
o226.Part1 = o227
2717
o227.Name = "part"
2718
o227.Parent = o1
2719
o227.Material = Enum.Material.Metal
2720
o227.Position = Vector3.new(-7.30635548, 1.93976712, -10.0107784)
2721
o227.Rotation = Vector3.new(-90, 50, -90)
2722
o227.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2723
o227.Velocity = Vector3.new(-2.25698492e-21, 0.103487223, -3.307577e-21)
2724
o227.CanCollide = false
2725
o227.Locked = true
2726
o227.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2727
o227.CFrame = CFrame.new(-7.30635548, 1.93976712, -10.0107784, -2.06523491e-05, 0.642779887, 0.766052723, 1.552701e-05, -0.766052246, 0.642779469, 0.999999702, 2.51880083e-05, 5.81575569e-06)
2728
o227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2729
o227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2730
o227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2731
o227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2732
o227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2733
o227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2734
o227.Position = Vector3.new(-7.30635548, 1.93976712, -10.0107784)
2735
o227.Velocity = Vector3.new(-2.25698492e-21, 0.103487223, -3.307577e-21)
2736
o228.Parent = o227
2737
o228.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2738
o228.MeshType = Enum.MeshType.Wedge
2739
o229.Name = "part_Weld"
2740
o229.Parent = o227
2741
o229.C0 = CFrame.new(-14.9239759, 9.27238274, 8.61450481, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
2742
o229.C1 = CFrame.new(-14.9239779, -11.7327061, 4.41294289, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
2743
o229.Part0 = o227
2744
o229.Part1 = o230
2745
o230.Name = "part"
2746
o230.Parent = o1
2747
o230.Material = Enum.Material.Metal
2748
o230.Position = Vector3.new(-7.06784439, 2.68251252, -10.0107832)
2749
o230.Rotation = Vector3.new(90, 10, 90)
2750
o230.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2751
o230.Velocity = Vector3.new(-8.5930838e-22, 0.103487223, -1.32620902e-21)
2752
o230.CanCollide = false
2753
o230.Locked = true
2754
o230.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2755
o230.CFrame = CFrame.new(-7.06784439, 2.68251252, -10.0107832, -2.06523491e-05, -0.984810591, 0.173639715, 1.552701e-05, -0.173639596, -0.984809995, 0.999999702, -1.76305512e-05, 1.89056191e-05)
2756
o230.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2757
o230.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2758
o230.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2759
o230.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2760
o230.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2761
o230.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2762
o230.Position = Vector3.new(-7.06784439, 2.68251252, -10.0107832)
2763
o230.Velocity = Vector3.new(-8.5930838e-22, 0.103487223, -1.32620902e-21)
2764
o231.Parent = o230
2765
o231.Scale = Vector3.new(0.0250000022, 1.5, 1)
2766
o231.MeshType = Enum.MeshType.Wedge
2767
o232.Name = "part_Weld"
2768
o232.Parent = o230
2769
o232.C0 = CFrame.new(-14.9239779, -11.7327061, 4.41294289, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
2770
o232.C1 = CFrame.new(-14.9239798, 2.46731997, 12.3522339, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
2771
o232.Part0 = o230
2772
o232.Part1 = o8
2773
o233.Name = "part"
2774
o233.Parent = o1
2775
o233.Material = Enum.Material.Metal
2776
o233.Position = Vector3.new(-7.2623806, 2.07540607, -9.7607708)
2777
o233.Rotation = Vector3.new(89.9899979, 85, 90.0099945)
2778
o233.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2779
o233.Velocity = Vector3.new(-2.00767963e-21, 0.103487223, -2.94573354e-21)
2780
o233.CanCollide = false
2781
o233.Locked = true
2782
o233.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2783
o233.CFrame = CFrame.new(-7.2623806, 2.07540607, -9.7607708, -2.06523491e-05, -0.0871618688, 0.996198058, 1.552701e-05, -0.996197283, -0.087161988, 0.999999702, 1.36984008e-05, 2.19229551e-05)
2784
o233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2785
o233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2786
o233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2787
o233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2788
o233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2789
o233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2790
o233.Position = Vector3.new(-7.2623806, 2.07540607, -9.7607708)
2791
o233.Velocity = Vector3.new(-2.00767963e-21, 0.103487223, -2.94573354e-21)
2792
o234.Parent = o233
2793
o234.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
2794
o234.MeshType = Enum.MeshType.Brick
2795
o235.Name = "part_Weld"
2796
o235.Parent = o233
2797
o235.C0 = CFrame.new(-15.1739845, 0.604206681, 12.6159172, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
2798
o235.C1 = CFrame.new(-15.1739864, 3.40832806, 12.0952063, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
2799
o235.Part0 = o233
2800
o235.Part1 = o245
2801
o236.Name = "part"
2802
o236.Parent = o1
2803
o236.Material = Enum.Material.Metal
2804
o236.Position = Vector3.new(-7.24263906, 1.56672812, -9.76076412)
2805
o236.Rotation = Vector3.new(-90, 30, -90)
2806
o236.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2807
o236.Velocity = Vector3.new(-2.96489481e-21, 0.103487223, -4.29834995e-21)
2808
o236.CanCollide = false
2809
o236.Locked = true
2810
o236.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2811
o236.CFrame = CFrame.new(-7.24263906, 1.56672812, -9.76076412, -2.06523491e-05, 0.866021693, 0.500011563, 1.552701e-05, -0.500011325, 0.866021037, 0.999999702, 2.56581261e-05, -3.14976842e-06)
2812
o236.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2813
o236.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2814
o236.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2815
o236.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2816
o236.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2817
o236.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2818
o236.Position = Vector3.new(-7.24263906, 1.56672812, -9.76076412)
2819
o236.Velocity = Vector3.new(-2.96489481e-21, 0.103487223, -4.29834995e-21)
2820
o237.Parent = o236
2821
o237.MeshId = "rbxassetid://9756362"
2822
o237.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
2823
o237.MeshType = Enum.MeshType.FileMesh
2824
o238.Name = "part_Weld"
2825
o238.Parent = o236
2826
o238.C0 = CFrame.new(-15.1739826, 11.4177961, 5.21484804, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
2827
o238.C1 = CFrame.new(-14.9239836, 0.604206085, 12.6159229, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
2828
o238.Part0 = o236
2829
o238.Part1 = o158
2830
o239.Name = "part"
2831
o239.Parent = o1
2832
o239.Material = Enum.Material.Metal
2833
o239.Position = Vector3.new(-7.17202854, 1.42039013, -9.76076221)
2834
o239.Rotation = Vector3.new(-90, 20, -90)
2835
o239.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2836
o239.Velocity = Vector3.new(-3.24026942e-21, 0.103487223, -4.68593293e-21)
2837
o239.CanCollide = false
2838
o239.Locked = true
2839
o239.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2840
o239.CFrame = CFrame.new(-7.17202854, 1.42039013, -9.76076221, -2.06523491e-05, 0.939691305, 0.342031717, 1.552701e-05, -0.342031628, 0.93969059, 0.999999702, 2.47213684e-05, -7.55741712e-06)
2841
o239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2842
o239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2843
o239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2844
o239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2845
o239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2846
o239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2847
o239.Position = Vector3.new(-7.17202854, 1.42039013, -9.76076221)
2848
o239.Velocity = Vector3.new(-3.24026942e-21, 0.103487223, -4.68593293e-21)
2849
o240.Parent = o239
2850
o240.MeshId = "rbxassetid://9756362"
2851
o240.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
2852
o240.MeshType = Enum.MeshType.FileMesh
2853
o241.Name = "part_Weld"
2854
o241.Parent = o239
2855
o241.C0 = CFrame.new(-15.1739807, 12.0334797, 3.26629829, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
2856
o241.C1 = CFrame.new(-15.1739826, 11.4177961, 5.21484804, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
2857
o241.Part0 = o239
2858
o241.Part1 = o236
2859
o242.Name = "part"
2860
o242.Parent = o1
2861
o242.Material = Enum.Material.Metal
2862
o242.Position = Vector3.new(-7.1720295, 1.33039021, -9.76076698)
2863
o242.Rotation = Vector3.new(-90, 0, -90)
2864
o242.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2865
o242.Velocity = Vector3.new(-3.40962839e-21, 0.103487223, -4.92533306e-21)
2866
o242.CanCollide = false
2867
o242.Locked = true
2868
o242.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2869
o242.CFrame = CFrame.new(-7.1720295, 1.33039021, -9.76076698, -2.06523491e-05, 1.00000274, 1.15931034e-05, 1.552701e-05, -1.17719173e-05, 1.00000203, 0.999999702, 2.06457025e-05, -1.55568505e-05)
2870
o242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2871
o242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2872
o242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2873
o242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2874
o242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2875
o242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2876
o242.Position = Vector3.new(-7.1720295, 1.33039021, -9.76076698)
2877
o242.Velocity = Vector3.new(-3.40962839e-21, 0.103487223, -4.92533306e-21)
2878
o243.Parent = o242
2879
o243.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2880
o243.MeshType = Enum.MeshType.Wedge
2881
o244.Name = "part_Weld"
2882
o244.Parent = o242
2883
o244.C0 = CFrame.new(-15.173975, 12.4249115, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
2884
o244.C1 = CFrame.new(-15.1739807, 12.0334797, 3.26629829, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
2885
o244.Part0 = o242
2886
o244.Part1 = o239
2887
o245.Name = "part"
2888
o245.Parent = o1
2889
o245.Material = Enum.Material.Metal
2890
o245.Position = Vector3.new(-7.25042629, 1.63027143, -9.76076126)
2891
o245.Rotation = Vector3.new(-89.9899979, 80, -90.0099945)
2892
o245.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2893
o245.Velocity = Vector3.new(-2.84532117e-21, 0.103487223, -4.12950938e-21)
2894
o245.CanCollide = false
2895
o245.Locked = true
2896
o245.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2897
o245.CFrame = CFrame.new(-7.25042629, 1.63027143, -9.76076126, -2.06523491e-05, 0.173636258, 0.98481369, 1.552701e-05, -0.984812975, 0.17363596, 0.999999702, 1.89055936e-05, 1.76306712e-05)
2898
o245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2899
o245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2900
o245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2901
o245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2902
o245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2903
o245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2904
o245.Position = Vector3.new(-7.25042629, 1.63027143, -9.76076126)
2905
o245.Velocity = Vector3.new(-2.84532117e-21, 0.103487223, -4.12950938e-21)
2906
o246.Parent = o245
2907
o246.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
2908
o246.MeshType = Enum.MeshType.Brick
2909
o247.Name = "part_Weld"
2910
o247.Parent = o245
2911
o247.C0 = CFrame.new(-15.1739864, 3.40832806, 12.0952063, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
2912
o247.C1 = CFrame.new(-15.1739845, 9.47493839, 8.04478741, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
2913
o247.Part0 = o245
2914
o247.Part1 = o248
2915
o248.Name = "part"
2916
o248.Parent = o1
2917
o248.Material = Enum.Material.Metal
2918
o248.Position = Vector3.new(-7.13544559, 1.38526952, -9.76075745)
2919
o248.Rotation = Vector3.new(-90, 45, -90)
2920
o248.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2921
o248.Velocity = Vector3.new(-3.30635864e-21, 0.103487223, -4.77848548e-21)
2922
o248.CanCollide = false
2923
o248.Locked = true
2924
o248.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2925
o248.CFrame = CFrame.new(-7.13544559, 1.38526952, -9.76075745, -2.06523491e-05, 0.70710218, 0.707116604, 1.552701e-05, -0.707116187, 0.707101583, 0.999999702, 2.55990999e-05, 3.5983303e-06)
2926
o248.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2927
o248.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2928
o248.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2929
o248.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2930
o248.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2931
o248.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2932
o248.Position = Vector3.new(-7.13544559, 1.38526952, -9.76075745)
2933
o248.Velocity = Vector3.new(-3.30635864e-21, 0.103487223, -4.77848548e-21)
2934
o249.Parent = o248
2935
o249.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
2936
o249.MeshType = Enum.MeshType.Brick
2937
o250.Name = "part_Weld"
2938
o250.Parent = o248
2939
o250.C0 = CFrame.new(-15.1739845, 9.47493839, 8.04478741, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
2940
o250.C1 = CFrame.new(-15.1739864, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
2941
o250.Part0 = o248
2942
o250.Part1 = o251
2943
o251.Name = "part"
2944
o251.Parent = o1
2945
o251.Material = Enum.Material.Metal
2946
o251.Position = Vector3.new(-7.19043541, 1.46295023, -9.76075745)
2947
o251.Rotation = Vector3.new(-90, 60, -90)
2948
o251.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2949
o251.Velocity = Vector3.new(-3.16018133e-21, 0.103487223, -4.5731601e-21)
2950
o251.CanCollide = false
2951
o251.Locked = true
2952
o251.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2953
o251.CFrame = CFrame.new(-7.19043541, 1.46295023, -9.76075745, -2.06523491e-05, 0.499992728, 0.866033792, 1.552701e-05, -0.866033196, 0.499992251, 0.999999702, 2.37955119e-05, 1.01012611e-05)
2954
o251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2955
o251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2956
o251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2957
o251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2958
o251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2959
o251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2960
o251.Position = Vector3.new(-7.19043541, 1.46295023, -9.76075745)
2961
o251.Velocity = Vector3.new(-3.16018133e-21, 0.103487223, -4.5731601e-21)
2962
o252.Parent = o251
2963
o252.Scale = Vector3.new(0.0250000022, 0.699999988, 0.774999976)
2964
o252.MeshType = Enum.MeshType.Brick
2965
o253.Name = "part_Weld"
2966
o253.Parent = o251
2967
o253.C0 = CFrame.new(-15.1739864, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
2968
o253.C1 = CFrame.new(-15.1739864, 11.926692, 4.17670345, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
2969
o253.Part0 = o251
2970
o253.Part1 = o254
2971
o254.Name = "part"
2972
o254.Parent = o1
2973
o254.Material = Enum.Material.Metal
2974
o254.Position = Vector3.new(-7.32153034, 1.62907553, -9.76076317)
2975
o254.Rotation = Vector3.new(-90, 25, -90)
2976
o254.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
2977
o254.Velocity = Vector3.new(-2.84757148e-21, 0.103487223, -4.13437876e-21)
2978
o254.CanCollide = false
2979
o254.Locked = true
2980
o254.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
2981
o254.CFrame = CFrame.new(-7.32153034, 1.62907553, -9.76076317, -2.06523491e-05, 0.906306386, 0.422630012, 1.552701e-05, -0.422629863, 0.906305611, 0.999999702, 2.52859936e-05, -5.37405685e-06)
2982
o254.BackSurface = Enum.SurfaceType.SmoothNoOutlines
2983
o254.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
2984
o254.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
2985
o254.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
2986
o254.RightSurface = Enum.SurfaceType.SmoothNoOutlines
2987
o254.TopSurface = Enum.SurfaceType.SmoothNoOutlines
2988
o254.Position = Vector3.new(-7.32153034, 1.62907553, -9.76076317)
2989
o254.Velocity = Vector3.new(-2.84757148e-21, 0.103487223, -4.13437876e-21)
2990
o255.Parent = o254
2991
o255.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
2992
o255.MeshType = Enum.MeshType.Wedge
2993
o256.Name = "part_Weld"
2994
o256.Parent = o254
2995
o256.C0 = CFrame.new(-15.1739864, 11.926692, 4.17670345, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
2996
o256.C1 = CFrame.new(-15.1739864, 9.80967999, 7.9194355, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
2997
o256.Part0 = o254
2998
o256.Part1 = o257
2999
o257.Name = "part"
3000
o257.Parent = o1
3001
o257.Material = Enum.Material.Metal
3002
o257.Position = Vector3.new(-7.28349972, 1.71064317, -9.76076412)
3003
o257.Rotation = Vector3.new(-90, 45, -90)
3004
o257.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3005
o257.Velocity = Vector3.new(-2.6940798e-21, 0.103487223, -3.91650552e-21)
3006
o257.CanCollide = false
3007
o257.Locked = true
3008
o257.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3009
o257.CFrame = CFrame.new(-7.28349972, 1.71064317, -9.76076412, -2.06523491e-05, 0.707100213, 0.70711863, 1.552701e-05, -0.707118154, 0.707099497, 0.999999702, 2.55990908e-05, 3.5984026e-06)
3010
o257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3011
o257.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3012
o257.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3013
o257.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3014
o257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3015
o257.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3016
o257.Position = Vector3.new(-7.28349972, 1.71064317, -9.76076412)
3017
o257.Velocity = Vector3.new(-2.6940798e-21, 0.103487223, -3.91650552e-21)
3018
o258.Parent = o257
3019
o258.MeshId = "rbxassetid://9756362"
3020
o258.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
3021
o258.MeshType = Enum.MeshType.FileMesh
3022
o259.Name = "part_Weld"
3023
o259.Parent = o257
3024
o259.C0 = CFrame.new(-15.1739864, 9.80967999, 7.9194355, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
3025
o259.C1 = CFrame.new(-15.1739807, -2.37625861, 12.3950396, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
3026
o259.Part0 = o257
3027
o259.Part1 = o260
3028
o260.Name = "part"
3029
o260.Parent = o1
3030
o260.Material = Enum.Material.Metal
3031
o260.Position = Vector3.new(-7.20737219, 2.38040638, -9.76077843)
3032
o260.Rotation = Vector3.new(90, 70, 90)
3033
o260.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3034
o260.Velocity = Vector3.new(-1.43373877e-21, 0.103487223, -2.13312593e-21)
3035
o260.CanCollide = false
3036
o260.Locked = true
3037
o260.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3038
o260.CFrame = CFrame.new(-7.20737219, 2.38040638, -9.76077843, -2.06523491e-05, -0.342031121, 0.939692497, 1.552701e-05, -0.939691663, -0.342030942, 0.999999702, 7.55744895e-06, 2.47213829e-05)
3039
o260.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3040
o260.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3041
o260.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3042
o260.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3043
o260.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3044
o260.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3045
o260.Position = Vector3.new(-7.20737219, 2.38040638, -9.76077843)
3046
o260.Velocity = Vector3.new(-1.43373877e-21, 0.103487223, -2.13312593e-21)
3047
o261.Parent = o260
3048
o261.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
3049
o261.MeshType = Enum.MeshType.Brick
3050
o262.Name = "part_Weld"
3051
o262.Parent = o260
3052
o262.C0 = CFrame.new(-15.1739807, -2.37625861, 12.3950396, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
3053
o262.C1 = CFrame.new(-15.1739845, -5.39620972, 11.3753452, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
3054
o262.Part0 = o260
3055
o262.Part1 = o263
3056
o263.Name = "part"
3057
o263.Parent = o1
3058
o263.Material = Enum.Material.Metal
3059
o263.Position = Vector3.new(-7.16039371, 2.47829628, -9.76077557)
3060
o263.Rotation = Vector3.new(90, 55, 90)
3061
o263.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3062
o263.Velocity = Vector3.new(-1.24953245e-21, 0.103487223, -1.87162316e-21)
3063
o263.CanCollide = false
3064
o263.Locked = true
3065
o263.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3066
o263.CFrame = CFrame.new(-7.16039371, 2.47829628, -9.76077557, -2.06523491e-05, -0.573585391, 0.81915009, 1.552701e-05, -0.819149375, -0.573585033, 0.999999702, 9.01620297e-07, 2.58350301e-05)
3067
o263.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3068
o263.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3069
o263.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3070
o263.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3071
o263.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3072
o263.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3073
o263.Position = Vector3.new(-7.16039371, 2.47829628, -9.76077557)
3074
o263.Velocity = Vector3.new(-1.24953245e-21, 0.103487223, -1.87162316e-21)
3075
o264.Parent = o263
3076
o264.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
3077
o264.MeshType = Enum.MeshType.Brick
3078
o265.Name = "part_Weld"
3079
o265.Parent = o263
3080
o265.C0 = CFrame.new(-15.1739845, -5.39620972, 11.3753452, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
3081
o265.C1 = CFrame.new(-15.1739845, 1.54138505, 12.5252552, 0, 0, 1, 0, -1, 0, 1, 0, -0)
3082
o265.Part0 = o263
3083
o265.Part1 = o266
3084
o266.Name = "part"
3085
o266.Parent = o1
3086
o266.Material = Enum.Material.Metal
3087
o266.Position = Vector3.new(-7.27237272, 1.91540599, -9.76076889)
3088
o266.Rotation = Vector3.new(180, 90, 0)
3089
o266.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3090
o266.Velocity = Vector3.new(-2.30876307e-21, 0.103487223, -3.37157182e-21)
3091
o266.CanCollide = false
3092
o266.Locked = true
3093
o266.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3094
o266.CFrame = CFrame.new(-7.27237272, 1.91540599, -9.76076889, -2.06523491e-05, -1.15931034e-05, 1.00000358, 1.552701e-05, -1.00000274, -1.16974115e-05, 0.999999702, 1.55568632e-05, 2.06457171e-05)
3095
o266.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3096
o266.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3097
o266.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3098
o266.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3099
o266.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3100
o266.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3101
o266.Position = Vector3.new(-7.27237272, 1.91540599, -9.76076889)
3102
o266.Velocity = Vector3.new(-2.30876307e-21, 0.103487223, -3.37157182e-21)
3103
o267.Parent = o266
3104
o267.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
3105
o267.MeshType = Enum.MeshType.Brick
3106
o268.Name = "part_Weld"
3107
o268.Parent = o266
3108
o268.C0 = CFrame.new(-15.1739845, 1.54138505, 12.5252552, 0, 0, 1, 0, -1, 0, 1, 0, -0)
3109
o268.C1 = CFrame.new(-15.1739807, 4.37191916, 11.7522202, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
3110
o268.Part0 = o266
3111
o268.Part1 = o269
3112
o269.Name = "part"
3113
o269.Parent = o1
3114
o269.Material = Enum.Material.Metal
3115
o269.Position = Vector3.new(-7.2304306, 1.55527139, -9.76076603)
3116
o269.Rotation = Vector3.new(-90, 75, -90)
3117
o269.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3118
o269.Velocity = Vector3.new(-2.98645381e-21, 0.103487223, -4.32853517e-21)
3119
o269.CanCollide = false
3120
o269.Locked = true
3121
o269.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3122
o269.CFrame = CFrame.new(-7.2304306, 1.55527139, -9.76076603, -2.06523491e-05, 0.258808702, 0.96593225, 1.552701e-05, -0.965931535, 0.258808404, 0.999999702, 2.03702784e-05, 1.59158189e-05)
3123
o269.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3124
o269.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3125
o269.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3126
o269.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3127
o269.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3128
o269.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3129
o269.Position = Vector3.new(-7.2304306, 1.55527139, -9.76076603)
3130
o269.Velocity = Vector3.new(-2.98645381e-21, 0.103487223, -4.32853517e-21)
3131
o270.Parent = o269
3132
o270.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
3133
o270.MeshType = Enum.MeshType.Brick
3134
o271.Name = "part_Weld"
3135
o271.Parent = o269
3136
o271.C0 = CFrame.new(-15.1739807, 4.37191916, 11.7522202, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
3137
o271.C1 = CFrame.new(-15.1739788, -11.3810368, -5.27908278, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
3138
o271.Part0 = o269
3139
o271.Part1 = o272
3140
o272.Name = "part"
3141
o272.Parent = o1
3142
o272.Material = Enum.Material.Metal
3143
o272.Position = Vector3.new(-7.09786892, 2.57752156, -9.76078129)
3144
o272.Rotation = Vector3.new(90, -35, 90)
3145
o272.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3146
o272.Velocity = Vector3.new(-1.06281299e-21, 0.103487223, -1.60619876e-21)
3147
o272.CanCollide = false
3148
o272.Locked = true
3149
o272.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3150
o272.CFrame = CFrame.new(-7.09786892, 2.57752156, -9.76078129, -2.06523491e-05, -0.819149137, -0.573586404, 1.552701e-05, 0.573586047, -0.819148421, 0.999999702, -2.58350228e-05, 9.01583007e-07)
3151
o272.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3152
o272.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3153
o272.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3154
o272.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3155
o272.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3156
o272.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3157
o272.Position = Vector3.new(-7.09786892, 2.57752156, -9.76078129)
3158
o272.Velocity = Vector3.new(-1.06281299e-21, 0.103487223, -1.60619876e-21)
3159
o273.Parent = o272
3160
o273.Scale = Vector3.new(0.0250000022, 0.825000048, 0.825000048)
3161
o273.MeshType = Enum.MeshType.Wedge
3162
o274.Name = "part_Weld"
3163
o274.Parent = o272
3164
o274.C0 = CFrame.new(-15.1739788, -11.3810368, -5.27908278, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
3165
o274.C1 = CFrame.new(-15.1739807, -0.341732502, 12.6295156, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
3166
o274.Part0 = o272
3167
o274.Part1 = o275
3168
o275.Name = "part"
3169
o275.Parent = o1
3170
o275.Material = Enum.Material.Metal
3171
o275.Position = Vector3.new(-7.24410009, 2.23055696, -9.76077747)
3172
o275.Rotation = Vector3.new(89.9899979, 80, 90.0099945)
3173
o275.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3174
o275.Velocity = Vector3.new(-1.71572082e-21, 0.103487223, -2.53259762e-21)
3175
o275.CanCollide = false
3176
o275.Locked = true
3177
o275.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3178
o275.CFrame = CFrame.new(-7.24410009, 2.23055696, -9.76077747, -2.06523491e-05, -0.173658967, 0.98480916, 1.552701e-05, -0.984808326, -0.173658997, 0.999999702, 1.17354502e-05, 2.30334626e-05)
3179
o275.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3180
o275.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3181
o275.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3182
o275.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3183
o275.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3184
o275.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3185
o275.Position = Vector3.new(-7.24410009, 2.23055696, -9.76077747)
3186
o275.Velocity = Vector3.new(-1.71572082e-21, 0.103487223, -2.53259762e-21)
3187
o276.Parent = o275
3188
o276.Scale = Vector3.new(0.0250000022, 0.949999988, 0.774999976)
3189
o276.MeshType = Enum.MeshType.Brick
3190
o277.Name = "part_Weld"
3191
o277.Parent = o275
3192
o277.C0 = CFrame.new(-15.1739807, -0.341732502, 12.6295156, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
3193
o277.C1 = CFrame.new(15.1739864, 9.2374382, -8.04478645, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
3194
o277.Part0 = o275
3195
o277.Part1 = o278
3196
o278.Name = "part"
3197
o278.Parent = o1
3198
o278.Material = Enum.Material.Metal
3199
o278.Position = Vector3.new(-6.96750164, 1.21732867, -9.76074982)
3200
o278.Rotation = Vector3.new(90, -45, -90)
3201
o278.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3202
o278.Velocity = Vector3.new(-3.62238465e-21, 0.103487223, -5.22122098e-21)
3203
o278.CanCollide = false
3204
o278.Locked = true
3205
o278.Size = Vector3.new(0.200000003, 0.38499999, 0.200000003)
3206
o278.CFrame = CFrame.new(-6.96750164, 1.21732867, -9.76074982, 2.06523491e-05, 0.707101822, -0.707116187, -1.552701e-05, -0.70711571, -0.707101166, -0.999999702, 2.55990853e-05, -3.59832666e-06)
3207
o278.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3208
o278.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3209
o278.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3210
o278.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3211
o278.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3212
o278.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3213
o278.Position = Vector3.new(-6.96750164, 1.21732867, -9.76074982)
3214
o278.Velocity = Vector3.new(-3.62238465e-21, 0.103487223, -5.22122098e-21)
3215
o279.Parent = o278
3216
o279.Scale = Vector3.new(0.0250000022, 1, 0.774999976)
3217
o279.MeshType = Enum.MeshType.Wedge
3218
o280.Name = "part_Weld"
3219
o280.Parent = o278
3220
o280.C0 = CFrame.new(15.1739864, 9.2374382, -8.04478645, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
3221
o280.C1 = CFrame.new(-15.1739864, 12.5127907, 1.08523083, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
3222
o280.Part0 = o278
3223
o280.Part1 = o281
3224
o281.Name = "part"
3225
o281.Parent = o1
3226
o281.Material = Enum.Material.Metal
3227
o281.Position = Vector3.new(-7.25825977, 1.47809505, -9.76076031)
3228
o281.Rotation = Vector3.new(-90, 10, -90)
3229
o281.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3230
o281.Velocity = Vector3.new(-3.13168197e-21, 0.103487223, -4.53448497e-21)
3231
o281.CanCollide = false
3232
o281.Locked = true
3233
o281.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3234
o281.CFrame = CFrame.new(-7.25825977, 1.47809505, -9.76076031, -2.06523491e-05, 0.984808743, 0.173659921, 1.552701e-05, -0.173659891, 0.984807968, 0.999999702, 2.30334717e-05, -1.17354266e-05)
3235
o281.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3236
o281.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3237
o281.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3238
o281.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3239
o281.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3240
o281.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3241
o281.Position = Vector3.new(-7.25825977, 1.47809505, -9.76076031)
3242
o281.Velocity = Vector3.new(-3.13168197e-21, 0.103487223, -4.53448497e-21)
3243
o282.Parent = o281
3244
o282.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3245
o282.MeshType = Enum.MeshType.Wedge
3246
o283.Name = "part_Weld"
3247
o283.Parent = o281
3248
o283.C0 = CFrame.new(-15.1739864, 12.5127907, 1.08523083, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
3249
o283.C1 = CFrame.new(-15.1739845, 10.5411682, 7.02121496, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
3250
o283.Part0 = o281
3251
o283.Part1 = o284
3252
o284.Name = "part"
3253
o284.Parent = o1
3254
o284.Material = Enum.Material.Metal
3255
o284.Position = Vector3.new(-7.33526611, 1.77119625, -9.76076794)
3256
o284.Rotation = Vector3.new(-90, 40, -90)
3257
o284.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3258
o284.Velocity = Vector3.new(-2.58013244e-21, 0.103487223, -3.75666297e-21)
3259
o284.CanCollide = false
3260
o284.Locked = true
3261
o284.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3262
o284.CFrame = CFrame.new(-7.33526611, 1.77119625, -9.76076794, -2.06523491e-05, 0.766038895, 0.642798841, 1.552701e-05, -0.642798424, 0.766038239, 0.999999702, 2.58152813e-05, 1.35357823e-06)
3263
o284.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3264
o284.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3265
o284.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3266
o284.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3267
o284.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3268
o284.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3269
o284.Position = Vector3.new(-7.33526611, 1.77119625, -9.76076794)
3270
o284.Velocity = Vector3.new(-2.58013244e-21, 0.103487223, -3.75666297e-21)
3271
o285.Parent = o284
3272
o285.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3273
o285.MeshType = Enum.MeshType.Wedge
3274
o286.Name = "part_Weld"
3275
o286.Parent = o284
3276
o286.C0 = CFrame.new(-15.1739845, 10.5411682, 7.02121496, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
3277
o286.C1 = CFrame.new(-15.1739769, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
3278
o286.Part0 = o284
3279
o286.Part1 = o287
3280
o287.Name = "part"
3281
o287.Parent = o1
3282
o287.Material = Enum.Material.Metal
3283
o287.Position = Vector3.new(-7.27741718, 1.84014189, -9.76077557)
3284
o287.Rotation = Vector3.new(-90, 60, -90)
3285
o287.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3286
o287.Velocity = Vector3.new(-2.45039231e-21, 0.103487223, -3.57189392e-21)
3287
o287.CanCollide = false
3288
o287.Locked = true
3289
o287.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3290
o287.CFrame = CFrame.new(-7.27741718, 1.84014189, -9.76077557, -2.06523491e-05, 0.499992281, 0.866033196, 1.552701e-05, -0.8660326, 0.499991864, 0.999999702, 2.37954937e-05, 1.01012547e-05)
3291
o287.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3292
o287.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3293
o287.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3294
o287.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3295
o287.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3296
o287.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3297
o287.Position = Vector3.new(-7.27741718, 1.84014189, -9.76077557)
3298
o287.Velocity = Vector3.new(-2.45039231e-21, 0.103487223, -3.57189392e-21)
3299
o288.Parent = o287
3300
o288.MeshId = "rbxassetid://9756362"
3301
o288.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
3302
o288.MeshType = Enum.MeshType.FileMesh
3303
o289.Name = "part_Weld"
3304
o289.Parent = o287
3305
o289.C0 = CFrame.new(-15.1739769, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
3306
o289.C1 = CFrame.new(-15.1739864, 6.85641956, 10.6288748, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
3307
o289.Part0 = o287
3308
o289.Part1 = o290
3309
o290.Name = "part"
3310
o290.Parent = o1
3311
o290.Material = Enum.Material.Metal
3312
o290.Position = Vector3.new(-7.27778959, 2.09609342, -9.76076984)
3313
o290.Rotation = Vector3.new(-90, 65, -90)
3314
o290.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3315
o290.Velocity = Vector3.new(-1.96875044e-21, 0.103487223, -2.89107096e-21)
3316
o290.CanCollide = false
3317
o290.Locked = true
3318
o290.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3319
o290.CFrame = CFrame.new(-7.27778959, 2.09609342, -9.76076984, -2.06523491e-05, 0.422608614, 0.906315506, 1.552701e-05, -0.906314909, 0.422608256, 0.999999702, 2.28245462e-05, 1.2136763e-05)
3320
o290.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3321
o290.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3322
o290.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3323
o290.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3324
o290.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3325
o290.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3326
o290.Position = Vector3.new(-7.27778959, 2.09609342, -9.76076984)
3327
o290.Velocity = Vector3.new(-1.96875044e-21, 0.103487223, -2.89107096e-21)
3328
o291.Parent = o290
3329
o291.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3330
o291.MeshType = Enum.MeshType.Wedge
3331
o292.Name = "part_Weld"
3332
o292.Parent = o290
3333
o292.C0 = CFrame.new(-15.1739864, 6.85641956, 10.6288748, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
3334
o292.C1 = CFrame.new(-15.1739845, 9.27238464, 8.61450672, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
3335
o292.Part0 = o290
3336
o292.Part1 = o293
3337
o293.Name = "part"
3338
o293.Parent = o1
3339
o293.Material = Enum.Material.Metal
3340
o293.Position = Vector3.new(-7.30638218, 1.9397738, -9.76076984)
3341
o293.Rotation = Vector3.new(-90, 50, -90)
3342
o293.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3343
o293.Velocity = Vector3.new(-2.26290807e-21, 0.103487223, -3.30756044e-21)
3344
o293.CanCollide = false
3345
o293.Locked = true
3346
o293.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3347
o293.CFrame = CFrame.new(-7.30638218, 1.9397738, -9.76076984, -2.06523491e-05, 0.64278096, 0.766053796, 1.552701e-05, -0.766053319, 0.642780423, 0.999999702, 2.51880483e-05, 5.81576387e-06)
3348
o293.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3349
o293.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3350
o293.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3351
o293.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3352
o293.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3353
o293.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3354
o293.Position = Vector3.new(-7.30638218, 1.9397738, -9.76076984)
3355
o293.Velocity = Vector3.new(-2.26290807e-21, 0.103487223, -3.30756044e-21)
3356
o294.Parent = o293
3357
o294.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3358
o294.MeshType = Enum.MeshType.Wedge
3359
o295.Name = "part_Weld"
3360
o295.Parent = o293
3361
o295.C0 = CFrame.new(-15.1739845, 9.27238464, 8.61450672, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
3362
o295.C1 = CFrame.new(-15.1739883, -11.7327003, 4.41294193, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
3363
o295.Part0 = o293
3364
o295.Part1 = o296
3365
o296.Name = "part"
3366
o296.Parent = o1
3367
o296.Material = Enum.Material.Metal
3368
o296.Position = Vector3.new(-7.06786251, 2.68252039, -9.76077271)
3369
o296.Rotation = Vector3.new(90, 10, 90)
3370
o296.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3371
o296.Velocity = Vector3.new(-8.65229305e-22, 0.103487223, -1.32618903e-21)
3372
o296.CanCollide = false
3373
o296.Locked = true
3374
o296.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3375
o296.CFrame = CFrame.new(-7.06786251, 2.68252039, -9.76077271, -2.06523491e-05, -0.984812081, 0.173640102, 1.552701e-05, -0.173639834, -0.984811425, 0.999999702, -1.76305766e-05, 1.890565e-05)
3376
o296.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3377
o296.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3378
o296.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3379
o296.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3380
o296.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3381
o296.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3382
o296.Position = Vector3.new(-7.06786251, 2.68252039, -9.76077271)
3383
o296.Velocity = Vector3.new(-8.65229305e-22, 0.103487223, -1.32618903e-21)
3384
o297.Parent = o296
3385
o297.Scale = Vector3.new(0.0250000022, 1.5, 1)
3386
o297.MeshType = Enum.MeshType.Wedge
3387
o298.Name = "part_Weld"
3388
o298.Parent = o296
3389
o298.C0 = CFrame.new(-15.1739883, -11.7327003, 4.41294193, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
3390
o298.C1 = CFrame.new(-15.1739807, 2.46731949, 12.3522282, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
3391
o298.Part0 = o296
3392
o298.Part1 = o5
3393
o299.Name = "part"
3394
o299.Parent = o1
3395
o299.Material = Enum.Material.Metal
3396
o299.Position = Vector3.new(-7.26241064, 2.07541251, -9.51076794)
3397
o299.Rotation = Vector3.new(89.9899979, 85, 90.0099945)
3398
o299.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3399
o299.Velocity = Vector3.new(-2.01360298e-21, 0.103487223, -2.94571739e-21)
3400
o299.CanCollide = false
3401
o299.Locked = true
3402
o299.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3403
o299.CFrame = CFrame.new(-7.26241064, 2.07541251, -9.51076794, -2.06523491e-05, -0.0871620625, 0.996199727, 1.552701e-05, -0.996198595, -0.0871621668, 0.999999702, 1.36984245e-05, 2.19229914e-05)
3404
o299.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3405
o299.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3406
o299.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3407
o299.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3408
o299.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3409
o299.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3410
o299.Position = Vector3.new(-7.26241064, 2.07541251, -9.51076794)
3411
o299.Velocity = Vector3.new(-2.01360298e-21, 0.103487223, -2.94571739e-21)
3412
o300.Parent = o299
3413
o300.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
3414
o300.MeshType = Enum.MeshType.Brick
3415
o301.Name = "part_Weld"
3416
o301.Parent = o299
3417
o301.C0 = CFrame.new(-15.4239874, 0.604206324, 12.615921, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
3418
o301.C1 = CFrame.new(-15.4239874, 3.40832901, 12.095212, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
3419
o301.Part0 = o299
3420
o301.Part1 = o311
3421
o302.Name = "part"
3422
o302.Parent = o1
3423
o302.Material = Enum.Material.Metal
3424
o302.Position = Vector3.new(-7.24264145, 1.56673288, -9.51075935)
3425
o302.Rotation = Vector3.new(-90, 30, -90)
3426
o302.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3427
o302.Velocity = Vector3.new(-2.9708218e-21, 0.103487223, -4.29833742e-21)
3428
o302.CanCollide = false
3429
o302.Locked = true
3430
o302.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3431
o302.CFrame = CFrame.new(-7.24264145, 1.56673288, -9.51075935, -2.06523491e-05, 0.866023004, 0.500012219, 1.552701e-05, -0.500011981, 0.866022289, 0.999999702, 2.56581625e-05, -3.14977387e-06)
3432
o302.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3433
o302.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3434
o302.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3435
o302.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3436
o302.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3437
o302.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3438
o302.Position = Vector3.new(-7.24264145, 1.56673288, -9.51075935)
3439
o302.Velocity = Vector3.new(-2.9708218e-21, 0.103487223, -4.29833742e-21)
3440
o303.Parent = o302
3441
o303.MeshId = "rbxassetid://9756362"
3442
o303.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
3443
o303.MeshType = Enum.MeshType.FileMesh
3444
o304.Name = "part_Weld"
3445
o304.Parent = o302
3446
o304.C0 = CFrame.new(-15.4239874, 11.4177809, 5.21483946, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
3447
o304.C1 = CFrame.new(-15.1739845, 0.604206681, 12.6159172, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
3448
o304.Part0 = o302
3449
o304.Part1 = o233
3450
o305.Name = "part"
3451
o305.Parent = o1
3452
o305.Material = Enum.Material.Metal
3453
o305.Position = Vector3.new(-7.17205048, 1.42039502, -9.51075554)
3454
o305.Rotation = Vector3.new(-90, 20, -90)
3455
o305.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3456
o305.Velocity = Vector3.new(-3.2461962e-21, 0.103487223, -4.68592082e-21)
3457
o305.CanCollide = false
3458
o305.Locked = true
3459
o305.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3460
o305.CFrame = CFrame.new(-7.17205048, 1.42039502, -9.51075554, -2.06523491e-05, 0.939692616, 0.342032135, 1.552701e-05, -0.342032075, 0.939691961, 0.999999702, 2.47214048e-05, -7.55742894e-06)
3461
o305.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3462
o305.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3463
o305.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3464
o305.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3465
o305.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3466
o305.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3467
o305.Position = Vector3.new(-7.17205048, 1.42039502, -9.51075554)
3468
o305.Velocity = Vector3.new(-3.2461962e-21, 0.103487223, -4.68592082e-21)
3469
o306.Parent = o305
3470
o306.MeshId = "rbxassetid://9756362"
3471
o306.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
3472
o306.MeshType = Enum.MeshType.FileMesh
3473
o307.Name = "part_Weld"
3474
o307.Parent = o305
3475
o307.C0 = CFrame.new(-15.4239874, 12.0334816, 3.26629877, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
3476
o307.C1 = CFrame.new(-15.4239874, 11.4177809, 5.21483946, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
3477
o307.Part0 = o305
3478
o307.Part1 = o302
3479
o308.Name = "part"
3480
o308.Parent = o1
3481
o308.Material = Enum.Material.Metal
3482
o308.Position = Vector3.new(-7.17205143, 1.33039498, -9.51075459)
3483
o308.Rotation = Vector3.new(-90, 0, -90)
3484
o308.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3485
o308.Velocity = Vector3.new(-3.41555557e-21, 0.103487223, -4.92532135e-21)
3486
o308.CanCollide = false
3487
o308.Locked = true
3488
o308.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3489
o308.CFrame = CFrame.new(-7.17205143, 1.33039498, -9.51075459, -2.06523491e-05, 1.00000405, 1.15334988e-05, 1.552701e-05, -1.17123127e-05, 1.00000346, 0.999999702, 2.06457335e-05, -1.55568741e-05)
3490
o308.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3491
o308.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3492
o308.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3493
o308.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3494
o308.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3495
o308.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3496
o308.Position = Vector3.new(-7.17205143, 1.33039498, -9.51075459)
3497
o308.Velocity = Vector3.new(-3.41555557e-21, 0.103487223, -4.92532135e-21)
3498
o309.Parent = o308
3499
o309.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3500
o309.MeshType = Enum.MeshType.Wedge
3501
o310.Name = "part_Weld"
3502
o310.Parent = o308
3503
o310.C0 = CFrame.new(-15.4239874, 12.4249134, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
3504
o310.C1 = CFrame.new(-15.4239874, 12.0334816, 3.26629877, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
3505
o310.Part0 = o308
3506
o310.Part1 = o305
3507
o311.Name = "part"
3508
o311.Parent = o1
3509
o311.Material = Enum.Material.Metal
3510
o311.Position = Vector3.new(-7.25045824, 1.6302774, -9.51076031)
3511
o311.Rotation = Vector3.new(-89.9899979, 80, -90.0099945)
3512
o311.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3513
o311.Velocity = Vector3.new(-2.85124533e-21, 0.103487223, -4.12949443e-21)
3514
o311.CanCollide = false
3515
o311.Locked = true
3516
o311.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3517
o311.CFrame = CFrame.new(-7.25045824, 1.6302774, -9.51076031, -2.06523491e-05, 0.173636526, 0.984815359, 1.552701e-05, -0.984814286, 0.173636138, 0.999999702, 1.89056245e-05, 1.76307003e-05)
3518
o311.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3519
o311.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3520
o311.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3521
o311.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3522
o311.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3523
o311.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3524
o311.Position = Vector3.new(-7.25045824, 1.6302774, -9.51076031)
3525
o311.Velocity = Vector3.new(-2.85124533e-21, 0.103487223, -4.12949443e-21)
3526
o312.Parent = o311
3527
o312.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
3528
o312.MeshType = Enum.MeshType.Brick
3529
o313.Name = "part_Weld"
3530
o313.Parent = o311
3531
o313.C0 = CFrame.new(-15.4239874, 3.40832901, 12.095212, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
3532
o313.C1 = CFrame.new(-15.4239874, 9.47494125, 8.04478931, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
3533
o313.Part0 = o311
3534
o313.Part1 = o314
3535
o314.Name = "part"
3536
o314.Parent = o1
3537
o314.Material = Enum.Material.Metal
3538
o314.Position = Vector3.new(-7.13547325, 1.38527513, -9.51075459)
3539
o314.Rotation = Vector3.new(-90, 45, -90)
3540
o314.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3541
o314.Velocity = Vector3.new(-3.31228361e-21, 0.103487223, -4.77847134e-21)
3542
o314.CanCollide = false
3543
o314.Locked = true
3544
o314.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3545
o314.CFrame = CFrame.new(-7.13547325, 1.38527513, -9.51075459, -2.06523491e-05, 0.707103372, 0.707117796, 1.552701e-05, -0.70711714, 0.707102418, 0.999999702, 2.55991436e-05, 3.59833757e-06)
3546
o314.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3547
o314.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3548
o314.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3549
o314.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3550
o314.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3551
o314.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3552
o314.Position = Vector3.new(-7.13547325, 1.38527513, -9.51075459)
3553
o314.Velocity = Vector3.new(-3.31228361e-21, 0.103487223, -4.77847134e-21)
3554
o315.Parent = o314
3555
o315.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
3556
o315.MeshType = Enum.MeshType.Brick
3557
o316.Name = "part_Weld"
3558
o316.Parent = o314
3559
o316.C0 = CFrame.new(-15.4239874, 9.47494125, 8.04478931, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
3560
o316.C1 = CFrame.new(-15.4239874, 7.16470575, 10.2317438, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
3561
o316.Part0 = o314
3562
o316.Part1 = o317
3563
o317.Name = "part"
3564
o317.Parent = o1
3565
o317.Material = Enum.Material.Metal
3566
o317.Position = Vector3.new(-7.19045305, 1.46295571, -9.51075649)
3567
o317.Rotation = Vector3.new(-90, 60, -90)
3568
o317.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3569
o317.Velocity = Vector3.new(-3.1661065e-21, 0.103487223, -4.57314597e-21)
3570
o317.CanCollide = false
3571
o317.Locked = true
3572
o317.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3573
o317.CFrame = CFrame.new(-7.19045305, 1.46295571, -9.51075649, -2.06523491e-05, 0.499993563, 0.866035223, 1.552701e-05, -0.866034389, 0.499992847, 0.999999702, 2.37955519e-05, 1.01012793e-05)
3574
o317.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3575
o317.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3576
o317.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3577
o317.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3578
o317.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3579
o317.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3580
o317.Position = Vector3.new(-7.19045305, 1.46295571, -9.51075649)
3581
o317.Velocity = Vector3.new(-3.1661065e-21, 0.103487223, -4.57314597e-21)
3582
o318.Parent = o317
3583
o318.Scale = Vector3.new(0.0250000022, 0.699999988, 0.774999976)
3584
o318.MeshType = Enum.MeshType.Brick
3585
o319.Name = "part_Weld"
3586
o319.Parent = o317
3587
o319.C0 = CFrame.new(-15.4239874, 7.16470575, 10.2317438, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
3588
o319.C1 = CFrame.new(-15.4239855, 11.9266882, 4.1767025, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
3589
o319.Part0 = o317
3590
o319.Part1 = o320
3591
o320.Name = "part"
3592
o320.Parent = o1
3593
o320.Material = Enum.Material.Metal
3594
o320.Position = Vector3.new(-7.32154942, 1.6290803, -9.51076412)
3595
o320.Rotation = Vector3.new(-90, 25, -90)
3596
o320.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3597
o320.Velocity = Vector3.new(-2.85349806e-21, 0.103487223, -4.13436664e-21)
3598
o320.CanCollide = false
3599
o320.Locked = true
3600
o320.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3601
o320.CFrame = CFrame.new(-7.32154942, 1.6290803, -9.51076412, -2.06523491e-05, 0.906307817, 0.422630668, 1.552701e-05, -0.422630429, 0.906306803, 0.999999702, 2.52860355e-05, -5.37406504e-06)
3602
o320.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3603
o320.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3604
o320.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3605
o320.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3606
o320.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3607
o320.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3608
o320.Position = Vector3.new(-7.32154942, 1.6290803, -9.51076412)
3609
o320.Velocity = Vector3.new(-2.85349806e-21, 0.103487223, -4.13436664e-21)
3610
o321.Parent = o320
3611
o321.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3612
o321.MeshType = Enum.MeshType.Wedge
3613
o322.Name = "part_Weld"
3614
o322.Parent = o320
3615
o322.C0 = CFrame.new(-15.4239855, 11.9266882, 4.1767025, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
3616
o322.C1 = CFrame.new(-15.4239855, 9.80967808, 7.91943455, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
3617
o322.Part0 = o320
3618
o322.Part1 = o323
3619
o323.Name = "part"
3620
o323.Parent = o1
3621
o323.Material = Enum.Material.Metal
3622
o323.Position = Vector3.new(-7.28352022, 1.71064818, -9.51076508)
3623
o323.Rotation = Vector3.new(-90, 45, -90)
3624
o323.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3625
o323.Velocity = Vector3.new(-2.70000597e-21, 0.103487223, -3.916493e-21)
3626
o323.CanCollide = false
3627
o323.Locked = true
3628
o323.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3629
o323.CFrame = CFrame.new(-7.28352022, 1.71064818, -9.51076508, -2.06523491e-05, 0.707101345, 0.707119703, 1.552701e-05, -0.707119107, 0.707100451, 0.999999702, 2.55991345e-05, 3.59840942e-06)
3630
o323.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3631
o323.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3632
o323.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3633
o323.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3634
o323.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3635
o323.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3636
o323.Position = Vector3.new(-7.28352022, 1.71064818, -9.51076508)
3637
o323.Velocity = Vector3.new(-2.70000597e-21, 0.103487223, -3.916493e-21)
3638
o324.Parent = o323
3639
o324.MeshId = "rbxassetid://9756362"
3640
o324.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
3641
o324.MeshType = Enum.MeshType.FileMesh
3642
o325.Name = "part_Weld"
3643
o325.Parent = o323
3644
o325.C0 = CFrame.new(-15.4239855, 9.80967808, 7.91943455, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
3645
o325.C1 = CFrame.new(-15.4239931, -2.37625909, 12.3950405, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
3646
o325.Part0 = o323
3647
o325.Part1 = o326
3648
o326.Name = "part"
3649
o326.Parent = o1
3650
o326.Material = Enum.Material.Metal
3651
o326.Position = Vector3.new(-7.20739508, 2.38041329, -9.51076603)
3652
o326.Rotation = Vector3.new(90, 70, 90)
3653
o326.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3654
o326.Velocity = Vector3.new(-1.43966161e-21, 0.103487223, -2.13310816e-21)
3655
o326.CanCollide = false
3656
o326.Locked = true
3657
o326.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3658
o326.CFrame = CFrame.new(-7.20739508, 2.38041329, -9.51076603, -2.06523491e-05, -0.342031598, 0.939693928, 1.552701e-05, -0.939692974, -0.342031479, 0.999999702, 7.55746032e-06, 2.47214248e-05)
3659
o326.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3660
o326.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3661
o326.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3662
o326.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3663
o326.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3664
o326.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3665
o326.Position = Vector3.new(-7.20739508, 2.38041329, -9.51076603)
3666
o326.Velocity = Vector3.new(-1.43966161e-21, 0.103487223, -2.13310816e-21)
3667
o327.Parent = o326
3668
o327.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
3669
o327.MeshType = Enum.MeshType.Brick
3670
o328.Name = "part_Weld"
3671
o328.Parent = o326
3672
o328.C0 = CFrame.new(-15.4239931, -2.37625909, 12.3950405, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
3673
o328.C1 = CFrame.new(-15.4239836, -5.39621258, 11.3753481, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
3674
o328.Part0 = o326
3675
o328.Part1 = o329
3676
o329.Name = "part"
3677
o329.Parent = o1
3678
o329.Material = Enum.Material.Metal
3679
o329.Position = Vector3.new(-7.16041946, 2.47830248, -9.51077652)
3680
o329.Rotation = Vector3.new(90, 55, 90)
3681
o329.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3682
o329.Velocity = Vector3.new(-1.2554564e-21, 0.103487223, -1.87160721e-21)
3683
o329.CanCollide = false
3684
o329.Locked = true
3685
o329.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3686
o329.CFrame = CFrame.new(-7.16041946, 2.47830248, -9.51077652, -2.06523491e-05, -0.573586166, 0.819151342, 1.552701e-05, -0.819150507, -0.573585868, 0.999999702, 9.01620297e-07, 2.58350738e-05)
3687
o329.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3688
o329.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3689
o329.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3690
o329.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3691
o329.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3692
o329.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3693
o329.Position = Vector3.new(-7.16041946, 2.47830248, -9.51077652)
3694
o329.Velocity = Vector3.new(-1.2554564e-21, 0.103487223, -1.87160721e-21)
3695
o330.Parent = o329
3696
o330.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
3697
o330.MeshType = Enum.MeshType.Brick
3698
o331.Name = "part_Weld"
3699
o331.Parent = o329
3700
o331.C0 = CFrame.new(-15.4239836, -5.39621258, 11.3753481, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
3701
o331.C1 = CFrame.new(-15.4239855, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
3702
o331.Part0 = o329
3703
o331.Part1 = o332
3704
o332.Name = "part"
3705
o332.Parent = o1
3706
o332.Material = Enum.Material.Metal
3707
o332.Position = Vector3.new(-7.2723937, 1.91541219, -9.51076794)
3708
o332.Rotation = Vector3.new(180, 90, 0)
3709
o332.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3710
o332.Velocity = Vector3.new(-2.31468703e-21, 0.103487223, -3.37155587e-21)
3711
o332.CanCollide = false
3712
o332.Locked = true
3713
o332.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3714
o332.CFrame = CFrame.new(-7.2723937, 1.91541219, -9.51076794, -2.06523491e-05, -1.14887953e-05, 1.00000501, 1.552701e-05, -1.00000417, -1.17123127e-05, 0.999999702, 1.55568887e-05, 2.06457535e-05)
3715
o332.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3716
o332.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3717
o332.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3718
o332.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3719
o332.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3720
o332.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3721
o332.Position = Vector3.new(-7.2723937, 1.91541219, -9.51076794)
3722
o332.Velocity = Vector3.new(-2.31468703e-21, 0.103487223, -3.37155587e-21)
3723
o333.Parent = o332
3724
o333.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
3725
o333.MeshType = Enum.MeshType.Brick
3726
o334.Name = "part_Weld"
3727
o334.Parent = o332
3728
o334.C0 = CFrame.new(-15.4239855, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
3729
o334.C1 = CFrame.new(-15.4239855, 4.37191868, 11.7522182, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
3730
o334.Part0 = o332
3731
o334.Part1 = o335
3732
o335.Name = "part"
3733
o335.Parent = o1
3734
o335.Material = Enum.Material.Metal
3735
o335.Position = Vector3.new(-7.23045158, 1.55527711, -9.51076126)
3736
o335.Rotation = Vector3.new(-90, 75, -90)
3737
o335.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3738
o335.Velocity = Vector3.new(-2.99237878e-21, 0.103487223, -4.32852063e-21)
3739
o335.CanCollide = false
3740
o335.Locked = true
3741
o335.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3742
o335.CFrame = CFrame.new(-7.23045158, 1.55527711, -9.51076126, -2.06523491e-05, 0.258809149, 0.965933561, 1.552701e-05, -0.965932906, 0.258808762, 0.999999702, 2.0370313e-05, 1.59158481e-05)
3743
o335.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3744
o335.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3745
o335.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3746
o335.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3747
o335.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3748
o335.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3749
o335.Position = Vector3.new(-7.23045158, 1.55527711, -9.51076126)
3750
o335.Velocity = Vector3.new(-2.99237878e-21, 0.103487223, -4.32852063e-21)
3751
o336.Parent = o335
3752
o336.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
3753
o336.MeshType = Enum.MeshType.Brick
3754
o337.Name = "part_Weld"
3755
o337.Parent = o335
3756
o337.C0 = CFrame.new(-15.4239855, 4.37191868, 11.7522182, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
3757
o337.C1 = CFrame.new(-15.4239798, -11.3810387, -5.27908373, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
3758
o337.Part0 = o335
3759
o337.Part1 = o338
3760
o338.Name = "part"
3761
o338.Parent = o1
3762
o338.Material = Enum.Material.Metal
3763
o338.Position = Vector3.new(-7.09789419, 2.57752943, -9.51078033)
3764
o338.Rotation = Vector3.new(90, -35, 90)
3765
o338.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3766
o338.Velocity = Vector3.new(-1.06873391e-21, 0.103487223, -1.60617876e-21)
3767
o338.CanCollide = false
3768
o338.Locked = true
3769
o338.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3770
o338.CFrame = CFrame.new(-7.09789419, 2.57752943, -9.51078033, -2.06523491e-05, -0.819150269, -0.57358712, 1.552701e-05, 0.573586881, -0.819149613, 0.999999702, -2.58350683e-05, 9.01583917e-07)
3771
o338.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3772
o338.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3773
o338.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3774
o338.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3775
o338.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3776
o338.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3777
o338.Position = Vector3.new(-7.09789419, 2.57752943, -9.51078033)
3778
o338.Velocity = Vector3.new(-1.06873391e-21, 0.103487223, -1.60617876e-21)
3779
o339.Parent = o338
3780
o339.Scale = Vector3.new(0.0250000022, 0.825000048, 0.825000048)
3781
o339.MeshType = Enum.MeshType.Wedge
3782
o340.Name = "part_Weld"
3783
o340.Parent = o338
3784
o340.C0 = CFrame.new(-15.4239798, -11.3810387, -5.27908373, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
3785
o340.C1 = CFrame.new(-15.4239893, -0.341733694, 12.6295214, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
3786
o340.Part0 = o338
3787
o340.Part1 = o341
3788
o341.Name = "part"
3789
o341.Parent = o1
3790
o341.Material = Enum.Material.Metal
3791
o341.Position = Vector3.new(-7.24413013, 2.23056412, -9.51076889)
3792
o341.Rotation = Vector3.new(89.9899979, 80, 90.0099945)
3793
o341.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3794
o341.Velocity = Vector3.new(-1.72164336e-21, 0.103487223, -2.53257965e-21)
3795
o341.CanCollide = false
3796
o341.Locked = true
3797
o341.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3798
o341.CFrame = CFrame.new(-7.24413013, 2.23056412, -9.51076889, -2.06523491e-05, -0.173659146, 0.984810472, 1.552701e-05, -0.984809756, -0.173659205, 0.999999702, 1.17354703e-05, 2.30335027e-05)
3799
o341.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3800
o341.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3801
o341.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3802
o341.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3803
o341.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3804
o341.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3805
o341.Position = Vector3.new(-7.24413013, 2.23056412, -9.51076889)
3806
o341.Velocity = Vector3.new(-1.72164336e-21, 0.103487223, -2.53257965e-21)
3807
o342.Parent = o341
3808
o342.Scale = Vector3.new(0.0250000022, 0.949999988, 0.774999976)
3809
o342.MeshType = Enum.MeshType.Brick
3810
o343.Name = "part_Weld"
3811
o343.Parent = o341
3812
o343.C0 = CFrame.new(-15.4239893, -0.341733694, 12.6295214, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
3813
o343.C1 = CFrame.new(15.4239855, 9.23743916, -8.04478836, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
3814
o343.Part0 = o341
3815
o343.Part1 = o344
3816
o344.Name = "part"
3817
o344.Parent = o1
3818
o344.Material = Enum.Material.Metal
3819
o344.Position = Vector3.new(-6.96752596, 1.21733391, -9.51075077)
3820
o344.Rotation = Vector3.new(90, -45, -90)
3821
o344.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3822
o344.Velocity = Vector3.new(-3.62831063e-21, 0.103487223, -5.22120805e-21)
3823
o344.CanCollide = false
3824
o344.Locked = true
3825
o344.Size = Vector3.new(0.200000003, 0.38499999, 0.200000003)
3826
o344.CFrame = CFrame.new(-6.96752596, 1.21733391, -9.51075077, 2.06523491e-05, 0.707102835, -0.70711714, -1.552701e-05, -0.707116723, -0.707102239, -0.999999702, 2.5599129e-05, -3.59833211e-06)
3827
o344.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3828
o344.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3829
o344.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3830
o344.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3831
o344.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3832
o344.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3833
o344.Position = Vector3.new(-6.96752596, 1.21733391, -9.51075077)
3834
o344.Velocity = Vector3.new(-3.62831063e-21, 0.103487223, -5.22120805e-21)
3835
o345.Parent = o344
3836
o345.Scale = Vector3.new(0.0250000022, 1, 0.774999976)
3837
o345.MeshType = Enum.MeshType.Wedge
3838
o346.Name = "part_Weld"
3839
o346.Parent = o344
3840
o346.C0 = CFrame.new(15.4239855, 9.23743916, -8.04478836, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
3841
o346.C1 = CFrame.new(-15.4239893, 12.5127926, 1.08523107, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
3842
o346.Part0 = o344
3843
o346.Part1 = o347
3844
o347.Name = "part"
3845
o347.Parent = o1
3846
o347.Material = Enum.Material.Metal
3847
o347.Position = Vector3.new(-7.25828457, 1.47810113, -9.51075745)
3848
o347.Rotation = Vector3.new(-90, 10, -90)
3849
o347.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3850
o347.Velocity = Vector3.new(-3.13760633e-21, 0.103487223, -4.53446962e-21)
3851
o347.CanCollide = false
3852
o347.Locked = true
3853
o347.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3854
o347.CFrame = CFrame.new(-7.25828457, 1.47810113, -9.51075745, -2.06523491e-05, 0.984810114, 0.1736601, 1.552701e-05, -0.1736601, 0.984809399, 0.999999702, 2.30335081e-05, -1.17354457e-05)
3855
o347.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3856
o347.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3857
o347.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3858
o347.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3859
o347.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3860
o347.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3861
o347.Position = Vector3.new(-7.25828457, 1.47810113, -9.51075745)
3862
o347.Velocity = Vector3.new(-3.13760633e-21, 0.103487223, -4.53446962e-21)
3863
o348.Parent = o347
3864
o348.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3865
o348.MeshType = Enum.MeshType.Wedge
3866
o349.Name = "part_Weld"
3867
o349.Parent = o347
3868
o349.C0 = CFrame.new(-15.4239893, 12.5127926, 1.08523107, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
3869
o349.C1 = CFrame.new(-15.423995, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
3870
o349.Part0 = o347
3871
o349.Part1 = o350
3872
o350.Name = "part"
3873
o350.Parent = o1
3874
o350.Material = Enum.Material.Metal
3875
o350.Position = Vector3.new(-7.3352952, 1.77120233, -9.51075745)
3876
o350.Rotation = Vector3.new(-90, 40, -90)
3877
o350.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3878
o350.Velocity = Vector3.new(-2.5860572e-21, 0.103487223, -3.75664802e-21)
3879
o350.CanCollide = false
3880
o350.Locked = true
3881
o350.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3882
o350.CFrame = CFrame.new(-7.3352952, 1.77120233, -9.51075745, -2.06523491e-05, 0.766039968, 0.642799675, 1.552701e-05, -0.642799318, 0.766039371, 0.999999702, 2.58153232e-05, 1.35358005e-06)
3883
o350.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3884
o350.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3885
o350.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3886
o350.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3887
o350.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3888
o350.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3889
o350.Position = Vector3.new(-7.3352952, 1.77120233, -9.51075745)
3890
o350.Velocity = Vector3.new(-2.5860572e-21, 0.103487223, -3.75664802e-21)
3891
o351.Parent = o350
3892
o351.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3893
o351.MeshType = Enum.MeshType.Wedge
3894
o352.Name = "part_Weld"
3895
o352.Parent = o350
3896
o352.C0 = CFrame.new(-15.423995, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
3897
o352.C1 = CFrame.new(-15.4239855, 7.53486109, 10.1184902, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
3898
o352.Part0 = o350
3899
o352.Part1 = o353
3900
o353.Name = "part"
3901
o353.Parent = o1
3902
o353.Material = Enum.Material.Metal
3903
o353.Position = Vector3.new(-7.27743578, 1.84014738, -9.51076698)
3904
o353.Rotation = Vector3.new(-90, 60, -90)
3905
o353.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3906
o353.Velocity = Vector3.new(-2.45631828e-21, 0.103487223, -3.57188019e-21)
3907
o353.CanCollide = false
3908
o353.Locked = true
3909
o353.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3910
o353.CFrame = CFrame.new(-7.27743578, 1.84014738, -9.51076698, -2.06523491e-05, 0.499993026, 0.866034329, 1.552701e-05, -0.866033852, 0.499992579, 0.999999702, 2.37955319e-05, 1.01012702e-05)
3911
o353.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3912
o353.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3913
o353.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3914
o353.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3915
o353.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3916
o353.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3917
o353.Position = Vector3.new(-7.27743578, 1.84014738, -9.51076698)
3918
o353.Velocity = Vector3.new(-2.45631828e-21, 0.103487223, -3.57188019e-21)
3919
o354.Parent = o353
3920
o354.MeshId = "rbxassetid://9756362"
3921
o354.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
3922
o354.MeshType = Enum.MeshType.FileMesh
3923
o355.Name = "part_Weld"
3924
o355.Parent = o353
3925
o355.C0 = CFrame.new(-15.4239855, 7.53486109, 10.1184902, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
3926
o355.C1 = CFrame.new(-15.4239817, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
3927
o355.Part0 = o353
3928
o355.Part1 = o356
3929
o356.Name = "part"
3930
o356.Parent = o1
3931
o356.Material = Enum.Material.Metal
3932
o356.Position = Vector3.new(-7.2778163, 2.09610081, -9.51077461)
3933
o356.Rotation = Vector3.new(-90, 65, -90)
3934
o356.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3935
o356.Velocity = Vector3.new(-1.97467238e-21, 0.103487223, -2.89105238e-21)
3936
o356.CanCollide = false
3937
o356.Locked = true
3938
o356.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3939
o356.CFrame = CFrame.new(-7.2778163, 2.09610081, -9.51077461, -2.06523491e-05, 0.42260927, 0.906316698, 1.552701e-05, -0.906316221, 0.422608852, 0.999999702, 2.28245826e-05, 1.21367821e-05)
3940
o356.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3941
o356.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3942
o356.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3943
o356.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3944
o356.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3945
o356.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3946
o356.Position = Vector3.new(-7.2778163, 2.09610081, -9.51077461)
3947
o356.Velocity = Vector3.new(-1.97467238e-21, 0.103487223, -2.89105238e-21)
3948
o357.Parent = o356
3949
o357.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3950
o357.MeshType = Enum.MeshType.Wedge
3951
o358.Name = "part_Weld"
3952
o358.Parent = o356
3953
o358.C0 = CFrame.new(-15.4239817, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
3954
o358.C1 = CFrame.new(-15.4239798, 9.27239037, 8.61451435, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
3955
o358.Part0 = o356
3956
o358.Part1 = o359
3957
o359.Name = "part"
3958
o359.Parent = o1
3959
o359.Material = Enum.Material.Metal
3960
o359.Position = Vector3.new(-7.3064127, 1.9397794, -9.51077461)
3961
o359.Rotation = Vector3.new(-90, 50, -90)
3962
o359.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3963
o359.Velocity = Vector3.new(-2.26883343e-21, 0.103487223, -3.30754671e-21)
3964
o359.CanCollide = false
3965
o359.Locked = true
3966
o359.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3967
o359.CFrame = CFrame.new(-7.3064127, 1.9397794, -9.51077461, -2.06523491e-05, 0.642781854, 0.766054809, 1.552701e-05, -0.766054451, 0.642781377, 0.999999702, 2.51880883e-05, 5.81577297e-06)
3968
o359.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3969
o359.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3970
o359.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3971
o359.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
3972
o359.RightSurface = Enum.SurfaceType.SmoothNoOutlines
3973
o359.TopSurface = Enum.SurfaceType.SmoothNoOutlines
3974
o359.Position = Vector3.new(-7.3064127, 1.9397794, -9.51077461)
3975
o359.Velocity = Vector3.new(-2.26883343e-21, 0.103487223, -3.30754671e-21)
3976
o360.Parent = o359
3977
o360.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
3978
o360.MeshType = Enum.MeshType.Wedge
3979
o361.Name = "part_Weld"
3980
o361.Parent = o359
3981
o361.C0 = CFrame.new(-15.4239798, 9.27239037, 8.61451435, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
3982
o361.C1 = CFrame.new(-15.4239779, -11.7326965, 4.41294098, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
3983
o361.Part0 = o359
3984
o361.Part1 = o362
3985
o362.Name = "part"
3986
o362.Parent = o1
3987
o362.Material = Enum.Material.Metal
3988
o362.Position = Vector3.new(-7.0678792, 2.68252707, -9.5107832)
3989
o362.Rotation = Vector3.new(90, 10, 90)
3990
o362.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
3991
o362.Velocity = Vector3.new(-8.71152451e-22, 0.103487223, -1.32617227e-21)
3992
o362.CanCollide = false
3993
o362.Locked = true
3994
o362.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
3995
o362.CFrame = CFrame.new(-7.0678792, 2.68252707, -9.5107832, -2.06523491e-05, -0.984813392, 0.1736404, 1.552701e-05, -0.173640132, -0.984812856, 0.999999702, -1.76306039e-05, 1.89056791e-05)
3996
o362.BackSurface = Enum.SurfaceType.SmoothNoOutlines
3997
o362.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
3998
o362.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
3999
o362.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4000
o362.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4001
o362.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4002
o362.Position = Vector3.new(-7.0678792, 2.68252707, -9.5107832)
4003
o362.Velocity = Vector3.new(-8.71152451e-22, 0.103487223, -1.32617227e-21)
4004
o363.Parent = o362
4005
o363.Scale = Vector3.new(0.0250000022, 1.5, 1)
4006
o363.MeshType = Enum.MeshType.Wedge
4007
o364.Name = "part_Weld"
4008
o364.Parent = o362
4009
o364.C0 = CFrame.new(-15.4239779, -11.7326965, 4.41294098, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
4010
o364.C1 = CFrame.new(-15.4239855, 2.46731901, 12.3522243, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
4011
o364.Part0 = o362
4012
o364.Part1 = o2
4013
o365.Name = "Hitbox"
4014
o365.Parent = o1
4015
o365.BrickColor = BrickColor.new("Bright orange")
4016
o365.Transparency = 1
4017
o365.Position = Vector3.new(-6.72532797, 1.95401204, -9.75976563)
4018
o365.CanCollide = false
4019
o365.Size = Vector3.new(1.53999972, 2.09999967, 1)
4020
o365.CFrame = CFrame.new(-6.72532797, 1.95401204, -9.75976563, 1.00000024, 1.17700811e-05, -2.06523491e-05, -1.17798645e-05, 0.99999994, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
4021
o365.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4022
o365.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4023
o365.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4024
o365.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4025
o365.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4026
o365.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4027
o365.Color = Color3.new(0.854902, 0.521569, 0.254902)
4028
o365.Position = Vector3.new(-6.72532797, 1.95401204, -9.75976563)	
4029
4030
4031
--Right--
4032
4033
o1 = Instance.new("Model")
4034
o2 = Instance.new("Part")
4035
o3 = Instance.new("SpecialMesh")
4036
o4 = Instance.new("Weld")
4037
o5 = Instance.new("Part")
4038
o6 = Instance.new("SpecialMesh")
4039
o7 = Instance.new("Weld")
4040
o8 = Instance.new("Part")
4041
o9 = Instance.new("SpecialMesh")
4042
o10 = Instance.new("Part")
4043
o11 = Instance.new("SpecialMesh")
4044
o12 = Instance.new("Weld")
4045
o13 = Instance.new("Part")
4046
o14 = Instance.new("SpecialMesh")
4047
o15 = Instance.new("Part")
4048
o16 = Instance.new("SpecialMesh")
4049
o17 = Instance.new("Weld")
4050
o18 = Instance.new("Part")
4051
o19 = Instance.new("SpecialMesh")
4052
o20 = Instance.new("Weld")
4053
o21 = Instance.new("Part")
4054
o22 = Instance.new("SpecialMesh")
4055
o23 = Instance.new("Weld")
4056
o24 = Instance.new("Part")
4057
o25 = Instance.new("Weld")
4058
o26 = Instance.new("Part")
4059
o27 = Instance.new("SpecialMesh")
4060
o28 = Instance.new("Weld")
4061
o29 = Instance.new("Part")
4062
o30 = Instance.new("SpecialMesh")
4063
o31 = Instance.new("Weld")
4064
o32 = Instance.new("Part")
4065
o33 = Instance.new("CylinderMesh")
4066
o34 = Instance.new("Weld")
4067
o35 = Instance.new("Part")
4068
o36 = Instance.new("CylinderMesh")
4069
o37 = Instance.new("Weld")
4070
o38 = Instance.new("Part")
4071
o39 = Instance.new("CylinderMesh")
4072
o40 = Instance.new("Weld")
4073
o41 = Instance.new("Part")
4074
o42 = Instance.new("SpecialMesh")
4075
o43 = Instance.new("Weld")
4076
o44 = Instance.new("Part")
4077
o45 = Instance.new("SpecialMesh")
4078
o46 = Instance.new("Weld")
4079
o47 = Instance.new("Part")
4080
o48 = Instance.new("SpecialMesh")
4081
o49 = Instance.new("Weld")
4082
o50 = Instance.new("Part")
4083
o51 = Instance.new("SpecialMesh")
4084
o52 = Instance.new("Weld")
4085
o53 = Instance.new("Part")
4086
o54 = Instance.new("SpecialMesh")
4087
o55 = Instance.new("Weld")
4088
o56 = Instance.new("Part")
4089
o57 = Instance.new("BlockMesh")
4090
o58 = Instance.new("Weld")
4091
o59 = Instance.new("Part")
4092
o60 = Instance.new("SpecialMesh")
4093
o61 = Instance.new("Weld")
4094
o62 = Instance.new("Part")
4095
o63 = Instance.new("SpecialMesh")
4096
o64 = Instance.new("Weld")
4097
o65 = Instance.new("Part")
4098
o66 = Instance.new("CylinderMesh")
4099
o67 = Instance.new("Weld")
4100
o68 = Instance.new("Part")
4101
o69 = Instance.new("SpecialMesh")
4102
o70 = Instance.new("Weld")
4103
o71 = Instance.new("Part")
4104
o72 = Instance.new("SpecialMesh")
4105
o73 = Instance.new("Weld")
4106
o74 = Instance.new("Part")
4107
o75 = Instance.new("SpecialMesh")
4108
o76 = Instance.new("Weld")
4109
o77 = Instance.new("Part")
4110
o78 = Instance.new("CylinderMesh")
4111
o79 = Instance.new("Weld")
4112
o80 = Instance.new("Part")
4113
o81 = Instance.new("SpecialMesh")
4114
o82 = Instance.new("Weld")
4115
o83 = Instance.new("Part")
4116
o84 = Instance.new("SpecialMesh")
4117
o85 = Instance.new("Weld")
4118
o86 = Instance.new("Part")
4119
o87 = Instance.new("SpecialMesh")
4120
o88 = Instance.new("Weld")
4121
o89 = Instance.new("Part")
4122
o90 = Instance.new("Weld")
4123
o91 = Instance.new("Part")
4124
o92 = Instance.new("SpecialMesh")
4125
o93 = Instance.new("Weld")
4126
o94 = Instance.new("Part")
4127
o95 = Instance.new("Weld")
4128
o96 = Instance.new("Part")
4129
o97 = Instance.new("CylinderMesh")
4130
o98 = Instance.new("Weld")
4131
o99 = Instance.new("Part")
4132
o100 = Instance.new("BlockMesh")
4133
o101 = Instance.new("Weld")
4134
o102 = Instance.new("Part")
4135
o103 = Instance.new("SpecialMesh")
4136
o104 = Instance.new("Part")
4137
o105 = Instance.new("SpecialMesh")
4138
o106 = Instance.new("Weld")
4139
o107 = Instance.new("Part")
4140
o108 = Instance.new("SpecialMesh")
4141
o109 = Instance.new("Weld")
4142
o110 = Instance.new("Part")
4143
o111 = Instance.new("SpecialMesh")
4144
o112 = Instance.new("Weld")
4145
o113 = Instance.new("Part")
4146
o114 = Instance.new("SpecialMesh")
4147
o115 = Instance.new("Weld")
4148
o116 = Instance.new("Part")
4149
o117 = Instance.new("SpecialMesh")
4150
o118 = Instance.new("Weld")
4151
o119 = Instance.new("Part")
4152
o120 = Instance.new("SpecialMesh")
4153
o121 = Instance.new("Weld")
4154
o122 = Instance.new("Part")
4155
o123 = Instance.new("SpecialMesh")
4156
o124 = Instance.new("Weld")
4157
o125 = Instance.new("Part")
4158
o126 = Instance.new("SpecialMesh")
4159
o127 = Instance.new("Weld")
4160
o128 = Instance.new("Part")
4161
o129 = Instance.new("SpecialMesh")
4162
o130 = Instance.new("Weld")
4163
o131 = Instance.new("Part")
4164
o132 = Instance.new("SpecialMesh")
4165
o133 = Instance.new("Weld")
4166
o134 = Instance.new("Part")
4167
o135 = Instance.new("BlockMesh")
4168
o136 = Instance.new("Weld")
4169
o137 = Instance.new("Part")
4170
o138 = Instance.new("BlockMesh")
4171
o139 = Instance.new("Weld")
4172
o140 = Instance.new("Part")
4173
o141 = Instance.new("SpecialMesh")
4174
o142 = Instance.new("Weld")
4175
o143 = Instance.new("Part")
4176
o144 = Instance.new("BlockMesh")
4177
o145 = Instance.new("Weld")
4178
o146 = Instance.new("Part")
4179
o147 = Instance.new("BlockMesh")
4180
o148 = Instance.new("Weld")
4181
o149 = Instance.new("Part")
4182
o150 = Instance.new("SpecialMesh")
4183
o151 = Instance.new("Weld")
4184
o152 = Instance.new("Part")
4185
o153 = Instance.new("BlockMesh")
4186
o154 = Instance.new("Weld")
4187
o155 = Instance.new("Part")
4188
o156 = Instance.new("SpecialMesh")
4189
o157 = Instance.new("Weld")
4190
o158 = Instance.new("Part")
4191
o159 = Instance.new("Weld")
4192
o160 = Instance.new("Part")
4193
o161 = Instance.new("BlockMesh")
4194
o162 = Instance.new("Weld")
4195
o163 = Instance.new("Part")
4196
o164 = Instance.new("BlockMesh")
4197
o165 = Instance.new("Weld")
4198
o166 = Instance.new("Part")
4199
o167 = Instance.new("BlockMesh")
4200
o168 = Instance.new("Weld")
4201
o169 = Instance.new("Part")
4202
o170 = Instance.new("BlockMesh")
4203
o171 = Instance.new("Weld")
4204
o172 = Instance.new("Part")
4205
o173 = Instance.new("BlockMesh")
4206
o174 = Instance.new("Weld")
4207
o175 = Instance.new("Part")
4208
o176 = Instance.new("BlockMesh")
4209
o177 = Instance.new("Weld")
4210
o178 = Instance.new("Part")
4211
o179 = Instance.new("SpecialMesh")
4212
o180 = Instance.new("Weld")
4213
o181 = Instance.new("Part")
4214
o182 = Instance.new("SpecialMesh")
4215
o183 = Instance.new("Weld")
4216
o184 = Instance.new("Part")
4217
o185 = Instance.new("SpecialMesh")
4218
o186 = Instance.new("Weld")
4219
o1.Name = "Right"
4220
o1.Parent = game.ReplicatedStorage
4221
o2.Name = "part"
4222
o2.Parent = o1
4223
o2.Material = Enum.Material.SmoothPlastic
4224
o2.BrickColor = BrickColor.new("Institutional white")
4225
o2.Position = Vector3.new(-5.50483513, 3.97847772, -10.3093672)
4226
o2.Rotation = Vector3.new(-90, -90, 0)
4227
o2.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4228
o2.Velocity = Vector3.new(3.16409953e-21, 0.103487223, 4.5781139e-21)
4229
o2.CanCollide = false
4230
o2.Locked = true
4231
o2.Shape = Enum.PartType.Ball
4232
o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4233
o2.CFrame = CFrame.new(-5.50483513, 3.97847772, -10.3093672, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.16583633e-06, 5.06196193e-06, -1.00000131, -7.15279839e-07)
4234
o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4235
o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4236
o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4237
o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4238
o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4239
o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4240
o2.Color = Color3.new(0.972549, 0.972549, 0.972549)
4241
o2.Position = Vector3.new(-5.50483513, 3.97847772, -10.3093672)
4242
o2.Velocity = Vector3.new(3.16409953e-21, 0.103487223, 4.5781139e-21)
4243
o3.Parent = o2
4244
o3.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
4245
o3.MeshType = Enum.MeshType.Sphere
4246
o4.Name = "part_Weld"
4247
o4.Parent = o2
4248
o4.C0 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
4249
o4.C1 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4250
o4.Part0 = o2
4251
o4.Part1 = o44
4252
o5.Parent = o1
4253
o5.Material = Enum.Material.Neon
4254
o5.BrickColor = BrickColor.new("Alder")
4255
o5.Position = Vector3.new(-5.23741627, 4.01984501, -10.2693815)
4256
o5.Rotation = Vector3.new(-180, 0, 180)
4257
o5.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4258
o5.Velocity = Vector3.new(3.24099583e-21, 0.103487223, 4.69450241e-21)
4259
o5.CanCollide = false
4260
o5.Locked = true
4261
o5.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4262
o5.CFrame = CFrame.new(-5.23741627, 4.01984501, -10.2693815, -1.00000072, -3.59863043e-05, 6.42132477e-07, -3.63737345e-05, 1.00000095, 5.07036202e-06, -5.16633463e-07, 5.15975307e-06, -1.00000107)
4263
o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4264
o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4265
o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4266
o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4267
o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4268
o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4269
o5.Color = Color3.new(0.705882, 0.501961, 1)
4270
o5.Position = Vector3.new(-5.23741627, 4.01984501, -10.2693815)
4271
o5.Velocity = Vector3.new(3.24099583e-21, 0.103487223, 4.69450241e-21)
4272
o6.Parent = o5
4273
o6.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
4274
o6.MeshType = Enum.MeshType.Brick
4275
o7.Name = "Part_Weld"
4276
o7.Parent = o5
4277
o7.C0 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
4278
o7.C1 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
4279
o7.Part0 = o5
4280
o7.Part1 = o131
4281
o8.Name = "Handle"
4282
o8.Parent = o1
4283
o8.BrickColor = BrickColor.new("Bright orange")
4284
o8.Transparency = 1
4285
o8.Position = Vector3.new(-5.20482397, 3.37347794, -9.76437378)
4286
o8.CanCollide = false
4287
o8.Size = Vector3.new(1, 2, 1)
4288
o8.CFrame = CFrame.new(-5.20482397, 3.37347794, -9.76437378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4289
o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4290
o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4291
o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4292
o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4293
o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4294
o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4295
o8.Color = Color3.new(0.854902, 0.521569, 0.254902)
4296
o8.Position = Vector3.new(-5.20482397, 3.37347794, -9.76437378)
4297
o9.Parent = o8
4298
o9.MeshId = "rbxasset://fonts/rightarm.mesh"
4299
o9.MeshType = Enum.MeshType.FileMesh
4300
o10.Name = "part"
4301
o10.Parent = o1
4302
o10.BrickColor = BrickColor.new("Institutional white")
4303
o10.Position = Vector3.new(-5.19982624, 2.7934761, -9.76437569)
4304
o10.Rotation = Vector3.new(-180, 0, 180)
4305
o10.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4306
o10.Velocity = Vector3.new(9.21258877e-22, 0.103487223, 1.43324722e-21)
4307
o10.CanCollide = false
4308
o10.Locked = true
4309
o10.Size = Vector3.new(0.5, 0.349999934, 1)
4310
o10.CFrame = CFrame.new(-5.19982624, 2.7934761, -9.76437569, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4311
o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4312
o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4313
o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4314
o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4315
o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4316
o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4317
o10.Color = Color3.new(0.972549, 0.972549, 0.972549)
4318
o10.Position = Vector3.new(-5.19982624, 2.7934761, -9.76437569)
4319
o10.Velocity = Vector3.new(9.21258877e-22, 0.103487223, 1.43324722e-21)
4320
o11.Parent = o10
4321
o11.MeshId = "rbxasset://fonts/rightarm.mesh"
4322
o11.Scale = Vector3.new(1.10000002, 0.0500000007, 1.10000002)
4323
o11.MeshType = Enum.MeshType.FileMesh
4324
o12.Name = "part_Weld"
4325
o12.Parent = o10
4326
o12.C0 = CFrame.new(-10.0426617, -2.42000055, 15.1500034, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4327
o12.C1 = CFrame.new(15.1500034, 9.57265949, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
4328
o12.Part0 = o10
4329
o12.Part1 = o47
4330
o13.Name = "part"
4331
o13.Parent = o1
4332
o13.BrickColor = BrickColor.new("Institutional white")
4333
o13.Position = Vector3.new(-5.20483971, 4.14297819, -9.76436901)
4334
o13.Rotation = Vector3.new(-180, 0, 180)
4335
o13.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4336
o13.Velocity = Vector3.new(3.46071204e-21, 0.103487223, 5.02280749e-21)
4337
o13.CanCollide = false
4338
o13.Locked = true
4339
o13.Size = Vector3.new(0.5, 0.349999934, 1)
4340
o13.CFrame = CFrame.new(-5.20483971, 4.14297819, -9.76436901, -1.00000095, -8.07642937e-06, 6.85438181e-07, -8.22544098e-06, 1.00000119, 4.79770461e-06, -7.15280294e-07, 4.97453993e-06, -1.00000131)
4341
o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4342
o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4343
o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4344
o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4345
o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4346
o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4347
o13.Color = Color3.new(0.972549, 0.972549, 0.972549)
4348
o13.Position = Vector3.new(-5.20483971, 4.14297819, -9.76436901)
4349
o13.Velocity = Vector3.new(3.46071204e-21, 0.103487223, 5.02280749e-21)
4350
o14.Parent = o13
4351
o14.MeshId = "rbxasset://fonts/rightarm.mesh"
4352
o14.Scale = Vector3.new(1.10000002, 0.075000003, 1.10000002)
4353
o14.MeshType = Enum.MeshType.FileMesh
4354
o15.Name = "part"
4355
o15.Parent = o1
4356
o15.Material = Enum.Material.SmoothPlastic
4357
o15.BrickColor = BrickColor.new("Institutional white")
4358
o15.Position = Vector3.new(-5.50483847, 3.97847366, -9.21436501)
4359
o15.Rotation = Vector3.new(90, -20, -180)
4360
o15.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4361
o15.Velocity = Vector3.new(3.13809403e-21, 0.103487223, 4.57810219e-21)
4362
o15.CanCollide = false
4363
o15.Locked = true
4364
o15.Shape = Enum.PartType.Ball
4365
o15.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4366
o15.CFrame = CFrame.new(-5.50483847, 3.97847366, -9.21436501, -0.939696372, 6.85437442e-07, -0.342012733, 0.342012674, 4.88512751e-06, -0.93969667, 1.05914864e-06, -1.00000131, -5.00132955e-06)
4367
o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4368
o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4369
o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4370
o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4371
o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4372
o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4373
o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
4374
o15.Position = Vector3.new(-5.50483847, 3.97847366, -9.21436501)
4375
o15.Velocity = Vector3.new(3.13809403e-21, 0.103487223, 4.57810219e-21)
4376
o16.Parent = o15
4377
o16.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
4378
o16.MeshType = Enum.MeshType.Sphere
4379
o17.Name = "part_Weld"
4380
o17.Parent = o15
4381
o17.C0 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
4382
o17.C1 = CFrame.new(-10.0476608, -3.7694993, 15.1500015, -1, -8.74227766e-08, 7.64274186e-15, -8.74227766e-08, 1, -8.74227766e-08, 0, -8.74227766e-08, -1)
4383
o17.Part0 = o15
4384
o17.Part1 = o13
4385
o18.Name = "part"
4386
o18.Parent = o1
4387
o18.Material = Enum.Material.SmoothPlastic
4388
o18.BrickColor = BrickColor.new("Really black")
4389
o18.Position = Vector3.new(-5.50483751, 3.97847319, -9.21436501)
4390
o18.Rotation = Vector3.new(90, -20, -180)
4391
o18.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4392
o18.Velocity = Vector3.new(3.13809322e-21, 0.103487223, 4.57810097e-21)
4393
o18.CanCollide = false
4394
o18.Locked = true
4395
o18.Shape = Enum.PartType.Ball
4396
o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4397
o18.CFrame = CFrame.new(-5.50483751, 3.97847319, -9.21436501, -0.939696372, 6.85437442e-07, -0.342012763, 0.342012644, 4.88512751e-06, -0.93969667, 1.05914853e-06, -1.00000131, -5.00132955e-06)
4398
o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4399
o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4400
o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4401
o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4402
o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4403
o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4404
o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4405
o18.Position = Vector3.new(-5.50483751, 3.97847319, -9.21436501)
4406
o18.Velocity = Vector3.new(3.13809322e-21, 0.103487223, 4.57810097e-21)
4407
o19.Parent = o18
4408
o19.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
4409
o19.MeshType = Enum.MeshType.Cylinder
4410
o20.Name = "part_Weld"
4411
o20.Parent = o18
4412
o20.C0 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
4413
o20.C1 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
4414
o20.Part0 = o18
4415
o20.Part1 = o15
4416
o21.Name = "part"
4417
o21.Parent = o1
4418
o21.Material = Enum.Material.SmoothPlastic
4419
o21.BrickColor = BrickColor.new("Institutional white")
4420
o21.Position = Vector3.new(-4.87983847, 3.97847795, -9.21436882)
4421
o21.Rotation = Vector3.new(-90, -10, 0)
4422
o21.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4423
o21.Velocity = Vector3.new(3.13810231e-21, 0.103487223, 4.59295266e-21)
4424
o21.CanCollide = false
4425
o21.Locked = true
4426
o21.Shape = Enum.PartType.Ball
4427
o21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4428
o21.CFrame = CFrame.new(-4.87983847, 3.97847795, -9.21436882, 0.984807551, 6.85437442e-07, -0.173655033, 0.173655286, 4.88512751e-06, 0.98480773, 1.58340799e-06, -1.00000131, 4.86085492e-06)
4429
o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4430
o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4431
o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4432
o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4433
o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4434
o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4435
o21.Color = Color3.new(0.972549, 0.972549, 0.972549)
4436
o21.Position = Vector3.new(-4.87983847, 3.97847795, -9.21436882)
4437
o21.Velocity = Vector3.new(3.13810231e-21, 0.103487223, 4.59295266e-21)
4438
o22.Parent = o21
4439
o22.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
4440
o22.MeshType = Enum.MeshType.Sphere
4441
o23.Name = "part_Weld"
4442
o23.Parent = o21
4443
o23.C0 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
4444
o23.C1 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
4445
o23.Part0 = o21
4446
o23.Part1 = o18
4447
o24.Name = "part"
4448
o24.Parent = o1
4449
o24.Material = Enum.Material.SmoothPlastic
4450
o24.BrickColor = BrickColor.new("Institutional white")
4451
o24.Position = Vector3.new(-5.20483923, 3.97847795, -9.76436996)
4452
o24.Rotation = Vector3.new(0, -90, 0)
4453
o24.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4454
o24.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
4455
o24.CanCollide = false
4456
o24.Locked = true
4457
o24.Shape = Enum.PartType.Cylinder
4458
o24.Size = Vector3.new(1.11000001, 0.349999934, 1)
4459
o24.CFrame = CFrame.new(-5.20483923, 3.97847795, -9.76436996, -6.85437442e-07, -7.9870224e-06, -1.00000095, -4.88512751e-06, 1.00000119, -8.19563866e-06, 1.00000131, 5.06196238e-06, -7.15279896e-07)
4460
o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4461
o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4462
o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4463
o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4464
o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4465
o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4466
o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
4467
o24.Position = Vector3.new(-5.20483923, 3.97847795, -9.76436996)
4468
o24.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
4469
o25.Name = "part_Weld"
4470
o25.Parent = o24
4471
o25.C0 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
4472
o25.C1 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
4473
o25.Part0 = o24
4474
o25.Part1 = o21
4475
o26.Name = "part"
4476
o26.Parent = o1
4477
o26.BrickColor = BrickColor.new("Institutional white")
4478
o26.Position = Vector3.new(-5.20483637, 3.97847795, -9.76436996)
4479
o26.Rotation = Vector3.new(-180, 0, 180)
4480
o26.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4481
o26.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
4482
o26.CanCollide = false
4483
o26.Locked = true
4484
o26.Size = Vector3.new(0.5, 0.349999934, 1)
4485
o26.CFrame = CFrame.new(-5.20483637, 3.97847795, -9.76436996, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.19563866e-06, 1.00000119, 4.88512751e-06, -7.15279896e-07, 5.06196238e-06, -1.00000131)
4486
o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4487
o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4488
o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4489
o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4490
o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4491
o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4492
o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
4493
o26.Position = Vector3.new(-5.20483637, 3.97847795, -9.76436996)
4494
o26.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
4495
o27.Parent = o26
4496
o27.MeshId = "rbxasset://fonts/rightarm.mesh"
4497
o27.Scale = Vector3.new(1.10000002, 0.00999999978, 1.10000002)
4498
o27.MeshType = Enum.MeshType.FileMesh
4499
o28.Name = "part_Weld"
4500
o28.Parent = o26
4501
o28.C0 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4502
o28.C1 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
4503
o28.Part0 = o26
4504
o28.Part1 = o24
4505
o29.Name = "part"
4506
o29.Parent = o1
4507
o29.Material = Enum.Material.SmoothPlastic
4508
o29.BrickColor = BrickColor.new("Really black")
4509
o29.Position = Vector3.new(-5.50483656, 3.97847819, -10.3093672)
4510
o29.Rotation = Vector3.new(-90, -90, 0)
4511
o29.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4512
o29.Velocity = Vector3.new(3.16410034e-21, 0.103487223, 4.57811471e-21)
4513
o29.CanCollide = false
4514
o29.Locked = true
4515
o29.Shape = Enum.PartType.Ball
4516
o29.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4517
o29.CFrame = CFrame.new(-5.50483656, 3.97847819, -10.3093672, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.19563866e-06, 5.06196238e-06, -1.00000131, -7.15279896e-07)
4518
o29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4519
o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4520
o29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4521
o29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4522
o29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4523
o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4524
o29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4525
o29.Position = Vector3.new(-5.50483656, 3.97847819, -10.3093672)
4526
o29.Velocity = Vector3.new(3.16410034e-21, 0.103487223, 4.57811471e-21)
4527
o30.Parent = o29
4528
o30.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
4529
o30.MeshType = Enum.MeshType.Cylinder
4530
o31.Name = "part_Weld"
4531
o31.Parent = o29
4532
o31.C0 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
4533
o31.C1 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4534
o31.Part0 = o29
4535
o31.Part1 = o26
4536
o32.Name = "part"
4537
o32.Parent = o1
4538
o32.Material = Enum.Material.SmoothPlastic
4539
o32.BrickColor = BrickColor.new("Institutional white")
4540
o32.Position = Vector3.new(-4.87983513, 3.97848082, -9.76436806)
4541
o32.Rotation = Vector3.new(90, -50, -180)
4542
o32.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4543
o32.Velocity = Vector3.new(3.15116575e-21, 0.103487223, 4.59296074e-21)
4544
o32.CanCollide = false
4545
o32.Locked = true
4546
o32.Shape = Enum.PartType.Cylinder
4547
o32.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
4548
o32.CFrame = CFrame.new(-4.87983513, 3.97848082, -9.76436806, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.80170013e-06)
4549
o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4550
o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4551
o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4552
o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4553
o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4554
o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4555
o32.Color = Color3.new(0.972549, 0.972549, 0.972549)
4556
o32.Position = Vector3.new(-4.87983513, 3.97848082, -9.76436806)
4557
o32.Velocity = Vector3.new(3.15116575e-21, 0.103487223, 4.59296074e-21)
4558
o33.Parent = o32
4559
o33.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
4560
o34.Name = "part_Weld"
4561
o34.Parent = o32
4562
o34.C0 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4563
o34.C1 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
4564
o34.Part0 = o32
4565
o34.Part1 = o29
4566
o35.Name = "part"
4567
o35.Parent = o1
4568
o35.Material = Enum.Material.SmoothPlastic
4569
o35.BrickColor = BrickColor.new("Dark stone grey")
4570
o35.Position = Vector3.new(-5.50483608, 3.97847533, -9.76437092)
4571
o35.Rotation = Vector3.new(-90, -90, 0)
4572
o35.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4573
o35.Velocity = Vector3.new(3.15115545e-21, 0.103487223, 4.57810744e-21)
4574
o35.CanCollide = false
4575
o35.Locked = true
4576
o35.Shape = Enum.PartType.Cylinder
4577
o35.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
4578
o35.CFrame = CFrame.new(-5.50483608, 3.97847533, -9.76437092, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.16583633e-06, 5.06196238e-06, -1.00000131, -7.15279839e-07)
4579
o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4580
o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4581
o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4582
o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4583
o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4584
o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4585
o35.Color = Color3.new(0.388235, 0.372549, 0.384314)
4586
o35.Position = Vector3.new(-5.50483608, 3.97847533, -9.76437092)
4587
o35.Velocity = Vector3.new(3.15115545e-21, 0.103487223, 4.57810744e-21)
4588
o36.Parent = o35
4589
o36.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
4590
o37.Name = "part_Weld"
4591
o37.Parent = o35
4592
o37.C0 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
4593
o37.C1 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4594
o37.Part0 = o35
4595
o37.Part1 = o32
4596
o38.Name = "part"
4597
o38.Parent = o1
4598
o38.Material = Enum.Material.SmoothPlastic
4599
o38.BrickColor = BrickColor.new("Dark stone grey")
4600
o38.Position = Vector3.new(-4.87983465, 3.97848058, -9.76436806)
4601
o38.Rotation = Vector3.new(90, -50, -180)
4602
o38.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4603
o38.Velocity = Vector3.new(3.15116534e-21, 0.103487223, 4.59296034e-21)
4604
o38.CanCollide = false
4605
o38.Locked = true
4606
o38.Shape = Enum.PartType.Cylinder
4607
o38.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
4608
o38.CFrame = CFrame.new(-4.87983465, 3.97848058, -9.76436806, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.8016999e-06)
4609
o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4610
o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4611
o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4612
o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4613
o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4614
o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4615
o38.Color = Color3.new(0.388235, 0.372549, 0.384314)
4616
o38.Position = Vector3.new(-4.87983465, 3.97848058, -9.76436806)
4617
o38.Velocity = Vector3.new(3.15116534e-21, 0.103487223, 4.59296034e-21)
4618
o39.Parent = o38
4619
o39.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
4620
o40.Name = "part_Weld"
4621
o40.Parent = o38
4622
o40.C0 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4623
o40.C1 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
4624
o40.Part0 = o38
4625
o40.Part1 = o35
4626
o41.Name = "part"
4627
o41.Parent = o1
4628
o41.Material = Enum.Material.SmoothPlastic
4629
o41.BrickColor = BrickColor.new("Institutional white")
4630
o41.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
4631
o41.Rotation = Vector3.new(90, -50, -180)
4632
o41.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4633
o41.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
4634
o41.CanCollide = false
4635
o41.Locked = true
4636
o41.Shape = Enum.PartType.Ball
4637
o41.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4638
o41.CFrame = CFrame.new(-4.87983179, 3.97848272, -10.30937, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.8016999e-06)
4639
o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4640
o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4641
o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4642
o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4643
o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4644
o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4645
o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
4646
o41.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
4647
o41.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
4648
o42.Parent = o41
4649
o42.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
4650
o42.MeshType = Enum.MeshType.Sphere
4651
o43.Name = "part_Weld"
4652
o43.Parent = o41
4653
o43.C0 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4654
o43.C1 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4655
o43.Part0 = o41
4656
o43.Part1 = o38
4657
o44.Name = "part"
4658
o44.Parent = o1
4659
o44.Material = Enum.Material.SmoothPlastic
4660
o44.BrickColor = BrickColor.new("Really black")
4661
o44.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
4662
o44.Rotation = Vector3.new(90, -50, -180)
4663
o44.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4664
o44.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
4665
o44.CanCollide = false
4666
o44.Locked = true
4667
o44.Shape = Enum.PartType.Ball
4668
o44.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4669
o44.CFrame = CFrame.new(-4.87983179, 3.97848272, -10.30937, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.8016999e-06)
4670
o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4671
o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4672
o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4673
o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4674
o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4675
o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4676
o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4677
o44.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
4678
o44.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
4679
o45.Parent = o44
4680
o45.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
4681
o45.MeshType = Enum.MeshType.Cylinder
4682
o46.Name = "part_Weld"
4683
o46.Parent = o44
4684
o46.C0 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4685
o46.C1 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
4686
o46.Part0 = o44
4687
o46.Part1 = o41
4688
o47.Name = "part"
4689
o47.Parent = o1
4690
o47.Position = Vector3.new(-4.72982311, 2.69848537, -9.76437569)
4691
o47.Rotation = Vector3.new(90, 0, -90)
4692
o47.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4693
o47.Velocity = Vector3.new(7.42508095e-22, 0.103487223, 1.19173048e-21)
4694
o47.CanCollide = false
4695
o47.Locked = true
4696
o47.Size = Vector3.new(0.200000003, 0.349999934, 1)
4697
o47.CFrame = CFrame.new(-4.72982311, 2.69848537, -9.76437569, 6.85437442e-07, 1.00000095, 7.97212124e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279725e-07, -5.06196193e-06)
4698
o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4699
o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4700
o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4701
o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4702
o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4703
o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4704
o47.Position = Vector3.new(-4.72982311, 2.69848537, -9.76437569)
4705
o47.Velocity = Vector3.new(7.42508095e-22, 0.103487223, 1.19173048e-21)
4706
o48.Parent = o47
4707
o48.MeshId = "http://www.roblox.com/Asset/?id=9756362"
4708
o48.Scale = Vector3.new(0.125, 0.200000003, 0.25)
4709
o48.MeshType = Enum.MeshType.FileMesh
4710
o49.Name = "part_Weld"
4711
o49.Parent = o47
4712
o49.C0 = CFrame.new(15.1500034, 9.57265949, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
4713
o49.C1 = CFrame.new(-9.74765873, -2.1250031, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4714
o49.Part0 = o47
4715
o49.Part1 = o50
4716
o50.Name = "part"
4717
o50.Parent = o1
4718
o50.BrickColor = BrickColor.new("Institutional white")
4719
o50.Position = Vector3.new(-4.90482092, 2.4984808, -9.7643795)
4720
o50.Rotation = Vector3.new(-180, 0, 180)
4721
o50.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4722
o50.Velocity = Vector3.new(3.6614546e-22, 0.103487223, 6.55562799e-22)
4723
o50.CanCollide = false
4724
o50.Locked = true
4725
o50.Size = Vector3.new(0.5, 0.349999934, 1)
4726
o50.CFrame = CFrame.new(-4.90482092, 2.4984808, -9.7643795, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4727
o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4728
o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4729
o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4730
o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4731
o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4732
o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4733
o50.Color = Color3.new(0.972549, 0.972549, 0.972549)
4734
o50.Position = Vector3.new(-4.90482092, 2.4984808, -9.7643795)
4735
o50.Velocity = Vector3.new(3.6614546e-22, 0.103487223, 6.55562799e-22)
4736
o51.Parent = o50
4737
o51.MeshId = "rbxasset://fonts/rightarm.mesh"
4738
o51.Scale = Vector3.new(0.5, 0.174999997, 1.10000002)
4739
o51.MeshType = Enum.MeshType.FileMesh
4740
o52.Name = "part_Weld"
4741
o52.Parent = o50
4742
o52.C0 = CFrame.new(-9.74765873, -2.1250031, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4743
o52.C1 = CFrame.new(-9.92265701, -2.325001, 15.1500034, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4744
o52.Part0 = o50
4745
o52.Part1 = o53
4746
o53.Name = "part"
4747
o53.Parent = o1
4748
o53.BrickColor = BrickColor.new("Institutional white")
4749
o53.Position = Vector3.new(-5.07982111, 2.69847751, -9.76437569)
4750
o53.Rotation = Vector3.new(-180, 0, 180)
4751
o53.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4752
o53.Velocity = Vector3.new(7.42493302e-22, 0.103487223, 1.1833998e-21)
4753
o53.CanCollide = false
4754
o53.Locked = true
4755
o53.Size = Vector3.new(0.5, 0.349999934, 1)
4756
o53.CFrame = CFrame.new(-5.07982111, 2.69847751, -9.76437569, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4757
o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4758
o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4759
o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4760
o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4761
o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4762
o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4763
o53.Color = Color3.new(0.972549, 0.972549, 0.972549)
4764
o53.Position = Vector3.new(-5.07982111, 2.69847751, -9.76437569)
4765
o53.Velocity = Vector3.new(7.42493302e-22, 0.103487223, 1.1833998e-21)
4766
o54.Parent = o53
4767
o54.MeshId = "rbxasset://fonts/rightarm.mesh"
4768
o54.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
4769
o54.MeshType = Enum.MeshType.FileMesh
4770
o55.Name = "part_Weld"
4771
o55.Parent = o53
4772
o55.C0 = CFrame.new(-9.92265701, -2.325001, 15.1500034, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4773
o55.C1 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4774
o55.Part0 = o53
4775
o55.Part1 = o56
4776
o56.Name = "part"
4777
o56.Parent = o1
4778
o56.Material = Enum.Material.Granite
4779
o56.BrickColor = BrickColor.new("Alder")
4780
o56.Position = Vector3.new(-4.93982553, 2.6984787, -9.76437759)
4781
o56.Rotation = Vector3.new(-180, 0, 180)
4782
o56.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4783
o56.Velocity = Vector3.new(7.42495574e-22, 0.103487223, 1.1867268e-21)
4784
o56.CanCollide = false
4785
o56.Locked = true
4786
o56.Size = Vector3.new(0.5, 0.349999934, 1)
4787
o56.CFrame = CFrame.new(-4.93982553, 2.6984787, -9.76437759, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4788
o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4789
o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4790
o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4791
o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4792
o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4793
o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4794
o56.Color = Color3.new(0.705882, 0.501961, 1)
4795
o56.Position = Vector3.new(-4.93982553, 2.6984787, -9.76437759)
4796
o56.Velocity = Vector3.new(7.42495574e-22, 0.103487223, 1.1867268e-21)
4797
o57.Parent = o56
4798
o57.Scale = Vector3.new(0.529999971, 0.400000006, 1.09899998)
4799
o58.Name = "part_Weld"
4800
o58.Parent = o56
4801
o58.C0 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4802
o58.C1 = CFrame.new(15.4000063, 9.57265472, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
4803
o58.Part0 = o56
4804
o58.Part1 = o59
4805
o59.Name = "part"
4806
o59.Parent = o1
4807
o59.Position = Vector3.new(-4.72981882, 2.69848418, -9.51437187)
4808
o59.Rotation = Vector3.new(90, 0, -90)
4809
o59.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4810
o59.Velocity = Vector3.new(7.36570206e-22, 0.103487223, 1.19172745e-21)
4811
o59.CanCollide = false
4812
o59.Locked = true
4813
o59.Size = Vector3.new(0.200000003, 0.349999934, 1)
4814
o59.CFrame = CFrame.new(-4.72981882, 2.69848418, -9.51437187, 6.85437442e-07, 1.00000095, 7.97212124e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279725e-07, -5.06196193e-06)
4815
o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4816
o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4817
o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4818
o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4819
o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4820
o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4821
o59.Position = Vector3.new(-4.72981882, 2.69848418, -9.51437187)
4822
o59.Velocity = Vector3.new(7.36570206e-22, 0.103487223, 1.19172745e-21)
4823
o60.Parent = o59
4824
o60.MeshId = "rbxassetid://9756362"
4825
o60.Scale = Vector3.new(0.125, 0.200000003, 0.25)
4826
o60.MeshType = Enum.MeshType.FileMesh
4827
o61.Name = "part_Weld"
4828
o61.Parent = o59
4829
o61.C0 = CFrame.new(15.4000063, 9.57265472, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
4830
o61.C1 = CFrame.new(-9.64765739, -2.325001, 15.1500044, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4831
o61.Part0 = o59
4832
o61.Part1 = o62
4833
o62.Name = "part"
4834
o62.Parent = o1
4835
o62.BrickColor = BrickColor.new("Institutional white")
4836
o62.Position = Vector3.new(-4.80482149, 2.69847989, -9.76437378)
4837
o62.Rotation = Vector3.new(-180, 0, 180)
4838
o62.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4839
o62.Velocity = Vector3.new(7.42497745e-22, 0.103487223, 1.18993526e-21)
4840
o62.CanCollide = false
4841
o62.Locked = true
4842
o62.Size = Vector3.new(0.5, 0.349999934, 1)
4843
o62.CFrame = CFrame.new(-4.80482149, 2.69847989, -9.76437378, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4844
o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4845
o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4846
o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4847
o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4848
o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4849
o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4850
o62.Color = Color3.new(0.972549, 0.972549, 0.972549)
4851
o62.Position = Vector3.new(-4.80482149, 2.69847989, -9.76437378)
4852
o62.Velocity = Vector3.new(7.42497745e-22, 0.103487223, 1.18993526e-21)
4853
o63.Parent = o62
4854
o63.MeshId = "rbxasset://fonts/rightarm.mesh"
4855
o63.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
4856
o63.MeshType = Enum.MeshType.FileMesh
4857
o64.Name = "part_Weld"
4858
o64.Parent = o62
4859
o64.C0 = CFrame.new(-9.64765739, -2.325001, 15.1500044, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4860
o64.C1 = CFrame.new(-9.56266499, -2.325001, 15.6450043, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4861
o64.Part0 = o62
4862
o64.Part1 = o65
4863
o65.Name = "part"
4864
o65.Parent = o1
4865
o65.Material = Enum.Material.Granite
4866
o65.BrickColor = BrickColor.new("Alder")
4867
o65.Position = Vector3.new(-4.71982956, 2.69847822, -9.26937294)
4868
o65.Rotation = Vector3.new(-180, 0, 180)
4869
o65.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4870
o65.Velocity = Vector3.new(7.30742178e-22, 0.103487223, 1.19194868e-21)
4871
o65.CanCollide = false
4872
o65.Locked = true
4873
o65.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
4874
o65.CFrame = CFrame.new(-4.71982956, 2.69847822, -9.26937294, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4875
o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4876
o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4877
o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4878
o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4879
o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4880
o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4881
o65.Color = Color3.new(0.705882, 0.501961, 1)
4882
o65.Position = Vector3.new(-4.71982956, 2.69847822, -9.26937294)
4883
o65.Velocity = Vector3.new(7.30742178e-22, 0.103487223, 1.19194868e-21)
4884
o66.Parent = o65
4885
o66.Scale = Vector3.new(0.5, 0.5, 0.5)
4886
o67.Name = "part_Weld"
4887
o67.Parent = o65
4888
o67.C0 = CFrame.new(-9.56266499, -2.325001, 15.6450043, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4889
o67.C1 = CFrame.new(-10.0476608, -3.00500154, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4890
o67.Part0 = o65
4891
o67.Part1 = o68
4892
o68.Name = "part"
4893
o68.Parent = o1
4894
o68.BrickColor = BrickColor.new("Institutional white")
4895
o68.Position = Vector3.new(-5.20483112, 3.37847805, -9.76437283)
4896
o68.Rotation = Vector3.new(-180, 0, 180)
4897
o68.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4898
o68.Velocity = Vector3.new(2.02209834e-21, 0.103487223, 2.98923525e-21)
4899
o68.CanCollide = false
4900
o68.Locked = true
4901
o68.Size = Vector3.new(0.5, 0.349999934, 1)
4902
o68.CFrame = CFrame.new(-5.20483112, 3.37847805, -9.76437283, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
4903
o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4904
o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4905
o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4906
o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4907
o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4908
o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4909
o68.Color = Color3.new(0.972549, 0.972549, 0.972549)
4910
o68.Position = Vector3.new(-5.20483112, 3.37847805, -9.76437283)
4911
o68.Velocity = Vector3.new(2.02209834e-21, 0.103487223, 2.98923525e-21)
4912
o69.Parent = o68
4913
o69.MeshId = "rbxasset://fonts/rightarm.mesh"
4914
o69.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
4915
o69.MeshType = Enum.MeshType.FileMesh
4916
o70.Name = "part_Weld"
4917
o70.Parent = o68
4918
o70.C0 = CFrame.new(-10.0476608, -3.00500154, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4919
o70.C1 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
4920
o70.Part0 = o68
4921
o70.Part1 = o71
4922
o71.Name = "part"
4923
o71.Parent = o1
4924
o71.Material = Enum.Material.SmoothPlastic
4925
o71.BrickColor = BrickColor.new("Really black")
4926
o71.Position = Vector3.new(-4.87983799, 3.97847748, -9.21436882)
4927
o71.Rotation = Vector3.new(-90, -10, 0)
4928
o71.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4929
o71.Velocity = Vector3.new(3.1381015e-21, 0.103487223, 4.59295186e-21)
4930
o71.CanCollide = false
4931
o71.Locked = true
4932
o71.Shape = Enum.PartType.Ball
4933
o71.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
4934
o71.CFrame = CFrame.new(-4.87983799, 3.97847748, -9.21436882, 0.984807551, 6.85437442e-07, -0.173655033, 0.173655257, 4.88512751e-06, 0.98480773, 1.58340777e-06, -1.00000131, 4.86085446e-06)
4935
o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4936
o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4937
o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4938
o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4939
o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4940
o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4941
o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
4942
o71.Position = Vector3.new(-4.87983799, 3.97847748, -9.21436882)
4943
o71.Velocity = Vector3.new(3.1381015e-21, 0.103487223, 4.59295186e-21)
4944
o72.Parent = o71
4945
o72.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
4946
o72.MeshType = Enum.MeshType.Cylinder
4947
o73.Name = "part_Weld"
4948
o73.Parent = o71
4949
o73.C0 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
4950
o73.C1 = CFrame.new(15.1500015, 9.69765949, 2.77500439, 0, 0, -1, 1, 0, 0, 0, -1, 0)
4951
o73.Part0 = o71
4952
o73.Part1 = o74
4953
o74.Name = "part"
4954
o74.Parent = o1
4955
o74.Material = Enum.Material.SmoothPlastic
4956
o74.BrickColor = BrickColor.new("Institutional white")
4957
o74.Position = Vector3.new(-4.8548274, 3.14848328, -9.76437378)
4958
o74.Rotation = Vector3.new(90, 0, -90)
4959
o74.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4960
o74.Velocity = Vector3.new(1.58930103e-21, 0.103487223, 2.38575852e-21)
4961
o74.CanCollide = false
4962
o74.Locked = true
4963
o74.Size = Vector3.new(0.799999952, 0.349999934, 1)
4964
o74.CFrame = CFrame.new(-4.8548274, 3.14848328, -9.76437378, 6.85437442e-07, 1.00000095, 7.9870224e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279839e-07, -5.06196193e-06)
4965
o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4966
o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4967
o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4968
o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4969
o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
4970
o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
4971
o74.Color = Color3.new(0.972549, 0.972549, 0.972549)
4972
o74.Position = Vector3.new(-4.8548274, 3.14848328, -9.76437378)
4973
o74.Velocity = Vector3.new(1.58930103e-21, 0.103487223, 2.38575852e-21)
4974
o75.Parent = o74
4975
o75.Scale = Vector3.new(1.10000002, 1.125, 1)
4976
o75.MeshType = Enum.MeshType.Wedge
4977
o76.Name = "part_Weld"
4978
o76.Parent = o74
4979
o76.C0 = CFrame.new(15.1500015, 9.69765949, 2.77500439, 0, 0, -1, 1, 0, 0, 0, -1, 0)
4980
o76.C1 = CFrame.new(-9.56266499, -2.325001, 14.6550045, -1, 0, 0, 0, 1, 0, 0, 0, -1)
4981
o76.Part0 = o74
4982
o76.Part1 = o77
4983
o77.Name = "part"
4984
o77.Parent = o1
4985
o77.Material = Enum.Material.Granite
4986
o77.BrickColor = BrickColor.new("Alder")
4987
o77.Position = Vector3.new(-4.71982861, 2.69848275, -10.2593737)
4988
o77.Rotation = Vector3.new(-180, 0, 180)
4989
o77.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
4990
o77.Velocity = Vector3.new(7.54255635e-22, 0.103487223, 1.1919607e-21)
4991
o77.CanCollide = false
4992
o77.Locked = true
4993
o77.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
4994
o77.CFrame = CFrame.new(-4.71982861, 2.69848275, -10.2593737, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
4995
o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
4996
o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
4997
o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
4998
o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
4999
o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5000
o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5001
o77.Color = Color3.new(0.705882, 0.501961, 1)
5002
o77.Position = Vector3.new(-4.71982861, 2.69848275, -10.2593737)
5003
o77.Velocity = Vector3.new(7.54255635e-22, 0.103487223, 1.1919607e-21)
5004
o78.Parent = o77
5005
o78.Scale = Vector3.new(0.5, 0.5, 0.5)
5006
o79.Name = "part_Weld"
5007
o79.Parent = o77
5008
o79.C0 = CFrame.new(-9.56266499, -2.325001, 14.6550045, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5009
o79.C1 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5010
o79.Part0 = o77
5011
o79.Part1 = o80
5012
o80.Name = "part"
5013
o80.Parent = o1
5014
o80.BrickColor = BrickColor.new("Institutional white")
5015
o80.Position = Vector3.new(-4.93982553, 2.69847846, -9.76437569)
5016
o80.Rotation = Vector3.new(-180, 0, 180)
5017
o80.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5018
o80.Velocity = Vector3.new(7.42495221e-22, 0.103487223, 1.1867261e-21)
5019
o80.CanCollide = false
5020
o80.Locked = true
5021
o80.Size = Vector3.new(0.5, 0.349999934, 1)
5022
o80.CFrame = CFrame.new(-4.93982553, 2.69847846, -9.76437569, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
5023
o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5024
o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5025
o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5026
o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5027
o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5028
o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5029
o80.Color = Color3.new(0.972549, 0.972549, 0.972549)
5030
o80.Position = Vector3.new(-4.93982553, 2.69847846, -9.76437569)
5031
o80.Velocity = Vector3.new(7.42495221e-22, 0.103487223, 1.1867261e-21)
5032
o81.Parent = o80
5033
o81.MeshId = "rbxasset://fonts/rightarm.mesh"
5034
o81.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
5035
o81.MeshType = Enum.MeshType.FileMesh
5036
o82.Name = "part_Weld"
5037
o82.Parent = o80
5038
o82.C0 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5039
o82.C1 = CFrame.new(14.9000063, 9.57265663, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
5040
o82.Part0 = o80
5041
o82.Part1 = o83
5042
o83.Name = "part"
5043
o83.Parent = o1
5044
o83.Position = Vector3.new(-4.72982025, 2.69848633, -10.0143709)
5045
o83.Rotation = Vector3.new(90, 0, -90)
5046
o83.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5047
o83.Velocity = Vector3.new(7.48445478e-22, 0.103487223, 1.191733e-21)
5048
o83.CanCollide = false
5049
o83.Locked = true
5050
o83.Size = Vector3.new(0.200000003, 0.349999934, 1)
5051
o83.CFrame = CFrame.new(-4.72982025, 2.69848633, -10.0143709, 6.85437442e-07, 1.00000095, 7.9870224e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279839e-07, -5.06196193e-06)
5052
o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5053
o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5054
o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5055
o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5056
o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5057
o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5058
o83.Position = Vector3.new(-4.72982025, 2.69848633, -10.0143709)
5059
o83.Velocity = Vector3.new(7.48445478e-22, 0.103487223, 1.191733e-21)
5060
o84.Parent = o83
5061
o84.MeshId = "http://www.roblox.com/Asset/?id=9756362"
5062
o84.Scale = Vector3.new(0.125, 0.200000003, 0.25)
5063
o84.MeshType = Enum.MeshType.FileMesh
5064
o85.Name = "part_Weld"
5065
o85.Parent = o83
5066
o85.C0 = CFrame.new(14.9000063, 9.57265663, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
5067
o85.C1 = CFrame.new(-10.3526583, -3.00500154, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5068
o85.Part0 = o83
5069
o85.Part1 = o86
5070
o86.Name = "part"
5071
o86.Parent = o1
5072
o86.BrickColor = BrickColor.new("Institutional white")
5073
o86.Position = Vector3.new(-5.50982809, 3.37847519, -9.76437378)
5074
o86.Rotation = Vector3.new(-180, 0, 180)
5075
o86.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5076
o86.Velocity = Vector3.new(2.02209309e-21, 0.103487223, 2.98198651e-21)
5077
o86.CanCollide = false
5078
o86.Locked = true
5079
o86.Size = Vector3.new(0.5, 0.349999934, 1)
5080
o86.CFrame = CFrame.new(-5.50982809, 3.37847519, -9.76437378, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
5081
o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5082
o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5083
o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5084
o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5085
o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5086
o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5087
o86.Color = Color3.new(0.972549, 0.972549, 0.972549)
5088
o86.Position = Vector3.new(-5.50982809, 3.37847519, -9.76437378)
5089
o86.Velocity = Vector3.new(2.02209309e-21, 0.103487223, 2.98198651e-21)
5090
o87.Parent = o86
5091
o87.MeshId = "rbxasset://fonts/rightarm.mesh"
5092
o87.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
5093
o87.MeshType = Enum.MeshType.FileMesh
5094
o88.Name = "part_Weld"
5095
o88.Parent = o86
5096
o88.C0 = CFrame.new(-10.3526583, -3.00500154, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5097
o88.C1 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
5098
o88.Part0 = o86
5099
o88.Part1 = o89
5100
o89.Name = "part"
5101
o89.Parent = o1
5102
o89.Material = Enum.Material.Granite
5103
o89.BrickColor = BrickColor.new("Alder")
5104
o89.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
5105
o89.Rotation = Vector3.new(0, -90, 0)
5106
o89.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5107
o89.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
5108
o89.CanCollide = false
5109
o89.Locked = true
5110
o89.Shape = Enum.PartType.Cylinder
5111
o89.Size = Vector3.new(1.12, 0.300000012, 0.949999988)
5112
o89.CFrame = CFrame.new(-5.2048378, 3.97847748, -9.76436996, -6.85437442e-07, -7.9870224e-06, -1.00000095, -4.88512751e-06, 1.00000119, -8.16583633e-06, 1.00000131, 5.06196193e-06, -7.15279839e-07)
5113
o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5114
o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5115
o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5116
o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5117
o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5118
o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5119
o89.Color = Color3.new(0.705882, 0.501961, 1)
5120
o89.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
5121
o89.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
5122
o90.Name = "part_Weld"
5123
o90.Parent = o89
5124
o90.C0 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
5125
o90.C1 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5126
o90.Part0 = o89
5127
o90.Part1 = o91
5128
o91.Name = "part"
5129
o91.Parent = o1
5130
o91.BrickColor = BrickColor.new("Institutional white")
5131
o91.Position = Vector3.new(-5.20483494, 3.97847748, -9.76436996)
5132
o91.Rotation = Vector3.new(-180, 0, 180)
5133
o91.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5134
o91.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
5135
o91.CanCollide = false
5136
o91.Locked = true
5137
o91.Size = Vector3.new(0.5, 0.349999934, 1)
5138
o91.CFrame = CFrame.new(-5.20483494, 3.97847748, -9.76436996, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
5139
o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5140
o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5141
o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5142
o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5143
o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5144
o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5145
o91.Color = Color3.new(0.972549, 0.972549, 0.972549)
5146
o91.Position = Vector3.new(-5.20483494, 3.97847748, -9.76436996)
5147
o91.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
5148
o92.Parent = o91
5149
o92.MeshId = "rbxasset://fonts/rightarm.mesh"
5150
o92.Scale = Vector3.new(0.800000012, 0.0500000007, 1.10000002)
5151
o92.MeshType = Enum.MeshType.FileMesh
5152
o93.Name = "part_Weld"
5153
o93.Parent = o91
5154
o93.C0 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
5155
o93.C1 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
5156
o93.Part0 = o91
5157
o93.Part1 = o94
5158
o94.Name = "part"
5159
o94.Parent = o1
5160
o94.Material = Enum.Material.Neon
5161
o94.BrickColor = BrickColor.new("Alder")
5162
o94.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
5163
o94.Rotation = Vector3.new(0, -90, 0)
5164
o94.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5165
o94.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
5166
o94.CanCollide = false
5167
o94.Locked = true
5168
o94.Shape = Enum.PartType.Cylinder
5169
o94.Size = Vector3.new(1.11500001, 0.307500005, 0.957499981)
5170
o94.CFrame = CFrame.new(-5.2048378, 3.97847748, -9.76436996, -6.85437442e-07, -7.9870224e-06, -1.00000095, -4.88512751e-06, 1.00000119, -8.16583633e-06, 1.00000131, 5.06196193e-06, -7.15279839e-07)
5171
o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5172
o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5173
o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5174
o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5175
o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5176
o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5177
o94.Color = Color3.new(0.705882, 0.501961, 1)
5178
o94.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
5179
o94.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
5180
o95.Name = "part_Weld"
5181
o95.Parent = o94
5182
o95.C0 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
5183
o95.C1 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
5184
o95.Part0 = o94
5185
o95.Part1 = o96
5186
o96.Name = "part"
5187
o96.Parent = o1
5188
o96.Material = Enum.Material.SmoothPlastic
5189
o96.BrickColor = BrickColor.new("Institutional white")
5190
o96.Position = Vector3.new(-5.50483561, 3.97847509, -9.76437092)
5191
o96.Rotation = Vector3.new(-90, -90, 0)
5192
o96.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5193
o96.Velocity = Vector3.new(3.15115525e-21, 0.103487223, 4.57810703e-21)
5194
o96.CanCollide = false
5195
o96.Locked = true
5196
o96.Shape = Enum.PartType.Cylinder
5197
o96.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
5198
o96.CFrame = CFrame.new(-5.50483561, 3.97847509, -9.76437092, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.16583633e-06, 5.06196193e-06, -1.00000131, -7.15279839e-07)
5199
o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5200
o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5201
o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5202
o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5203
o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5204
o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5205
o96.Color = Color3.new(0.972549, 0.972549, 0.972549)
5206
o96.Position = Vector3.new(-5.50483561, 3.97847509, -9.76437092)
5207
o96.Velocity = Vector3.new(3.15115525e-21, 0.103487223, 4.57810703e-21)
5208
o97.Parent = o96
5209
o97.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
5210
o98.Name = "part_Weld"
5211
o98.Parent = o96
5212
o98.C0 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
5213
o98.C1 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
5214
o98.Part0 = o96
5215
o98.Part1 = o2
5216
o99.Parent = o1
5217
o99.Material = Enum.Material.SmoothPlastic
5218
o99.BrickColor = BrickColor.new("Institutional white")
5219
o99.Position = Vector3.new(-5.39680243, 4.27047253, -9.74921799)
5220
o99.Rotation = Vector3.new(90, 60, -90)
5221
o99.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5222
o99.Velocity = Vector3.new(3.70026969e-21, 0.103487223, 5.35738831e-21)
5223
o99.CanCollide = false
5224
o99.Locked = true
5225
o99.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
5226
o99.CFrame = CFrame.new(-5.39680243, 4.27047253, -9.74921799, 6.09625204e-07, 0.499993622, 0.866030216, 4.64916138e-06, 0.866030395, -0.499993443, -1.00000095, 4.45763089e-06, -1.97251347e-06)
5227
o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5228
o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5229
o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5230
o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5231
o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5232
o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5233
o99.Color = Color3.new(0.972549, 0.972549, 0.972549)
5234
o99.Position = Vector3.new(-5.39680243, 4.27047253, -9.74921799)
5235
o99.Velocity = Vector3.new(3.70026969e-21, 0.103487223, 5.35738831e-21)
5236
o100.Parent = o99
5237
o100.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5238
o101.Name = "Part_Weld"
5239
o101.Parent = o99
5240
o101.C0 = CFrame.new(15.1651592, 1.74491942, 10.8162794, -1.41065001e-07, -2.0062032e-07, -1, 0.50000006, 0.866025388, -2.44274815e-07, 0.866025388, -0.50000006, -2.18556959e-08)
5241
o101.C1 = CFrame.new(10.5048914, -11.0150871, 10.0121317, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
5242
o101.Part0 = o99
5243
o101.Part1 = o134
5244
o102.Parent = o1
5245
o102.Material = Enum.Material.Neon
5246
o102.BrickColor = BrickColor.new("Alder")
5247
o102.Position = Vector3.new(-5.22433519, 3.95214248, -9.26237965)
5248
o102.Rotation = Vector3.new(0, 0, 90)
5249
o102.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5250
o102.Velocity = Vector3.new(3.089687e-21, 0.103487223, 4.51472391e-21)
5251
o102.CanCollide = false
5252
o102.Locked = true
5253
o102.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5254
o102.CFrame = CFrame.new(-5.22433519, 3.95214248, -9.26237965, -7.95722008e-06, -1.00000072, -5.96412463e-07, 1.00000119, -8.404254e-06, -5.07036157e-06, 5.15976762e-06, -4.70768953e-07, 1.00000107)
5255
o102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5256
o102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5257
o102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5258
o102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5259
o102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5260
o102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5261
o102.Color = Color3.new(0.705882, 0.501961, 1)
5262
o102.Position = Vector3.new(-5.22433519, 3.95214248, -9.26237965)
5263
o102.Velocity = Vector3.new(3.089687e-21, 0.103487223, 4.51472391e-21)
5264
o103.Parent = o102
5265
o103.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
5266
o103.MeshType = Enum.MeshType.Brick
5267
o104.Parent = o1
5268
o104.Material = Enum.Material.Neon
5269
o104.BrickColor = BrickColor.new("Alder")
5270
o104.Position = Vector3.new(-5.14973497, 4.00834274, -9.26238155)
5271
o104.Rotation = Vector3.new(0, 0, -45)
5272
o104.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5273
o104.Velocity = Vector3.new(3.19544313e-21, 0.103487223, 4.66598811e-21)
5274
o104.CanCollide = false
5275
o104.Locked = true
5276
o104.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5277
o104.CFrame = CFrame.new(-5.14973497, 4.00834274, -9.26238155, 0.707093179, 0.707121491, -4.61931393e-07, -0.707121432, 0.707093775, -4.7683684e-06, -3.19727906e-06, 3.67266625e-06, 1.00000107)
5278
o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5279
o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5280
o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5281
o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5282
o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5283
o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5284
o104.Color = Color3.new(0.705882, 0.501961, 1)
5285
o104.Position = Vector3.new(-5.14973497, 4.00834274, -9.26238155)
5286
o104.Velocity = Vector3.new(3.19544313e-21, 0.103487223, 4.66598811e-21)
5287
o105.Parent = o104
5288
o105.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
5289
o105.MeshType = Enum.MeshType.Brick
5290
o106.Name = "Part_Weld"
5291
o106.Parent = o104
5292
o106.C0 = CFrame.new(9.63592529, 4.49584293, -15.6519928, 0.70708704, -0.707126498, -9.22794854e-08, 0.707126498, 0.70708704, -3.05830895e-07, 2.81510779e-07, 1.50995803e-07, 1)
5293
o106.C1 = CFrame.new(-3.57867122, -10.0671654, -15.6519947, -4.37113883e-08, 1, 1.50995803e-07, -1, -4.37114096e-08, 1.47027421e-07, 1.47027421e-07, -1.50995803e-07, 1)
5294
o106.Part0 = o104
5295
o106.Part1 = o102
5296
o107.Parent = o1
5297
o107.Material = Enum.Material.Neon
5298
o107.BrickColor = BrickColor.new("Alder")
5299
o107.Position = Vector3.new(-5.2697382, 4.02784061, -9.26237965)
5300
o107.Rotation = Vector3.new(0, 0, 30)
5301
o107.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5302
o107.Velocity = Vector3.new(3.23213352e-21, 0.103487223, 4.7150034e-21)
5303
o107.CanCollide = false
5304
o107.Locked = true
5305
o107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5306
o107.CFrame = CFrame.new(-5.2697382, 4.02784061, -9.26237965, 0.866036117, -0.499982923, -6.26217172e-07, 0.499983519, 0.866036236, -4.76836976e-06, 2.86228374e-06, 3.9567517e-06, 1.00000107)
5307
o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5308
o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5309
o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5310
o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5311
o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5312
o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5313
o107.Color = Color3.new(0.705882, 0.501961, 1)
5314
o107.Position = Vector3.new(-5.2697382, 4.02784061, -9.26237965)
5315
o107.Velocity = Vector3.new(3.23213352e-21, 0.103487223, 4.7150034e-21)
5316
o108.Parent = o107
5317
o108.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
5318
o108.MeshType = Enum.MeshType.Brick
5319
o109.Name = "Part_Weld"
5320
o109.Parent = o107
5321
o109.C0 = CFrame.new(6.93078899, -8.22086239, -15.6519957, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
5322
o109.C1 = CFrame.new(9.63592529, 4.49584293, -15.6519928, 0.70708704, -0.707126498, -9.22794854e-08, 0.707126498, 0.70708704, -3.05830895e-07, 2.81510779e-07, 1.50995803e-07, 1)
5323
o109.Part0 = o107
5324
o109.Part1 = o104
5325
o110.Parent = o1
5326
o110.Material = Enum.Material.Neon
5327
o110.BrickColor = BrickColor.new("Alder")
5328
o110.Position = Vector3.new(-5.1772356, 4.01984167, -9.26238155)
5329
o110.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5330
o110.Velocity = Vector3.new(3.2170813e-21, 0.103487223, 4.69592251e-21)
5331
o110.CanCollide = false
5332
o110.Locked = true
5333
o110.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5334
o110.CFrame = CFrame.new(-5.1772356, 4.01984167, -9.26238155, 1.00000072, 2.01165676e-05, -5.5471196e-07, -1.96397305e-05, 1.00000107, -4.76836931e-06, 4.28929297e-07, 4.85778719e-06, 1.00000107)
5335
o110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5336
o110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5337
o110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5338
o110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5339
o110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5340
o110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5341
o110.Color = Color3.new(0.705882, 0.501961, 1)
5342
o110.Position = Vector3.new(-5.1772356, 4.01984167, -9.26238155)
5343
o110.Velocity = Vector3.new(3.2170813e-21, 0.103487223, 4.69592251e-21)
5344
o111.Parent = o110
5345
o111.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
5346
o111.MeshType = Enum.MeshType.Brick
5347
o112.Name = "Part_Weld"
5348
o112.Parent = o110
5349
o112.C0 = CFrame.new(10.0201683, -3.64608431, -15.6519938, 1, -2.80459699e-05, -1.88726005e-07, 2.80459699e-05, 1, -1.51001089e-07, 1.8873024e-07, 1.50995803e-07, 1)
5350
o112.C1 = CFrame.new(6.93078899, -8.22086239, -15.6519957, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
5351
o112.Part0 = o110
5352
o112.Part1 = o107
5353
o113.Parent = o1
5354
o113.Material = Enum.Material.Neon
5355
o113.BrickColor = BrickColor.new("Alder")
5356
o113.Position = Vector3.new(-5.17823505, 3.98884153, -9.26238155)
5357
o113.Rotation = Vector3.new(0, 0, 15)
5358
o113.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5359
o113.Velocity = Vector3.new(3.15874608e-21, 0.103487223, 4.61343831e-21)
5360
o113.CanCollide = false
5361
o113.Locked = true
5362
o113.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5363
o113.CFrame = CFrame.new(-5.17823505, 3.98884153, -9.26238155, 0.965931714, -0.258799791, -5.88152034e-07, 0.258800358, 0.965931952, -4.76836976e-06, 1.70390251e-06, 4.57259284e-06, 1.00000107)
5364
o113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5365
o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5366
o113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5367
o113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5368
o113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5369
o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5370
o113.Color = Color3.new(0.705882, 0.501961, 1)
5371
o113.Position = Vector3.new(-5.17823505, 3.98884153, -9.26238155)
5372
o113.Velocity = Vector3.new(3.15874608e-21, 0.103487223, 4.61343831e-21)
5373
o114.Parent = o113
5374
o114.Scale = Vector3.new(0.100000001, 0.104347944, 0.606715083)
5375
o114.MeshType = Enum.MeshType.Brick
5376
o115.Name = "Part_Weld"
5377
o115.Parent = o113
5378
o115.C0 = CFrame.new(8.74405193, -6.08557272, -15.6519938, 0.965933084, 0.258791953, -1.89076431e-07, -0.258791953, 0.965933084, -1.05663986e-07, 1.55290195e-07, 1.50995803e-07, 1)
5379
o115.C1 = CFrame.new(10.0201683, -3.64608431, -15.6519938, 1, -2.80459699e-05, -1.88726005e-07, 2.80459699e-05, 1, -1.51001089e-07, 1.8873024e-07, 1.50995803e-07, 1)
5380
o115.Part0 = o113
5381
o115.Part1 = o110
5382
o116.Parent = o1
5383
o116.Material = Enum.Material.Neon
5384
o116.BrickColor = BrickColor.new("Alder")
5385
o116.Position = Vector3.new(-5.20673466, 4.01134062, -9.26238155)
5386
o116.Rotation = Vector3.new(0, 0, 30)
5387
o116.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5388
o116.Velocity = Vector3.new(3.20108416e-21, 0.103487223, 4.67260919e-21)
5389
o116.CanCollide = false
5390
o116.Locked = true
5391
o116.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5392
o116.CFrame = CFrame.new(-5.20673466, 4.01134062, -9.26238155, 0.866036057, -0.499982893, -6.26217172e-07, 0.49998349, 0.866036117, -4.76837022e-06, 2.86228351e-06, 3.9567517e-06, 1.00000107)
5393
o116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5394
o116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5395
o116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5396
o116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5397
o116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5398
o116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5399
o116.Color = Color3.new(0.705882, 0.501961, 1)
5400
o116.Position = Vector3.new(-5.20673466, 4.01134062, -9.26238155)
5401
o116.Velocity = Vector3.new(3.20108416e-21, 0.103487223, 4.67260919e-21)
5402
o117.Parent = o116
5403
o117.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
5404
o117.MeshType = Enum.MeshType.Brick
5405
o118.Name = "Part_Weld"
5406
o118.Parent = o116
5407
o118.C0 = CFrame.new(6.88447571, -8.17507362, -15.6519938, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
5408
o118.C1 = CFrame.new(8.74405193, -6.08557272, -15.6519938, 0.965933084, 0.258791953, -1.89076431e-07, -0.258791953, 0.965933084, -1.05663986e-07, 1.55290195e-07, 1.50995803e-07, 1)
5409
o118.Part0 = o116
5410
o118.Part1 = o113
5411
o119.Parent = o1
5412
o119.Material = Enum.Material.Neon
5413
o119.BrickColor = BrickColor.new("Alder")
5414
o119.Position = Vector3.new(-5.1449132, 4.02784538, -10.2693834)
5415
o119.Rotation = Vector3.new(-180, 0, -150)
5416
o119.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5417
o119.Velocity = Vector3.new(3.25605088e-21, 0.103487223, 4.71797972e-21)
5418
o119.CanCollide = false
5419
o119.Locked = true
5420
o119.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5421
o119.CFrame = CFrame.new(-5.1449132, 4.02784538, -10.2693834, -0.866043985, 0.499969125, 7.13637633e-07, 0.499968916, 0.866044521, 5.07036293e-06, 2.07053245e-06, 4.76254445e-06, -1.00000107)
5422
o119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5423
o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5424
o119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5425
o119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5426
o119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5427
o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5428
o119.Color = Color3.new(0.705882, 0.501961, 1)
5429
o119.Position = Vector3.new(-5.1449132, 4.02784538, -10.2693834)
5430
o119.Velocity = Vector3.new(3.25605088e-21, 0.103487223, 4.71797972e-21)
5431
o120.Parent = o119
5432
o120.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
5433
o120.MeshType = Enum.MeshType.Brick
5434
o121.Name = "Part_Weld"
5435
o121.Parent = o119
5436
o121.C0 = CFrame.new(-10.4768772, 1.82880092, 14.6449928, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
5437
o121.C1 = CFrame.new(6.88447571, -8.17507362, -15.6519938, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
5438
o121.Part0 = o119
5439
o121.Part1 = o116
5440
o122.Parent = o1
5441
o122.Material = Enum.Material.Neon
5442
o122.BrickColor = BrickColor.new("Alder")
5443
o122.Position = Vector3.new(-5.19031334, 3.95214534, -10.2693834)
5444
o122.Rotation = Vector3.new(-180, 0, -90)
5445
o122.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5446
o122.Velocity = Vector3.new(3.11360072e-21, 0.103487223, 4.51553938e-21)
5447
o122.CanCollide = false
5448
o122.Locked = true
5449
o122.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5450
o122.CFrame = CFrame.new(-5.19031334, 3.95214534, -10.2693834, -7.84991971e-06, 1.0000006, 6.83837698e-07, 1.00000095, 8.29694363e-06, 4.76837067e-06, 4.85777537e-06, 5.58190891e-07, -1.00000107)
5451
o122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5452
o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5453
o122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5454
o122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5455
o122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5456
o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5457
o122.Color = Color3.new(0.705882, 0.501961, 1)
5458
o122.Position = Vector3.new(-5.19031334, 3.95214534, -10.2693834)
5459
o122.Velocity = Vector3.new(3.11360072e-21, 0.103487223, 4.51553938e-21)
5460
o123.Parent = o122
5461
o123.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
5462
o123.MeshType = Enum.MeshType.Brick
5463
o124.Name = "Part_Weld"
5464
o124.Parent = o122
5465
o124.C0 = CFrame.new(-3.57866549, 10.0331469, 14.6449938, 7.54979013e-08, 1, -1.50995803e-07, 1, -7.54979084e-08, -5.96046341e-08, -5.96046448e-08, -1.50995803e-07, -1)
5466
o124.C1 = CFrame.new(-10.4768772, 1.82880092, 14.6449928, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
5467
o124.Part0 = o122
5468
o124.Part1 = o119
5469
o125.Parent = o1
5470
o125.Material = Enum.Material.Neon
5471
o125.BrickColor = BrickColor.new("Alder")
5472
o125.Position = Vector3.new(-5.23741388, 4.01984453, -10.2693815)
5473
o125.Rotation = Vector3.new(-180, 0, 180)
5474
o125.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5475
o125.Velocity = Vector3.new(3.24099502e-21, 0.103487223, 4.6945012e-21)
5476
o125.CanCollide = false
5477
o125.Locked = true
5478
o125.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5479
o125.CFrame = CFrame.new(-5.23741388, 4.01984453, -10.2693815, -1.0000006, -3.59714031e-05, 6.42132477e-07, -3.6418438e-05, 1.00000095, 5.07036202e-06, -5.16633122e-07, 5.15975262e-06, -1.00000107)
5480
o125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5481
o125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5482
o125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5483
o125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5484
o125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5485
o125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5486
o125.Color = Color3.new(0.705882, 0.501961, 1)
5487
o125.Position = Vector3.new(-5.23741388, 4.01984453, -10.2693815)
5488
o125.Velocity = Vector3.new(3.24099502e-21, 0.103487223, 4.6945012e-21)
5489
o126.Parent = o125
5490
o126.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
5491
o126.MeshType = Enum.MeshType.Brick
5492
o127.Name = "Part_Weld"
5493
o127.Parent = o125
5494
o127.C0 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
5495
o127.C1 = CFrame.new(-3.57866549, 10.0331469, 14.6449938, 7.54979013e-08, 1, -1.50995803e-07, 1, -7.54979084e-08, -5.96046341e-08, -5.96046448e-08, -1.50995803e-07, -1)
5496
o127.Part0 = o125
5497
o127.Part1 = o122
5498
o128.Parent = o1
5499
o128.Material = Enum.Material.Neon
5500
o128.BrickColor = BrickColor.new("Alder")
5501
o128.Position = Vector3.new(-5.26491404, 4.0083437, -10.2693815)
5502
o128.Rotation = Vector3.new(-180, 0, 135)
5503
o128.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5504
o128.Velocity = Vector3.new(3.21935302e-21, 0.103487223, 4.66325615e-21)
5505
o128.CanCollide = false
5506
o128.Locked = true
5507
o128.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5508
o128.CFrame = CFrame.new(-5.26491404, 4.0083437, -10.2693815, -0.707081914, -0.707132578, 5.49351853e-07, -0.707133055, 0.707081795, 5.07036111e-06, -3.94820654e-06, 3.34878973e-06, -1.00000107)
5509
o128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5510
o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5511
o128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5512
o128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5513
o128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5514
o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5515
o128.Color = Color3.new(0.705882, 0.501961, 1)
5516
o128.Position = Vector3.new(-5.26491404, 4.0083437, -10.2693815)
5517
o128.Velocity = Vector3.new(3.21935302e-21, 0.103487223, 4.66325615e-21)
5518
o129.Parent = o128
5519
o129.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
5520
o129.MeshType = Enum.MeshType.Brick
5521
o130.Name = "Part_Weld"
5522
o130.Parent = o128
5523
o130.C0 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
5524
o130.C1 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
5525
o130.Part0 = o128
5526
o130.Part1 = o125
5527
o131.Parent = o1
5528
o131.Material = Enum.Material.Neon
5529
o131.BrickColor = BrickColor.new("Alder")
5530
o131.Position = Vector3.new(-5.26491499, 4.00834417, -10.2693815)
5531
o131.Rotation = Vector3.new(-180, 0, 135)
5532
o131.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5533
o131.Velocity = Vector3.new(3.21935382e-21, 0.103487223, 4.66325736e-21)
5534
o131.CanCollide = false
5535
o131.Locked = true
5536
o131.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5537
o131.CFrame = CFrame.new(-5.26491499, 4.00834417, -10.2693815, -0.707081914, -0.707132578, 5.49351853e-07, -0.707133055, 0.707081795, 5.07036111e-06, -3.94820654e-06, 3.34878973e-06, -1.00000107)
5538
o131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5539
o131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5540
o131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5541
o131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5542
o131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5543
o131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5544
o131.Color = Color3.new(0.705882, 0.501961, 1)
5545
o131.Position = Vector3.new(-5.26491499, 4.00834417, -10.2693815)
5546
o131.Velocity = Vector3.new(3.21935382e-21, 0.103487223, 4.66325736e-21)
5547
o132.Parent = o131
5548
o132.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
5549
o132.MeshType = Enum.MeshType.Brick
5550
o133.Name = "Part_Weld"
5551
o133.Parent = o131
5552
o133.C0 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
5553
o133.C1 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
5554
o133.Part0 = o131
5555
o133.Part1 = o128
5556
o134.Parent = o1
5557
o134.Material = Enum.Material.SmoothPlastic
5558
o134.BrickColor = BrickColor.new("Institutional white")
5559
o134.Position = Vector3.new(-5.1693058, 4.66037607, -10.3093281)
5560
o134.Rotation = Vector3.new(30, 90, 0)
5561
o134.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5562
o134.Velocity = Vector3.new(4.44727679e-21, 0.103487223, 6.39993437e-21)
5563
o134.CanCollide = false
5564
o134.Locked = true
5565
o134.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
5566
o134.CFrame = CFrame.new(-5.1693058, 4.66037607, -10.3093281, -3.3740148e-06, -7.26962935e-06, 1.00000095, 0.500004888, 0.866023839, 8.27409349e-06, -0.86602366, 0.500004947, 6.30215709e-07)
5567
o134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5568
o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5569
o134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5570
o134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5571
o134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5572
o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5573
o134.Color = Color3.new(0.972549, 0.972549, 0.972549)
5574
o134.Position = Vector3.new(-5.1693058, 4.66037607, -10.3093281)
5575
o134.Velocity = Vector3.new(4.44727679e-21, 0.103487223, 6.39993437e-21)
5576
o135.Parent = o134
5577
o135.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5578
o136.Name = "Part_Weld"
5579
o136.Parent = o134
5580
o136.C0 = CFrame.new(10.5048914, -11.0150871, 10.0121317, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
5581
o136.C1 = CFrame.new(15.1651602, -3.78999591, 10.2126322, -4.37113883e-08, -2.08616257e-07, -1, 0, 1, -2.08616257e-07, 1, -9.11890599e-15, -4.37113883e-08)
5582
o136.Part0 = o134
5583
o136.Part1 = o137
5584
o137.Parent = o1
5585
o137.Material = Enum.Material.SmoothPlastic
5586
o137.BrickColor = BrickColor.new("Institutional white")
5587
o137.Position = Vector3.new(-5.369802, 4.16347218, -9.74921703)
5588
o137.Rotation = Vector3.new(0, 90, 0)
5589
o137.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5590
o137.Velocity = Vector3.new(3.49891947e-21, 0.103487223, 5.07340808e-21)
5591
o137.CanCollide = false
5592
o137.Locked = true
5593
o137.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
5594
o137.CFrame = CFrame.new(-5.369802, 4.16347218, -9.74921703, 7.0697871e-07, -7.96083532e-06, 1.00000095, 4.66604752e-06, 1.00000107, 8.25223742e-06, -1.00000095, 4.81505913e-06, 6.24359359e-07)
5595
o137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5596
o137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5597
o137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5598
o137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5599
o137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5600
o137.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5601
o137.Color = Color3.new(0.972549, 0.972549, 0.972549)
5602
o137.Position = Vector3.new(-5.369802, 4.16347218, -9.74921703)
5603
o137.Velocity = Vector3.new(3.49891947e-21, 0.103487223, 5.07340808e-21)
5604
o138.Parent = o137
5605
o138.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5606
o139.Name = "part_Weld"
5607
o139.Parent = o137
5608
o139.C0 = CFrame.new(15.1651602, -3.78999591, 10.2126322, -4.37113883e-08, -2.08616257e-07, -1, 0, 1, -2.08616257e-07, 1, -9.11890599e-15, -4.37113883e-08)
5609
o139.C1 = CFrame.new(-10.0476599, -3.95599866, 15.1500025, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
5610
o139.Part0 = o137
5611
o139.Part1 = o140
5612
o140.Name = "part"
5613
o140.Parent = o1
5614
o140.BrickColor = BrickColor.new("Institutional white")
5615
o140.Position = Vector3.new(-5.20483255, 4.32947445, -9.76437378)
5616
o140.Rotation = Vector3.new(-180, 0, 180)
5617
o140.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5618
o140.Velocity = Vector3.new(3.81165755e-21, 0.103487223, 5.51889129e-21)
5619
o140.CanCollide = false
5620
o140.Locked = true
5621
o140.Size = Vector3.new(0.5, 0.349999934, 1)
5622
o140.CFrame = CFrame.new(-5.20483255, 4.32947445, -9.76437378, -1.00000095, -8.11183145e-06, 7.50689708e-07, -8.40323355e-06, 1.00000107, 4.72366855e-06, -6.6807155e-07, 4.87267971e-06, -1.00000095)
5623
o140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5624
o140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5625
o140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5626
o140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5627
o140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5628
o140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5629
o140.Color = Color3.new(0.972549, 0.972549, 0.972549)
5630
o140.Position = Vector3.new(-5.20483255, 4.32947445, -9.76437378)
5631
o140.Velocity = Vector3.new(3.81165755e-21, 0.103487223, 5.51889129e-21)
5632
o141.Parent = o140
5633
o141.MeshId = "rbxasset://fonts/rightarm.mesh"
5634
o141.Scale = Vector3.new(1.10000002, 0.0500000007, 1.10000002)
5635
o141.MeshType = Enum.MeshType.FileMesh
5636
o142.Name = "Part_Weld"
5637
o142.Parent = o140
5638
o142.C0 = CFrame.new(-10.0476599, -3.95599866, 15.1500025, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
5639
o142.C1 = CFrame.new(15.262166, -0.187239647, 10.0121317, -4.37113883e-08, -0.258819044, -0.965925813, 0, 0.965925813, -0.258819044, 1, -1.13133396e-08, -4.22219593e-08)
5640
o142.Part0 = o140
5641
o142.Part1 = o143
5642
o143.Parent = o1
5643
o143.Material = Enum.Material.SmoothPlastic
5644
o143.BrickColor = BrickColor.new("Institutional white")
5645
o143.Position = Vector3.new(-5.16930342, 4.50447655, -10.2207155)
5646
o143.Rotation = Vector3.new(-15, 90, 0)
5647
o143.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5648
o143.Velocity = Vector3.new(4.15180609e-21, 0.103487223, 5.98524102e-21)
5649
o143.CanCollide = false
5650
o143.Locked = true
5651
o143.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
5652
o143.CFrame = CFrame.new(-5.16930342, 4.50447655, -10.2207155, 2.74181366e-06, -7.49528408e-06, 1.00000095, -0.258814603, 0.965928137, 8.24092422e-06, -0.965928078, -0.258814454, 6.2584877e-07)
5653
o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5654
o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5655
o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5656
o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5657
o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5658
o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5659
o143.Color = Color3.new(0.972549, 0.972549, 0.972549)
5660
o143.Position = Vector3.new(-5.16930342, 4.50447655, -10.2207155)
5661
o143.Velocity = Vector3.new(4.15180609e-21, 0.103487223, 5.98524102e-21)
5662
o144.Parent = o143
5663
o144.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5664
o145.Name = "Part_Weld"
5665
o145.Parent = o143
5666
o145.C0 = CFrame.new(15.262166, -0.187239647, 10.0121317, -4.37113883e-08, -0.258819044, -0.965925813, 0, 0.965925813, -0.258819044, 1, -1.13133396e-08, -4.22219593e-08)
5667
o145.C1 = CFrame.new(16.2419701, 0.0502983332, -7.94692659, 0.836516261, -0.258819044, -0.482962906, 0.224143863, 0.965925813, -0.129409522, 0.5, 0, 0.866025388)
5668
o145.Part0 = o143
5669
o145.Part1 = o146
5670
o146.Parent = o1
5671
o146.Material = Enum.Material.SmoothPlastic
5672
o146.BrickColor = BrickColor.new("Institutional white")
5673
o146.Position = Vector3.new(-4.78165674, 4.5286274, -10.1813545)
5674
o146.Rotation = Vector3.new(0, 30, -15)
5675
o146.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5676
o146.Velocity = Vector3.new(4.19631794e-21, 0.103487223, 6.05868601e-21)
5677
o146.CanCollide = false
5678
o146.Locked = true
5679
o146.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
5680
o146.CFrame = CFrame.new(-4.78165674, 4.5286274, -10.1813545, 0.836519599, 0.224136516, 0.499999851, -0.258810073, 0.965929449, -1.18044682e-07, -0.482964188, -0.129404649, 0.86602664)
5681
o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5682
o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5683
o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5684
o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5685
o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5686
o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5687
o146.Color = Color3.new(0.972549, 0.972549, 0.972549)
5688
o146.Position = Vector3.new(-4.78165674, 4.5286274, -10.1813545)
5689
o146.Velocity = Vector3.new(4.19631794e-21, 0.103487223, 6.05868601e-21)
5690
o147.Parent = o146
5691
o147.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5692
o148.Name = "Part_Weld"
5693
o148.Parent = o146
5694
o148.C0 = CFrame.new(16.2419701, 0.0502983332, -7.94692659, 0.836516261, -0.258819044, -0.482962906, 0.224143863, 0.965925813, -0.129409522, 0.5, 0, 0.866025388)
5695
o148.C1 = CFrame.new(10.0673161, -3.5782373, -15.6519909, 1, -4.30663385e-05, -1.172316e-07, 4.30663385e-05, 1, 1.50990758e-07, 1.17225099e-07, -1.50995803e-07, 1)
5696
o148.Part0 = o146
5697
o148.Part1 = o149
5698
o149.Parent = o1
5699
o149.Material = Enum.Material.Neon
5700
o149.BrickColor = BrickColor.new("Alder")
5701
o149.Position = Vector3.new(-5.22432995, 3.95214033, -9.26238251)
5702
o149.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5703
o149.Velocity = Vector3.new(3.08968317e-21, 0.103487223, 4.51471866e-21)
5704
o149.CanCollide = false
5705
o149.Locked = true
5706
o149.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5707
o149.CFrame = CFrame.new(-5.22432995, 3.95214033, -9.26238251, 1.00000107, 3.51038834e-05, -6.55651093e-07, -3.48247704e-05, 1.00000119, -5.04560194e-06, 5.06639481e-07, 5.18911293e-06, 1.00000107)
5708
o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5709
o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5710
o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5711
o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5712
o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5713
o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5714
o149.Color = Color3.new(0.705882, 0.501961, 1)
5715
o149.Position = Vector3.new(-5.22432995, 3.95214033, -9.26238251)
5716
o149.Velocity = Vector3.new(3.08968317e-21, 0.103487223, 4.51471866e-21)
5717
o150.Parent = o149
5718
o150.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
5719
o150.MeshType = Enum.MeshType.Brick
5720
o151.Name = "Part_Weld"
5721
o151.Parent = o149
5722
o151.C0 = CFrame.new(10.0673161, -3.5782373, -15.6519909, 1, -4.30663385e-05, -1.172316e-07, 4.30663385e-05, 1, 1.50990758e-07, 1.17225099e-07, -1.50995803e-07, 1)
5723
o151.C1 = CFrame.new(11.3833618, -11.522274, -7.94691992, 0.749999881, 0.500000119, -0.433012873, -0.433012575, 0.866025388, 0.250000417, 0.500000358, -2.72390196e-07, 0.866025209)
5724
o151.Part0 = o149
5725
o151.Part1 = o152
5726
o152.Parent = o1
5727
o152.Material = Enum.Material.SmoothPlastic
5728
o152.BrickColor = BrickColor.new("Institutional white")
5729
o152.Position = Vector3.new(-4.71052122, 4.66037846, -10.2224236)
5730
o152.Rotation = Vector3.new(0, 30, 30)
5731
o152.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5732
o152.Velocity = Vector3.new(4.44521853e-21, 0.103487223, 6.41083312e-21)
5733
o152.CanCollide = false
5734
o152.Locked = true
5735
o152.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
5736
o152.CFrame = CFrame.new(-4.71052122, 4.66037846, -10.2224236, 0.749996901, -0.433020055, 0.500000179, 0.500008941, 0.866021574, -3.8894359e-07, -0.43301031, 0.250004768, 0.866026461)
5737
o152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5738
o152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5739
o152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5740
o152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5741
o152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5742
o152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5743
o152.Color = Color3.new(0.972549, 0.972549, 0.972549)
5744
o152.Position = Vector3.new(-4.71052122, 4.66037846, -10.2224236)
5745
o152.Velocity = Vector3.new(4.44521853e-21, 0.103487223, 6.41083312e-21)
5746
o153.Parent = o152
5747
o153.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5748
o154.Name = "part_Weld"
5749
o154.Parent = o152
5750
o154.C0 = CFrame.new(11.3833618, -11.522274, -7.94691992, 0.749999881, 0.500000119, -0.433012873, -0.433012575, 0.866025388, 0.250000417, 0.500000358, -2.72390196e-07, 0.866025209)
5751
o154.C1 = CFrame.new(-9.74265862, -3.00500059, 15.1500006, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
5752
o154.Part0 = o152
5753
o154.Part1 = o155
5754
o155.Name = "part"
5755
o155.Parent = o1
5756
o155.BrickColor = BrickColor.new("Institutional white")
5757
o155.Position = Vector3.new(-4.89982414, 3.37847805, -9.76437759)
5758
o155.Rotation = Vector3.new(-180, 0, 180)
5759
o155.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5760
o155.Velocity = Vector3.new(2.02210076e-21, 0.103487223, 2.99647914e-21)
5761
o155.CanCollide = false
5762
o155.Locked = true
5763
o155.Size = Vector3.new(0.5, 0.349999934, 1)
5764
o155.CFrame = CFrame.new(-4.89982414, 3.37847805, -9.76437759, -1.00000095, -8.07733795e-06, 7.4505806e-07, -8.3697114e-06, 1.00000119, 4.72867032e-06, -6.55651093e-07, 4.92008849e-06, -1.00000107)
5765
o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5766
o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5767
o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5768
o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5769
o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5770
o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5771
o155.Color = Color3.new(0.972549, 0.972549, 0.972549)
5772
o155.Position = Vector3.new(-4.89982414, 3.37847805, -9.76437759)
5773
o155.Velocity = Vector3.new(2.02210076e-21, 0.103487223, 2.99647914e-21)
5774
o156.Parent = o155
5775
o156.MeshId = "rbxasset://fonts/rightarm.mesh"
5776
o156.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
5777
o156.MeshType = Enum.MeshType.FileMesh
5778
o157.Name = "Part_Weld"
5779
o157.Parent = o155
5780
o157.C0 = CFrame.new(-9.74265862, -3.00500059, 15.1500006, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
5781
o157.C1 = CFrame.new(9.96975994, -4.31484985, -15.1752768, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5782
o157.Part0 = o155
5783
o157.Part1 = o158
5784
o158.Parent = o1
5785
o158.Material = Enum.Material.Neon
5786
o158.BrickColor = BrickColor.new("Alder")
5787
o158.Position = Vector3.new(-5.12693548, 4.68832588, -9.73909378)
5788
o158.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5789
o158.Velocity = Vector3.new(4.48633361e-21, 0.103487223, 6.47528656e-21)
5790
o158.Locked = true
5791
o158.Shape = Enum.PartType.Ball
5792
o158.Size = Vector3.new(0.5, 0.5, 0.5)
5793
o158.CFrame = CFrame.new(-5.12693548, 4.68832588, -9.73909378, 1.00000095, -7.92634182e-06, -7.45056866e-07, 8.21871527e-06, 1.00000119, -4.87966645e-06, 6.55650354e-07, 5.07108462e-06, 1.00000107)
5794
o158.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5795
o158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5796
o158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5797
o158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5798
o158.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5799
o158.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5800
o158.Color = Color3.new(0.705882, 0.501961, 1)
5801
o158.Position = Vector3.new(-5.12693548, 4.68832588, -9.73909378)
5802
o158.Velocity = Vector3.new(4.48633361e-21, 0.103487223, 6.47528656e-21)
5803
o159.Name = "Part_Weld"
5804
o159.Parent = o158
5805
o159.C0 = CFrame.new(9.96975994, -4.31484985, -15.1752768, 1, 0, 0, 0, 1, 0, 0, 0, 1)
5806
o159.C1 = CFrame.new(10.3135281, -1.51322389, -15.1661596, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)
5807
o159.Part0 = o158
5808
o159.Part1 = o160
5809
o160.Parent = o1
5810
o160.Material = Enum.Material.SmoothPlastic
5811
o160.BrickColor = BrickColor.new("Institutional white")
5812
o160.Position = Vector3.new(-4.72762537, 4.50447845, -9.74821186)
5813
o160.Rotation = Vector3.new(0, 0, -15)
5814
o160.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5815
o160.Velocity = Vector3.new(4.1405915e-21, 0.103487223, 5.99573224e-21)
5816
o160.CanCollide = false
5817
o160.Locked = true
5818
o160.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
5819
o160.CFrame = CFrame.new(-4.72762537, 4.50447845, -9.74821186, 0.965928733, 0.258811623, -7.45056866e-07, -0.258811414, 0.965929091, -4.87966645e-06, -6.791837e-07, 5.06798642e-06, 1.00000107)
5820
o160.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5821
o160.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5822
o160.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5823
o160.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5824
o160.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5825
o160.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5826
o160.Color = Color3.new(0.972549, 0.972549, 0.972549)
5827
o160.Position = Vector3.new(-4.72762537, 4.50447845, -9.74821186)
5828
o160.Velocity = Vector3.new(4.1405915e-21, 0.103487223, 5.99573224e-21)
5829
o161.Parent = o160
5830
o161.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5831
o162.Name = "Part_Weld"
5832
o162.Parent = o160
5833
o162.C0 = CFrame.new(10.3135281, -1.51322389, -15.1661596, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)
5834
o162.C1 = CFrame.new(6.06806517, -8.45348072, -15.1661596, 0.866025388, 0.5, 0, -0.5, 0.866025388, 0, 0, 0, 1)
5835
o162.Part0 = o160
5836
o162.Part1 = o163
5837
o163.Parent = o1
5838
o163.Material = Enum.Material.SmoothPlastic
5839
o163.BrickColor = BrickColor.new("Institutional white")
5840
o163.Position = Vector3.new(-4.63901281, 4.66037655, -9.74821091)
5841
o163.Rotation = Vector3.new(0, 0, 30)
5842
o163.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5843
o163.Velocity = Vector3.new(4.43395587e-21, 0.103487223, 6.41252544e-21)
5844
o163.CanCollide = false
5845
o163.Locked = true
5846
o163.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
5847
o163.CFrame = CFrame.new(-4.63901281, 4.66037655, -9.74821091, 0.86602211, -0.500007331, -7.45056866e-07, 0.500007689, 0.866022229, -4.87966645e-06, 3.10335213e-06, 4.06386243e-06, 1.00000107)
5848
o163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5849
o163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5850
o163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5851
o163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5852
o163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5853
o163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5854
o163.Color = Color3.new(0.972549, 0.972549, 0.972549)
5855
o163.Position = Vector3.new(-4.63901281, 4.66037655, -9.74821091)
5856
o163.Velocity = Vector3.new(4.43395587e-21, 0.103487223, 6.41252544e-21)
5857
o164.Parent = o163
5858
o164.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5859
o165.Name = "Part_Weld"
5860
o165.Parent = o163
5861
o165.C0 = CFrame.new(6.06806517, -8.45348072, -15.1661596, 0.866025388, 0.5, 0, -0.5, 0.866025388, 0, 0, 0, 1)
5862
o165.C1 = CFrame.new(-1.77061176, -3.92781997, -18.3610363, 0.750000238, 0.49999997, 0.433012396, -0.433012784, 0.866025448, -0.249999791, -0.499999613, 0, 0.866025627)
5863
o165.Part0 = o163
5864
o165.Part1 = o166
5865
o166.Parent = o1
5866
o166.Material = Enum.Material.SmoothPlastic
5867
o166.BrickColor = BrickColor.new("Institutional white")
5868
o166.Position = Vector3.new(-4.71052265, 4.66037512, -9.22850037)
5869
o166.Rotation = Vector3.new(0, -30, 30)
5870
o166.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5871
o166.Velocity = Vector3.new(4.42161399e-21, 0.103487223, 6.41082383e-21)
5872
o166.CanCollide = false
5873
o166.Locked = true
5874
o166.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
5875
o166.CFrame = CFrame.new(-4.71052265, 4.66037512, -9.22850037, 0.749996543, -0.433019847, -0.500000656, 0.50000459, 0.866023958, -8.33863669e-06, 0.433015913, -0.249995947, 0.866026282)
5876
o166.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5877
o166.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5878
o166.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5879
o166.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5880
o166.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5881
o166.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5882
o166.Color = Color3.new(0.972549, 0.972549, 0.972549)
5883
o166.Position = Vector3.new(-4.71052265, 4.66037512, -9.22850037)
5884
o166.Velocity = Vector3.new(4.42161399e-21, 0.103487223, 6.41082383e-21)
5885
o167.Parent = o166
5886
o167.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5887
o168.Name = "Part_Weld"
5888
o168.Parent = o166
5889
o168.C0 = CFrame.new(-1.77061176, -3.92781997, -18.3610363, 0.750000238, 0.49999997, 0.433012396, -0.433012784, 0.866025448, -0.249999791, -0.499999613, 0, 0.866025627)
5890
o168.C1 = CFrame.new(1.57062054, -3.88087869, -18.3610344, 0.8365165, -0.258819014, 0.482962519, 0.224143893, 0.965925813, 0.129409403, -0.499999613, 0, 0.866025627)
5891
o168.Part0 = o166
5892
o168.Part1 = o169
5893
o169.Parent = o1
5894
o169.Material = Enum.Material.SmoothPlastic
5895
o169.BrickColor = BrickColor.new("Institutional white")
5896
o169.Position = Vector3.new(-4.78165913, 4.52862406, -9.26957417)
5897
o169.Rotation = Vector3.new(0, -30, -15)
5898
o169.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5899
o169.Velocity = Vector3.new(4.17466383e-21, 0.103487223, 6.05867672e-21)
5900
o169.CanCollide = false
5901
o169.Locked = true
5902
o169.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
5903
o169.CFrame = CFrame.new(-4.78165913, 4.52862406, -9.26957417, 0.836518884, 0.224136263, -0.500000656, -0.258814663, 0.965928078, -8.33863669e-06, 0.48296231, 0.129414618, 0.866026282)
5904
o169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5905
o169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5906
o169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5907
o169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5908
o169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5909
o169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5910
o169.Color = Color3.new(0.972549, 0.972549, 0.972549)
5911
o169.Position = Vector3.new(-4.78165913, 4.52862406, -9.26957417)
5912
o169.Velocity = Vector3.new(4.17466383e-21, 0.103487223, 6.05867672e-21)
5913
o170.Parent = o169
5914
o170.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5915
o171.Name = "Part_Weld"
5916
o171.Parent = o169
5917
o171.C0 = CFrame.new(1.57062054, -3.88087869, -18.3610344, 0.8365165, -0.258819014, 0.482962519, 0.224143893, 0.965925813, 0.129409403, -0.499999613, 0, 0.866025627)
5918
o171.C1 = CFrame.new(-15.7826138, 4.16201735, -10.0121298, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
5919
o171.Part0 = o169
5920
o171.Part1 = o172
5921
o172.Parent = o1
5922
o172.Material = Enum.Material.SmoothPlastic
5923
o172.BrickColor = BrickColor.new("Institutional white")
5924
o172.Position = Vector3.new(-5.16930723, 4.6603694, -9.16521931)
5925
o172.Rotation = Vector3.new(-30, -90, 0)
5926
o172.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5927
o172.Velocity = Vector3.new(4.42010059e-21, 0.103487223, 6.39991619e-21)
5928
o172.CanCollide = false
5929
o172.Locked = true
5930
o172.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
5931
o172.CFrame = CFrame.new(-5.16930723, 4.6603694, -9.16521931, -4.67896461e-06, -6.54160976e-06, -1.00000072, 0.499996424, 0.866028666, -8.32673868e-06, 0.866028786, -0.499996275, -6.55651093e-07)
5932
o172.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5933
o172.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5934
o172.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5935
o172.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5936
o172.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5937
o172.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5938
o172.Color = Color3.new(0.972549, 0.972549, 0.972549)
5939
o172.Position = Vector3.new(-5.16930723, 4.6603694, -9.16521931)
5940
o172.Velocity = Vector3.new(4.42010059e-21, 0.103487223, 6.39991619e-21)
5941
o173.Parent = o172
5942
o173.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5943
o174.Name = "Part_Weld"
5944
o174.Parent = o172
5945
o174.C0 = CFrame.new(-15.7826138, 4.16201735, -10.0121298, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
5946
o174.C1 = CFrame.new(-14.0577393, -8.04348469, -10.0121298, -4.37113883e-08, -0.258819044, 0.965925813, 0, 0.965925813, 0.258819044, -1, 1.13133396e-08, -4.22219593e-08)
5947
o174.Part0 = o172
5948
o174.Part1 = o175
5949
o175.Parent = o1
5950
o175.Material = Enum.Material.SmoothPlastic
5951
o175.BrickColor = BrickColor.new("Institutional white")
5952
o175.Position = Vector3.new(-5.1693058, 4.50447226, -9.25383186)
5953
o175.Rotation = Vector3.new(15, -90, 0)
5954
o175.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5955
o175.Velocity = Vector3.new(4.12884174e-21, 0.103487223, 5.9852293e-21)
5956
o175.CanCollide = false
5957
o175.Locked = true
5958
o175.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
5959
o175.CFrame = CFrame.new(-5.1693058, 4.50447226, -9.25383186, 1.30428748e-06, -7.90323611e-06, -1.00000072, -0.25882405, 0.965925515, -8.29356941e-06, 0.965925574, 0.258824199, -6.60017747e-07)
5960
o175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5961
o175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5962
o175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5963
o175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5964
o175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5965
o175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5966
o175.Color = Color3.new(0.972549, 0.972549, 0.972549)
5967
o175.Position = Vector3.new(-5.1693058, 4.50447226, -9.25383186)
5968
o175.Velocity = Vector3.new(4.12884174e-21, 0.103487223, 5.9852293e-21)
5969
o176.Parent = o175
5970
o176.Scale = Vector3.new(0.790749788, 1, 0.763249993)
5971
o177.Name = "Part_Weld"
5972
o177.Parent = o175
5973
o177.C0 = CFrame.new(-14.0577393, -8.04348469, -10.0121298, -4.37113883e-08, -0.258819044, 0.965925813, 0, 0.965925813, 0.258819044, -1, 1.13133396e-08, -4.22219593e-08)
5974
o177.C1 = CFrame.new(-10.0329962, -3.57909822, 14.6449976, -1, -4.30663385e-05, 2.98088239e-08, -4.30663385e-05, 1, -1.50994524e-07, -2.98023224e-08, -1.50995803e-07, -1)
5975
o177.Part0 = o175
5976
o177.Part1 = o178
5977
o178.Parent = o1
5978
o178.Material = Enum.Material.Neon
5979
o178.BrickColor = BrickColor.new("Alder")
5980
o178.Position = Vector3.new(-5.19032049, 3.95214605, -10.2693796)
5981
o178.Rotation = Vector3.new(-180, 0, 180)
5982
o178.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
5983
o178.Velocity = Vector3.new(3.11360193e-21, 0.103487223, 4.515541e-21)
5984
o178.CanCollide = false
5985
o178.Locked = true
5986
o178.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
5987
o178.CFrame = CFrame.new(-5.19032049, 3.95214605, -10.2693796, -1.00000072, -5.10491955e-05, 7.13640077e-07, -5.13712621e-05, 1.00000095, 4.76837113e-06, -5.88203136e-07, 4.8577499e-06, -1.00000107)
5988
o178.BackSurface = Enum.SurfaceType.SmoothNoOutlines
5989
o178.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
5990
o178.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
5991
o178.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
5992
o178.RightSurface = Enum.SurfaceType.SmoothNoOutlines
5993
o178.TopSurface = Enum.SurfaceType.SmoothNoOutlines
5994
o178.Color = Color3.new(0.705882, 0.501961, 1)
5995
o178.Position = Vector3.new(-5.19032049, 3.95214605, -10.2693796)
5996
o178.Velocity = Vector3.new(3.11360193e-21, 0.103487223, 4.515541e-21)
5997
o179.Parent = o178
5998
o179.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
5999
o179.MeshType = Enum.MeshType.Brick
6000
o180.Name = "Part_Weld"
6001
o180.Parent = o178
6002
o180.C0 = CFrame.new(-10.0329962, -3.57909822, 14.6449976, -1, -4.30663385e-05, 2.98088239e-08, -4.30663385e-05, 1, -1.50994524e-07, -2.98023224e-08, -1.50995803e-07, -1)
6003
o180.C1 = CFrame.new(-10.5231905, 1.87458968, 14.6449947, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
6004
o180.Part0 = o178
6005
o180.Part1 = o181
6006
o181.Parent = o1
6007
o181.Material = Enum.Material.Neon
6008
o181.BrickColor = BrickColor.new("Alder")
6009
o181.Position = Vector3.new(-5.20791769, 4.01134586, -10.2693815)
6010
o181.Rotation = Vector3.new(-180, 0, -150)
6011
o181.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
6012
o181.Velocity = Vector3.new(3.22500252e-21, 0.103487223, 4.67259505e-21)
6013
o181.CanCollide = false
6014
o181.Locked = true
6015
o181.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
6016
o181.CFrame = CFrame.new(-5.20791769, 4.01134586, -10.2693815, -0.866044044, 0.499969155, 7.13637689e-07, 0.499968976, 0.866044462, 5.07036293e-06, 2.07053222e-06, 4.7625449e-06, -1.00000107)
6017
o181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6018
o181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6019
o181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6020
o181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6021
o181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6022
o181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6023
o181.Color = Color3.new(0.705882, 0.501961, 1)
6024
o181.Position = Vector3.new(-5.20791769, 4.01134586, -10.2693815)
6025
o181.Velocity = Vector3.new(3.22500252e-21, 0.103487223, 4.67259505e-21)
6026
o182.Parent = o181
6027
o182.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
6028
o182.MeshType = Enum.MeshType.Brick
6029
o183.Name = "Part_Weld"
6030
o183.Parent = o181
6031
o183.C0 = CFrame.new(-10.5231905, 1.87458968, 14.6449947, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
6032
o183.C1 = CFrame.new(-10.6715069, -0.88377738, 14.6449947, -0.965933084, 0.258791953, 1.0463188e-07, 0.258791953, 0.965933084, 1.28288306e-07, -6.78674184e-08, 1.50995803e-07, -1)
6033
o183.Part0 = o181
6034
o183.Part1 = o184
6035
o184.Parent = o1
6036
o184.Material = Enum.Material.Neon
6037
o184.BrickColor = BrickColor.new("Alder")
6038
o184.Position = Vector3.new(-5.23641634, 3.98884511, -10.2693815)
6039
o184.Rotation = Vector3.new(-180, 0, -165)
6040
o184.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
6041
o184.Velocity = Vector3.new(3.18266122e-21, 0.103487223, 4.61206627e-21)
6042
o184.CanCollide = false
6043
o184.Locked = true
6044
o184.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
6045
o184.CFrame = CFrame.new(-5.23641634, 3.98884511, -10.2693815, -0.965935826, 0.258784473, 6.75572551e-07, 0.258784175, 0.965936184, 5.07036248e-06, 8.04111892e-07, 5.12630731e-06, -1.00000107)
6046
o184.BackSurface = Enum.SurfaceType.SmoothNoOutlines
6047
o184.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
6048
o184.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
6049
o184.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
6050
o184.RightSurface = Enum.SurfaceType.SmoothNoOutlines
6051
o184.TopSurface = Enum.SurfaceType.SmoothNoOutlines
6052
o184.Color = Color3.new(0.705882, 0.501961, 1)
6053
o184.Position = Vector3.new(-5.23641634, 3.98884511, -10.2693815)
6054
o184.Velocity = Vector3.new(3.18266122e-21, 0.103487223, 4.61206627e-21)
6055
o185.Parent = o184
6056
o185.Scale = Vector3.new(0.100000001, 0.104347944, 0.606715083)
6057
o185.MeshType = Enum.MeshType.Brick
6058
o186.Name = "Part_Weld"
6059
o186.Parent = o184
6060
o186.C0 = CFrame.new(-10.6715069, -0.88377738, 14.6449947, -0.965933084, 0.258791953, 1.0463188e-07, 0.258791953, 0.965933084, 1.28288306e-07, -6.78674184e-08, 1.50995803e-07, -1)
6061
o186.C1 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
6062
o186.Part0 = o184
6063
o186.Part1 = o5
6064
6065
6066
6067
--Melee
6068
6069
o1 = Instance.new("Model")
6070
o2 = Instance.new("UnionOperation")
6071
o3 = Instance.new("UnionOperation")
6072
o4 = Instance.new("UnionOperation")
6073
o5 = Instance.new("Part")
6074
o6 = Instance.new("Model")
6075
o7 = Instance.new("UnionOperation")
6076
o8 = Instance.new("UnionOperation")
6077
o9 = Instance.new("UnionOperation")
6078
o10 = Instance.new("UnionOperation")
6079
o11 = Instance.new("UnionOperation")
6080
o12 = Instance.new("UnionOperation")
6081
o13 = Instance.new("UnionOperation")
6082
o14 = Instance.new("UnionOperation")
6083
o15 = Instance.new("UnionOperation")
6084
o16 = Instance.new("UnionOperation")
6085
o17 = Instance.new("UnionOperation")
6086
o18 = Instance.new("UnionOperation")
6087
o1.Name = "Melee"
6088
o1.Parent = game.ReplicatedStorage
6089
o2.Parent = o1
6090
o2.BrickColor = BrickColor.new("Really black")
6091
o2.Material = "SmoothPlastic"
6092
o2.Name = "Base"
6093
o2.Position = Vector3.new(-5.77,5.32,-9.664)
6094
o2.Orientation = Vector3.new(85.02,-89.81,-179.81)
6095
o2.Anchored = true
6096
o2.CanCollide = true
6097
o2.Size = Vector3.new(0.41,0.099,9.001)
6098
o3.Parent = o1
6099
o3.BrickColor = BrickColor.new("Institutional white")
6100
o3.Name = "Hitbox"
6101
o3.Orientation = Vector3.new(90,-179.99,0)
6102
o3.Position = Vector3.new(-5.54,7.912,-10.468)
6103
o3.Anchored = true
6104
o3.CanCollide = true
6105
o3.Size = Vector3.new(0.247,4.837,1.603)
6106
o4.Name = "Segments"
6107
o4.Parent = o1
6108
o4.BrickColor = BrickColor.new("Institutional white")
6109
o4.Transparency = 0.05
6110
o4.Orientation = Vector3.new(-4.99,-90,0.02)
6111
o4.Position = Vector3.new(-5.827,4.664,-9.751)
6112
o4.Anchored = true
6113
o4.CanCollide = true
6114
o4.Size = Vector3.new(0.25,7.949,0.105)
6115
o5.Name = "Handle"
6116
o5.Parent = o1
6117
o5.BrickColor = BrickColor.new("Really black")
6118
o5.Reflectance = 0.40000000596046
6119
o5.Transparency = 1
6120
o5.Position = Vector3.new(-5.89046288, 3.09279108, -9.7504921)
6121
o5.Rotation = Vector3.new(-90.0299988, -85.0299988, 89.9899979)
6122
o5.Anchored = true
6123
o5.FormFactor = Enum.FormFactor.Custom
6124
o5.Size = Vector3.new(0.500100017, 2.05800009, 0.776000023)
6125
o5.CFrame = CFrame.new(-5.89046288, 3.09279108, -9.7504921, 1.5790607e-05, -0.0867413133, -0.996234536, -0.000304654473, -0.996230841, 0.08674106, -1, 0.000302136614, -4.21571312e-05)
6126
o5.BottomSurface = Enum.SurfaceType.Smooth
6127
o5.TopSurface = Enum.SurfaceType.Smooth
6128
o5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
6129
o5.Position = Vector3.new(-5.89046288, 3.09279108, -9.7504921)
6130
o6.Name = "Rune"
6131
o6.Parent = o1
6132
o7.Parent = o6
6133
o7.BrickColor = BrickColor.new("Alder")
6134
o7.Material = "Neon"
6135
o7.Transparency = 0.5
6136
o7.Name = "Union"
6137
o7.Orientation = Vector3.new(-48,179.87,-89.94)
6138
o7.Position = Vector3.new(-5.536,8.062,-10.307)
6139
o7.Anchored = true
6140
o7.CanCollide = true
6141
o7.Size = Vector3.new(0.0036,0.194,0.121)
6142
o8.Parent = o6
6143
o8.BrickColor = BrickColor.new("Alder")
6144
o8.Material = "Granite"
6145
o8.Transparency = 0.5
6146
o8.Name = "Union"
6147
o8.Orientation = Vector3.new(-48,179.87,-89.94)
6148
o8.Position = Vector3.new(-5.536,8.062,-10.307)
6149
o8.Anchored = true
6150
o8.CanCollide = true
6151
o8.Size = Vector3.new(0.0036,0.194,0.121)
6152
o9.Parent = o6
6153
o9.BrickColor = BrickColor.new("Alder")
6154
o9.Material = "Neon"
6155
o9.Transparency = 0.5
6156
o9.Name = "Union"
6157
o9.Orientation = Vector3.new(-34,0.08,89.74)
6158
o9.Position = Vector3.new(-5.536,7.885,-10.305)
6159
o9.Anchored = true
6160
o9.CanCollide = true
6161
o9.Size = Vector3.new(0.0036,0.194,0.121)
6162
o10.Parent = o6
6163
o10.BrickColor = BrickColor.new("Alder")
6164
o10.Material = "Neon"
6165
o10.Transparency = 0.5
6166
o10.Name = "Union"
6167
o10.Orientation = Vector3.new(0,180,-90)
6168
o10.Position = Vector3.new(-5.536,8.104,-10.397)
6169
o10.Anchored = true
6170
o10.CanCollide = true
6171
o10.Size = Vector3.new(0.0036,0.194,0.121)
6172
o11.Parent = o6
6173
o11.BrickColor = BrickColor.new("Alder")
6174
o11.Material = "Neon"
6175
o11.Transparency = 0.5
6176
o11.Name = "Union"
6177
o11.Orientation = Vector3.new(-68,0.3,89.56)
6178
o11.Position = Vector3.new(-5.536,7.801,-10.376)
6179
o11.Anchored = true
6180
o11.CanCollide = false
6181
o11.Size = Vector3.new(0.0036,0.194,0.121)
6182
o12.Parent = o6
6183
o12.BrickColor = BrickColor.new("Alder")
6184
o12.Material = "Granite"
6185
o12.Transparency = 0.5
6186
o12.Name = "Union"
6187
o12.Orientation = Vector3.new(-83,179.03,-89.14)
6188
o12.Position = Vector3.new(-5.536,7.967,-10.265)
6189
o12.Anchored = true
6190
o12.CanCollide = true
6191
o12.Size = Vector3.new(0.0036,0.194,0.121)
6192
o13.Parent = o6
6193
o13.BrickColor = BrickColor.new("Alder")
6194
o13.Material = "Granite"
6195
o13.Transparency = 0.5
6196
o13.Name = "Union"
6197
o13.Orientation = Vector3.new(-68,0.3,89.56)
6198
o13.Position = Vector3.new(-5.536,7.801,-10.376)
6199
o13.Anchored = true
6200
o13.CanCollide = true
6201
o13.Size = Vector3.new(0.0036,0.194,0.121)
6202
o14.Parent = o6
6203
o14.BrickColor = BrickColor.new("Alder")
6204
o14.Material = "Neon"
6205
o14.Transparency = 0.5
6206
o14.Name = "Union"
6207
o14.Orientation = Vector3.new(-83,179.03,-89.14)
6208
o14.Position = Vector3.new(-5.536,7.967,-10.265)
6209
o14.Anchored = true
6210
o14.CanCollide = false
6211
o14.Size = Vector3.new(0.0036,0.194,0.121)
6212
o15.Parent = o6
6213
o15.BrickColor = BrickColor.new("Alder")
6214
o15.Material = "Neon"
6215
o15.Transparency = 0.5
6216
o15.Name = "Union"
6217
o15.Orientation = Vector3.new(0,180,-90)
6218
o15.Position = Vector3.new(-5.536,8.014,-10.346)
6219
o15.Anchored = true
6220
o15.CanCollide = false
6221
o15.Size = Vector3.new(0.0036,0.194,0.121)
6222
o16.Parent = o6
6223
o16.BrickColor = BrickColor.new("Alder")
6224
o16.Material = "Granite"
6225
o16.Transparency = 0.5
6226
o16.Name = "Union"
6227
o16.Orientation = Vector3.new(0,180,-90)
6228
o16.Position = Vector3.new(-5.536,8.014,-10.346)
6229
o16.Anchored = true
6230
o16.CanCollide = true
6231
o16.Size = Vector3.new(0.0036,0.194,0.121)
6232
o17.Parent = o6
6233
o17.BrickColor = BrickColor.new("Alder")
6234
o17.Material = "Granite"
6235
o17.Transparency = 0.5
6236
o17.Name = "Union"
6237
o17.Orientation = Vector3.new(0,180,-90)
6238
o17.Position = Vector3.new(-5.536,8.104,-10.397)
6239
o17.Anchored = true
6240
o17.CanCollide = true
6241
o17.Size = Vector3.new(0.0036,0.194,0.121)
6242
o18.Parent = o6
6243
o18.BrickColor = BrickColor.new("Alder")
6244
o18.Material = "Granite"
6245
o18.Transparency = 0.5
6246
o18.Name = "Union"
6247
o18.Orientation = Vector3.new(-34,0.08,89.74)
6248
o18.Position = Vector3.new(-5.536,7.885,-10.305)
6249
o18.Anchored = true
6250
o18.CanCollide = true
6251
o18.Size = Vector3.new(0.0036,0.194,0.121)
6252
--Effects--
6253
Ef = Instance.new("Folder")
6254
Ef.Parent = game.ReplicatedStorage
6255
Ef.Name = "Effects"
6256
Con = Instance.new("Part")
6257
Conm = Instance.new("SpecialMesh")
6258
Conm.MeshId = 'rbxassetid://703458158'
6259
Conm.Parent = Con
6260
Con.Size = Vector3.new(2,2,2)
6261
Con.Name = "Cone"
6262
Con.Parent = Ef
6263
Crow = Instance.new("Part")
6264
Cron = Instance.new("SpecialMesh")
6265
Cron.MeshId = 'rbxassetid://1007757199'
6266
CronSize = Vector3.new(1.866,0.71,2.155)
6267
Cron.Parent = Crow
6268
Crow.Name = "Crown"
6269
Crow.Parent = Ef
6270
Donu = Instance.new("Part")
6271
Donn = Instance.new("SpecialMesh")
6272
Donn.MeshId = 'rbxassetid://750104831'
6273
Donn.Parent = Donu
6274
Donu.Name = 'Donut'
6275
Donu.Size = Vector3.new(1,0.25,1)
6276
Donu.Parent = Ef
6277
Rin = Instance.new("Part")
6278
Rinm = Instance.new("SpecialMesh")
6279
Rinm.MeshId = 'rbxassetid://471124075'
6280
Rinm.Parent = Rin
6281
Rin.Name = 'Ring'
6282
Rin.Parent = Ef
6283
Rin.Size = Vector3.new(1,0.25,1)
6284
wait(2)
6285
local Player = game:service'Players'.LocalPlayer
6286
repeat wait() until Player.Character
6287
local Character = Player.Character
6288
local Mouse = Player:GetMouse()
6289
local Landed = true
6290
local Walking = true
6291
6292
--// Settings
6293
6294
local ComboResetTime = .125 --// Seconds it takes for the combo to reset if not clicked fast enough
6295
local Max_Health = 150
6296
local NotifyKeyPresses = false
6297
6298
--// Limbs and what not
6299
6300
local Torso = Character:WaitForChild'Torso'
6301
local Head = Character:WaitForChild'Head'
6302
local Left_Arm = Character:WaitForChild'Left Arm'
6303
local Right_Arm = Character:WaitForChild'Right Arm'
6304
local Left_Leg = Character:WaitForChild'Left Leg'
6305
local Right_Leg = Character:WaitForChild'Right Leg'
6306
local HumanoidRootPart = Character:WaitForChild'HumanoidRootPart'
6307
local Humanoid = Character:WaitForChild'Humanoid'
6308
6309
--// Debounces
6310
6311
local trail=false
6312
local DebounceHit = false
6313
local DebounceKeyDown, DebounceState = false, false
6314
local DebounceAFKAnimations = false
6315
6316
--// Other Things
6317
6318
local State, LastState, Mode = 'Idle', 'Normal'
6319
Mode=LastState
6320
local AFKAnimSequenceCount,MaxSequenceCount = 0, 200
6321
6322
--// Abbreiviations
6323
6324
local rbx = 'rbxassetid://'
6325
local char,Char,plr,Plr = Character, Character, Player, Player
6326
local mouse,ms = Mouse, Mouse
6327
local cam,camera,Camera,Cam=workspace.CurrentCamera,workspace.CurrentCamera,workspace.CurrentCamera,workspace.CurrentCamera
6328
local dkd, debkd = DebounceKeyDown, DebounceKeyDown
6329
local dst, debst, ds, debs = DebounceState,DebounceState,DebounceState,DebounceState
6330
local daa,dafk,debafk = DebounceAFKAnimations,DebounceAFKAnimations,DebounceAFKAnimations
6331
local rs = game:service'RunService'
6332
local lrs = rs.Stepped
6333
local srs = rs.Stepped
6334
local lleg,rleg = Left_Leg, Right_Leg
6335
local larm,rarm = Left_Arm, Right_Arm
6336
local hed,torr,torso = Head, Torso, Torso
6337
local hum, root = Humanoid, HumanoidRootPart
6338
local vec3,vec2 = Vector3.new, Vector2.new
6339
local sin, cos, atan, rad, rand, rands = math.sin, math.cos, math.atan, math.rad, math.random, math.randomseed
6340
local cf, ang, eu, v3 = CFrame.new, CFrame.Angles, CFrame.fromEulerAnglesXYZ, Vector3.new
6341
local bc,bcr,c3 = BrickColor.new,BrickColor.Random,Color3.new
6342
6343
--// Removals and error prevention
6344
6345
if Char:FindFirstChild'Animate' then
6346
    local Anim = Char:WaitForChild'Animate'
6347
    Anim.Disabled=true
6348
end
6349
local anims = Humanoid:GetPlayingAnimationTracks()   
6350
for i, v in ipairs(anims) do v:Stop() end
6351
print'Loading'
6352
wait(2)
6353
6354
for Index, Object in next, Head:GetChildren() do
6355
	if Object:IsA('Sound') then
6356
		Object.Volume = 0
6357
	end
6358
end
6359
if Char:FindFirstChild'Health' then
6360
	ypcall(game.Destroy, Char.Health)
6361
end
6362
6363
--// Base Functions
6364
6365
function Weld(to, from, c1)
6366
    local New_Weld = Instance.new('Motor', to)
6367
    New_Weld.Part0 = from
6368
    New_Weld.Part1 = to
6369
    New_Weld.C1 = c1
6370
    return New_Weld
6371
end
6372
6373
function clerp(c1,c2,al)
6374
	local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
6375
	local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
6376
	for i,v in pairs(com1) do 
6377
		com1[i] = v+(com2[i]-v)*al
6378
	end
6379
	 return cf(com1[1],com1[2],com1[3]) * ang(select(4,unpack(com1)))
6380
end
6381
6382
function lerp(c1,c2,al)
6383
    return c1:lerp(c2,al)
6384
end
6385
6386
function snd(Id, Parent, PlayAsWell, OtherProperties)
6387
	PlayAsWell=PlayAsWell or false
6388
	OtherProperties=OtherProperties or {Volume=.5}
6389
	local Sound = Instance.new('Sound')
6390
	Sound.SoundId = rbx..Id
6391
	for i,v in next, OtherProperties do
6392
		pcall(function()
6393
			Sound[i]=v
6394
		end)
6395
	end
6396
	Sound.Parent=Parent
6397
	Sound.Ended:connect(function()
6398
		game.Debris:AddItem(Sound, 1)
6399
	end)
6400
	if PlayAsWell then
6401
		Sound:Play()
6402
	end
6403
    return Sound
6404
end
6405
6406
function FacePos(pos)
6407
    local torso, torsoPos = torso, HumanoidRootPart.CFrame.p
6408
    local torso = Char:FindFirstChild'Torso'
6409
    if pos == 'mouse' or not pos then
6410
        pos = CFrame.new(torsoPos, Vector3.new(mouse.Hit.X,torsoPos.Y,mouse.Hit.Z))
6411
	else
6412
		pos = CFrame.new(torsoPos, pos.p)
6413
    end
6414
    if torso then
6415
        HumanoidRootPart.CFrame = lerp(HumanoidRootPart.CFrame,pos,.3)
6416
    end
6417
end
6418
6419
local function lwait(i, output)
6420
	--[[ 
6421
	i, output = i or 0, output or false
6422
	local lrs = game:service'RunService'.Stepped
6423
	local ifps = 1 / (i / lrs:wait())
6424
	local total = 0
6425
	for asd = 0, (i - ifps) / i, ifps / 1.6 do
6426
		if output then
6427
			warn(asd)
6428
		end
6429
		total = asd * i
6430
		lrs:wait()
6431
	end
6432
	return total, (i / ifps) / ifps, ifps
6433
	==]]
6434
	return wait(i)
6435
end
6436
6437
local function Tween(Object, Time, Style, Direction, Properties)
6438
	local S = type(Style) == 'string' and Enum.EasingStyle[Style] or Style
6439
	local D = type(Direction) == 'string' and Enum.EasingDirection[Direction] or Direction
6440
	local TweenService = game:GetService("TweenService")
6441
	local TweenData = TweenInfo.new(Time, S, D, 0, false, 0)
6442
	local Result = TweenService:Create(Object, TweenData, Properties)
6443
	Result:Play()
6444
end
6445
6446
local walkspd = 16
6447
local sine, change = 0, 1
6448
6449
--// Model
6450
6451
local Welds = {};
6452
local Parts = {};
6453
6454
local function Join(Main, Parent) --// AutoWeld
6455
	for Index, Object in next, Parent:GetChildren() do
6456
		if Object:IsA('BasePart') then
6457
			for i = 0, 5 do
6458
				if Object:FindFirstChildOfClass('Weld') then
6459
					Object:FindFirstChildOfClass('Weld'):Destroy()
6460
				end
6461
			end
6462
			if Object ~= Main then
6463
				Parts[#Parts + 1] = Object
6464
				Object.Anchored, Object.CanCollide, Object.Locked = false, false, true
6465
				local w = Weld(Main, Object, Main.CFrame:toObjectSpace(Object.CFrame))
6466
				w.Name = Object.Name..':'..Main.Name
6467
				w.Parent = script
6468
				Welds[#Welds + 1] = {w, Main}
6469
			else
6470
				Parts[#Parts + 1] = Main
6471
				Main.Anchored, Main.CanCollide, Main.Locked = false, false, true
6472
			end
6473
		end
6474
	end
6475
end
6476
6477
--game:GetService('StarterGui'):SetCoreGuiEnabled(3, false)
6478
6479
local RStorage = game:GetService('ReplicatedStorage');
6480
local LG = RStorage:WaitForChild('Left', 5)
6481
local RG = RStorage:WaitForChild('Right', 5)
6482
local Melee = RStorage:WaitForChild('Melee', 5)
6483
6484
if LG == nil or RG == nil or Melee == nil then
6485
	Character:BreakJoints()
6486
	return
6487
end
6488
6489
LG = LG:Clone()
6490
RG = RG:Clone()
6491
Melee = Melee:Clone()
6492
6493
local LHA, LHI = LG.Handle, LG.Hitbox
6494
local RHA = RG.Handle
6495
local SHA, SHI = Melee.Handle, Melee.Hitbox
6496
6497
local trailTop = Instance.new('Part')
6498
trailTop.CFrame=SHI.CFrame*CFrame.new(0,-SHI.Size.Y/2,0)
6499
trailTop.Size=Vector3.new(1,1,1)
6500
trailTop.Transparency=1
6501
trailTop.Color=Color3.new(1,0,0)
6502
trailTop.Anchored=true
6503
6504
local trailBottom = Instance.new('Part')
6505
trailBottom.CFrame=SHI.CFrame*CFrame.new(0,(SHI.Size.Y/2),0)
6506
trailBottom.Size=Vector3.new(1,1,1)
6507
trailBottom.Transparency=1
6508
trailBottom.Color=Color3.new(0,1,0)
6509
trailBottom.Anchored=true
6510
6511
trailTop.Parent=Melee
6512
trailBottom.Parent=Melee
6513
6514
local TrailSettings = {
6515
	Lifetime = .1,
6516
	Transparency = NumberSequence.new(.5,1),
6517
	Texture = 'rbxassetid://31270182',
6518
	Color1 = ColorSequence.new(BrickColor.new'Alder'.Color,Color3.new(1,1,1)),
6519
}
6520
6521
local A0 = Instance.new('Attachment', trailTop)
6522
local A1 = Instance.new('Attachment', trailBottom)
6523
6524
local Trail = Instance.new('Trail', Character)
6525
Trail.Attachment0 = A0
6526
Trail.Attachment1 = A1
6527
Trail.FaceCamera=false
6528
Trail.Transparency = TrailSettings.Transparency
6529
Trail.Texture = TrailSettings.Texture
6530
Trail.Color = TrailSettings.Color1
6531
Trail.Lifetime = TrailSettings.Lifetime
6532
6533
Join(LHA, LG)
6534
Join(RHA, RG)
6535
Join(SHA, Melee)
6536
Join(SHA, Melee.Rune)
6537
6538
local MeshEffects = RStorage:WaitForChild('Effects'):Clone()
6539
MeshEffects.Parent = nil
6540
6541
for Index, Array in next, Welds do
6542
	Array[1].Parent = Array[2]
6543
end
6544
6545
local Set = {
6546
	['Really black'] = {Color = Color3.new(0, 0, 0), Material = 'Grass'};
6547
	Others = {}--Color = Color3.new(0, 0, 0), Material = 'SmoothPlastic'};
6548
};
6549
6550
local Exceptions = {};
6551
6552
for Index, Object in next, Parts do
6553
	local Pardoned = false
6554
	for Index, Model in next, Exceptions do
6555
		if Object.Parent == Model then
6556
			Pardoned = true
6557
		end
6558
	end
6559
	if Object:IsA('BasePart') and not Pardoned then
6560
		Object.Anchored, Object.Locked, Object.CanCollide = false, true, false
6561
		if Object.ClassName:find('UnionOperation') then
6562
			Object.UsePartColor = true
6563
		end
6564
		local WasSet = false
6565
		for Look, Data in next, Set do
6566
			if tostring(Object.BrickColor) == Look then
6567
				WasSet = true
6568
				for Index, Value in next, Data do
6569
					pcall(function()
6570
						Object[Index] = Value
6571
					end)
6572
				end
6573
			end
6574
		end
6575
		if not WasSet then
6576
			for Index, Value in next, Set.Others do
6577
				pcall(function()
6578
					Object[Index] = Value
6579
				end)
6580
			end
6581
		end
6582
	end
6583
end
6584
6585
--// Welds
6586
6587
local llw = Weld(Left_Leg, Torso, cf(.5,2,0))
6588
local rlw = Weld(Right_Leg, Torso, cf(-.5,2,0))
6589
local raw = Weld(Right_Arm, Torso, cf(-1.5,0,0))
6590
local law = Weld(Left_Arm, Torso, cf(1.5,0,0))
6591
local torw = Weld(Torso, HumanoidRootPart, cf(0,0,0))
6592
local hedw = Weld(Head, Torso, cf(0,-1.5,0))
6593
local lhw = Weld(Left_Arm, LHA, cf(0,0,0))
6594
local rhw = Weld(Right_Arm, RHA, cf(0,0,0)*ang(0,0,0))
6595
local shw = Weld(Right_Arm, SHA, cf(0,-1,0)*ang(0,-rad(90),-rad(90)))
6596
6597
LG.Parent, RG.Parent, Melee.Parent = script, script, script
6598
6599
--[[ State Example: Arms Out
6600
	raw.C0 = clerp(raw.C0, cf(0,.5,-.5)*ang(rad(90),0,0),.1)
6601
	law.C0 = clerp(law.C0, cf(0,.5,-.5)*ang(rad(90),0,0),.1)
6602
--]]
6603
6604
local keyz={};
6605
local Used = {
6606
	Executed={};
6607
	Failed={};
6608
};
6609
6610
local BindKey = function(Name, Key, Function)
6611
	local keydown
6612
	keyz[Key:upper()]=Name
6613
	keydown = mouse.KeyDown:connect(function(key)
6614
		if Key:lower() == key:lower() then
6615
			local detect=dkd
6616
			if dkd then
6617
				table.insert(Used.Failed, {Name, Key, Function})        
6618
			elseif not dkd and Walking then
6619
				if NotifyKeyPresses then
6620
					warn('executed('..Name..', "'..tostring(Key:upper())..'")')
6621
				end
6622
				Function(Name, Key)
6623
				if NotifyKeyPresses then
6624
					warn('ended('..Name..')')
6625
				end
6626
				table.insert(Used.Executed, {Name, Key, Function})
6627
			elseif Walking then
6628
				warn('You must Walking enabled to use this key')
6629
			end
6630
		end
6631
	end)        
6632
end
6633
6634
local pitches = {}
6635
for i = -.1,.1,.01 do table.insert(pitches,1.5+i) end
6636
6637
--[[
6638
6639
BindKey('Attack Name', 'Key{Not case sensative}', function(AttackName, Key)
6640
	ds,dkd = true,true
6641
	for i = 0,1,.05 do
6642
		local animspd = .1
6643
		local Right_Arm_ = cf(0,0,0)
6644
		local Left_Arm_ = cf(0,0,0)
6645
		local Right_Leg_ = cf(0,0,0)
6646
		local Left_Leg_ = cf(0,0,0)
6647
		local Head_ = cf(0,0,0)
6648
		local Torso_ = cf(0,0,0)
6649
		
6650
		torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
6651
		hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
6652
		law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
6653
		raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
6654
		rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
6655
		llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
6656
		lrs:wait()
6657
		lrs:wait()
6658
	end
6659
	for i = 0,1,.05 do
6660
		local animspd = .1
6661
		local Right_Arm_ = cf(0,0,0)
6662
		local Left_Arm_ = cf(0,0,0)
6663
		local Right_Leg_ = cf(0,0,0)
6664
		local Left_Leg_ = cf(0,0,0)
6665
		local Head_ = cf(0,0,0)
6666
		local Torso_ = cf(0,0,0)
6667
		
6668
		torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
6669
		hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
6670
		law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
6671
		raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
6672
		rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
6673
		llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
6674
		lrs:wait()
6675
	end
6676
	ds,dkd = false,false
6677
end)
6678
6679
--]]
6680
6681
function rainb(hue)
6682
    local section = hue % 1 * 3
6683
    local secondary = 0.5 * math.pi * (section % 1)
6684
    if section < 1 then
6685
        return c3(1, 1 - cos(secondary), 1 - sin(secondary))
6686
    elseif section < 2 then
6687
		return c3(1 - sin(secondary), 1, 1 - cos(secondary))
6688
    else
6689
        return c3(1 - cos(secondary), 1 - sin(secondary), 1)
6690
    end
6691
end
6692
6693
function showDmg(To, From, Txt, Others)
6694
	local bc,c3=BrickColor.new,Color3.new
6695
	local vec3,cf=Vector3.new,CFrame.new
6696
	local rand=math.random
6697
	local n = 2
6698
	local lrs=game:service'RunService'.Stepped
6699
	local Color = 'Pearl'
6700
	local Clr_Raw = Color
6701
	if Clr == nil then Clr = 'Pearl' end
6702
	Clr = bc(Color).Color
6703
	local Pert = Instance.new('Part', Character)
6704
	Pert.Size = vec3(.2,.2,.2)
6705
	Pert.Transparency = 1
6706
	Pert.CanCollide = false
6707
	Pert.Anchored = true
6708
	Pert.CFrame = To:FindFirstChild'Head'.CFrame * cf(rand(-n,n),n,rand(-n,n))
6709
	Pert.BrickColor = bc('Black')
6710
	local Rod = nil
6711
	if (Others.Rod ~= nil and Others.Rod == true) then
6712
		Rod = Instance.new('Part', Character)
6713
		local to,from = Pert.CFrame.p, From:WaitForChild'HumanoidRootPart'.CFrame.p
6714
		local dist = (to-from).magnitude
6715
		Rod.Size = vec3(.2,.2,dist)
6716
		Instance.new('BlockMesh',Rod).Scale=vec3(.1,.1,1)
6717
		Rod.CFrame = cf(to,from)*cf(0,0,-dist/2)
6718
		Rod.Transparency = .5 or Rod.RodTrans
6719
		Rod.CanCollide = false
6720
		Rod.Anchored = true
6721
		Rod.BrickColor = bc(Clr_Raw)
6722
	end
6723
	local Gui = Instance.new('BillboardGui',Pert)
6724
	Gui.Adornee = Pert
6725
	local n2 = 10
6726
	Gui.Size = UDim2.new(n2,0,n2,0)
6727
	local TextL = Instance.new('TextLabel', Gui)
6728
	local r,g,b = Clr.r,Clr.g,Clr.b
6729
	local clr = c3(r,g,b)
6730
	TextL.BackgroundTransparency = 1
6731
	TextL.Font = 'SciFi'
6732
	TextL.Size = UDim2.new(1,0,1,0)
6733
	TextL.TextTransparency = .1
6734
	TextL.TextStrokeTransparency = .2
6735
	TextL.TextStrokeColor3 = clr
6736
	TextL.Position = UDim2.new(0,0,0,0)
6737
	Txt=tostring(Txt):upper()
6738
	if string.find(Txt:lower(),'critical') or (Others.Crit ~= nil and Others.Crit == true)then
6739
		Txt='(CRITICAL) // '..Txt
6740
	end
6741
	TextL.Text=Txt
6742
	TextL.TextScaled = false
6743
	TextL.FontSize = 'Size18'
6744
	TextL.TextColor3 = Color3.new(1,1,1)
6745
	local sp = Pert.CFrame*cf(rand(n,n*2),rand(n,n*2),rand(n,n*2)) --Pert.CFrame * cf(rand(-n,n),n,rand(-n,n))
6746
	delay(.1,function()
6747
		repeat lrs:wait()
6748
			TextL.TextTransparency=TextL.TextTransparency+.005
6749
			TextL.TextStrokeTransparency=TextL.TextStrokeTransparency+.005
6750
			if Rod ~= nil then
6751
				Rod.Transparency = Rod.Transparency + .0025
6752
			end
6753
			Pert.CFrame = Pert.CFrame:lerp(sp,.01)
6754
			clr = c3(r,g,b)
6755
			if Rod ~= nil then
6756
				local to,from = Pert.CFrame.p, From:WaitForChild'HumanoidRootPart'.CFrame.p
6757
				local dist = (to-from).magnitude
6758
				Rod.Size = vec3(.2,.2,dist)
6759
				Rod.CFrame = cf(to,from)*cf(0,0,-dist/2)
6760
			end
6761
			--TextL.TextColor3 = clr
6762
		until TextL.TextTransparency>=1
6763
		Pert:Destroy()
6764
		if Rod ~= nil then
6765
			Rod:Destroy()
6766
		end
6767
	end)
6768
end
6769
6770
--// Example // showDmg(workspace.SavageMunkey, workspace.Base, 'Damage Dealt'..math.random(0,100), {Rod=false,RodTrans=0,Crit=false})
6771
6772
function CheckIfLanded()
6773
	local Ray = Ray.new(root.Position,vec3(0,-1,0)*3.5)
6774
	local Ignore = {Char}
6775
	local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
6776
	if Hit == nil then return false,nil end
6777
	return true, Hit
6778
end;
6779
6780
function FindNearestTorso(Position, Distance, SinglePlayer)
6781
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
6782
        local List = {}
6783
        for i,v in pairs(workspace:GetChildren())do
6784
            if v:IsA("Model")then
6785
                if v:findFirstChild("Torso")then
6786
                    if v ~= Char then
6787
                        if(v.Torso.Position -Position).magnitude <= Distance then
6788
                            table.insert(List,v)
6789
                        end 
6790
                    end 
6791
                end 
6792
            end 
6793
        end
6794
    return List
6795
end
6796
6797
local function ExpellWithForce(Origin, Radius, Force, OnHit, Break, Ignore)
6798
	Origin = Origin or Vector3.new()
6799
	Origin = typeof(Origin) == 'Vector3' and Origin or Origin.p
6800
	Ignore = Ignore or {};
6801
	Ignore = typeof(Ignore) == 'table' and Ignore or {};
6802
	Radius = Radius or 5
6803
	Force = Force or 50
6804
	if Break == nil then
6805
		Break = true
6806
	end
6807
	OnHit = OnHit or function(Part, Distance) 
6808
		--// oof
6809
	end
6810
	
6811
	local SearchRegion = Region3.new(Origin - Vector3.new(Radius, Radius, Radius),Origin + Vector3.new(Radius, Radius, Radius))
6812
	local Parts = workspace:FindPartsInRegion3WithIgnoreList(SearchRegion, Ignore, 100)
6813
	
6814
	for Index, Part in next, Parts do
6815
		spawn(function()
6816
			OnHit(Part, (Origin - Part.Position).magnitude)
6817
		end)
6818
		if not Part.Anchored then
6819
			if Break then
6820
				Part:BreakJoints()
6821
			end
6822
			local Direction = CFrame.new(Origin, Part.Position).lookVector * Force
6823
			local Propell = Instance.new('BodyVelocity')
6824
			Propell.Velocity = Direction
6825
			Propell.Parent = Part
6826
			spawn(function()
6827
				game:GetService('RunService').Stepped:wait()
6828
				Propell:Destroy()
6829
			end)
6830
		end
6831
	end
6832
end
6833
6834
function NewFXBox(name,prnt)
6835
	if prnt == nil then
6836
		prnt = Character
6837
	end
6838
	local FXBox = Instance.new('Model', prnt)
6839
	FXBox.Name = 'FXBox'
6840
	if name then
6841
		FXBox.Name = name
6842
	end
6843
	local Count = 0
6844
	local Check
6845
	Check = FXBox.ChildAdded:connect(function(Object)
6846
		if Object:IsA'BasePart' then
6847
			FXBox.PrimaryPart = Object
6848
			Check:disconnect()
6849
		end
6850
	end)
6851
	return FXBox
6852
end
6853
6854
function ReSurface(Part, Integer)
6855
	if Part ~= nil and Part:IsA'BasePart' then
6856
		Part.TopSurface = Integer
6857
		Part.BottomSurface = Integer
6858
		Part.LeftSurface = Integer
6859
		Part.RightSurface = Integer
6860
		Part.FrontSurface = Integer
6861
		Part.BackSurface = Integer
6862
	end
6863
end
6864
6865
function ni(name,prnt)
6866
	return Instance.new(tostring(name),prnt)
6867
end
6868
6869
local FX = NewFXBox('FXBox', Character)
6870
function NewObject(Type, prnt, others)
6871
	if not prnt then prnt = workspace end
6872
	local New = ni(Type)
6873
	if New:IsA'BasePart' then
6874
		ReSurface(New,10)
6875
		New.Anchored = true
6876
		New.Size = vec3(1,1,1)
6877
		New.CanCollide = false
6878
	end
6879
	for i,v in next, others do
6880
		local suc,err = pcall(function()
6881
			New[i] = v
6882
		end)
6883
		if not suc then
6884
			print(err)
6885
		end
6886
	end
6887
	New.Parent = prnt
6888
	return New
6889
end
6890
6891
function NewPart(prnt)
6892
	return NewObject('Part', prnt, {Anchored = true, Size = Vector3.new(1,1,1), CanCollide = false, CFrame = prnt:IsA'BasePart' and prnt.CFrame or CFrame.new(0,1,0)})
6893
end
6894
6895
function OnHumanoidFind(Detector, Offset, Function, Range, Multi) --// R15 Support
6896
    spawn(function()
6897
        if not Multi then Multi = false end
6898
        local PlayerModels={};
6899
        local SearchAndStuff
6900
        local First = true
6901
        SearchAndStuff=function(Parent)
6902
            for Index, Obj in next, Parent:children() do
6903
                if Obj:IsA'Model' and Obj:FindFirstChild'Humanoid' then
6904
                    if Obj:FindFirstChild'HumanoidRootPart' and (Obj.HumanoidRootPart.CFrame.p-(Detector.CFrame*Offset).p).magnitude <= Range and Obj~=char then
6905
                        --print'derp'
6906
                        table.insert(PlayerModels, Obj)
6907
                        if First then
6908
                            if not Multi then
6909
                                First = false
6910
                            end
6911
                            pcall(function()
6912
                                Obj.Health.Disabled = true
6913
                            end)
6914
                            spawn(function()
6915
                                Function(Obj:WaitForChild'HumanoidRootPart', Obj:WaitForChild'Humanoid', Obj)
6916
                            end)
6917
                        end
6918
                    end
6919
                end
6920
                SearchAndStuff(Obj)
6921
            end
6922
        end
6923
        SearchAndStuff(workspace)
6924
        return PlayerModels
6925
    end)
6926
end
6927
6928
function debri(item,time)
6929
	return game:service'Debris':AddItem(item,time)
6930
end
6931
6932
local effects={MagicCircles={};};
6933
local trans={};
6934
local grows={}
6935
6936
function effects:MagicCircle(waitt, id, Offset,clr,sz)
6937
	sz=sz or 4.5
6938
	local mcPart=NewObject('Part', FX,{Transparency=1,Size=vec3(sz,sz,.2)})
6939
	debri(mcPart, 40)
6940
	clr=clr or 'Pearl'
6941
	local mesh=NewObject('BlockMesh',mcPart,{Scale=vec3(1,1,0)})
6942
	local backDecal=NewObject('Decal',mcPart,{Color3=bc(clr).Color,Face='Back',Texture=rbx..id})
6943
	local frontDecal=NewObject('Decal',mcPart,{Color3=bc(clr).Color,Face='Front',Texture=rbx..id})
6944
	local r=rand()
6945
	local dir=5
6946
	if r>.5 then dir=-5 end
6947
	spawn(function()
6948
		repeat lwait() until frontDecal.Parent==nil mcPart:Destroy()
6949
	end)
6950
	table.insert(effects.MagicCircles, {mcPart,backDecal,frontDecal,dir})
6951
	mcPart.CFrame = Offset
6952
	delay(waitt,function() trans[backDecal]={.05,1} trans[frontDecal]={.05,1}end)
6953
	return mcPart,frontDecal,backDecal
6954
end
6955
6956
function effects:particle(waitt,mx,num, shape,Offset, clrz,cancollide)
6957
	local sz={};
6958
	if not clrz or #clrz < 1 then
6959
		clrz={'Alder','Pearl'}
6960
	end
6961
	for i = .4,mx,.025 do table.insert(sz,i) end
6962
	local tings={};
6963
	for i = 1,num do
6964
		local val = sz[rand(1,#sz)]
6965
		local part=NewObject('Part', FX,{Material='Neon', CanCollide=cancollide,Shape=shape, Transparency=.6,Size=vec3(val,val,val),Color = bc(clrz[rand(1,#clrz)]).Color, CFrame = Offset*ang(rad(rand(-360,360)),rad(rand(-360,360)),rad(rand(-360,360)))})
6966
		tings[i]=part
6967
		delay(waitt,function() trans[part]={.05,1} end)
6968
	end
6969
	return tings
6970
end
6971
6972
function effects:Debris(cancollide, radius, mx, num, pos, waitt,velocitymax)
6973
	local Ray = Ray.new(pos+vec3(0,1,0),vec3(0,-1,0)*5)
6974
	local Ignore = {FX,Character}
6975
	local Hit, Pos, SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
6976
	local tings={};
6977
	if Hit then
6978
		local sz={};
6979
		for i = .2,mx,.025 do table.insert(sz,i) end
6980
		for i = 1,num do
6981
			local val = sz[rand(1,#sz)]
6982
			local y = 45
6983
			if not cancollide then y = 65 end
6984
			local top,bottom=velocitymax[1],velocitymax[2]
6985
			local x,z=rand(bottom,top),rand(bottom,top)
6986
			local part=NewObject('Part', FX,{Anchored=false, Velocity = vec3(rand(-x,x),y,rand(-z,z)), Material=Hit.Material, CanCollide=cancollide, Transparency=Hit.Transparency,Size=vec3(val,val,val),Color = Hit.Color, CFrame = cf(pos)*cf(rand(-radius,radius),0,rand(-radius,radius))*ang(rad(rand(-360,360)),rad(rand(-360,360)),rad(rand(-360,360)))})
6987
			tings[i]=part
6988
			if cancollide then
6989
				delay(waitt,function() trans[part]={.05,1} end)
6990
			end
6991
		end
6992
		return tings
6993
	else
6994
		--// Derp
6995
	end
6996
end
6997
6998
function effects:Crown(waitt, origin, sz, height,clr, others,ut)
6999
	local props={CanCollide=false,Anchored=true,Size=vec3(sz,height,sz),Color = bc(clr).Color, CFrame = origin*ang(0,rad(rand(-360,360)),0)}
7000
	for i,v in next, others do
7001
		props[i]=v
7002
	end
7003
	local cr=MeshEffects.Crown:Clone()
7004
	for i,v in next, props do
7005
		if tostring(i)~='Parent' then
7006
			pcall(function() cr[i]=v end)
7007
		end
7008
	end
7009
	cr.Parent=FX
7010
	delay(waitt,function() trans[cr]={ut,1} end)
7011
	return cr
7012
end
7013
7014
function effects:Ring(waitt, origin, sz, height,clr, slim, others,ut)
7015
	local props={CanCollide=false,Anchored=true,Size=vec3(sz,height,sz),Color = bc(clr).Color, CFrame = origin*ang(0,rad(rand(-360,360)),0)}
7016
	slim = slim or false
7017
	others = others or {};
7018
	for i,v in next, others do
7019
		props[i]=v
7020
	end
7021
	local cr=MeshEffects[slim and 'Ring' or 'Donut']:Clone()
7022
	for i,v in next, props do
7023
		if tostring(i)~='Parent' then
7024
			pcall(function() cr[i]=v end)
7025
		end
7026
	end
7027
	cr.Parent=FX
7028
	delay(waitt,function() trans[cr]={ut,1} end)
7029
	return cr
7030
end
7031
7032
function effects:BlastRad(cancollide, radius, num, mx, pos, waitt)
7033
	local Ray = Ray.new(pos+vec3(0,1,0),vec3(0,-1,0)*5)
7034
	local Ignore = {FX,Character}
7035
	local Hit, Pos, SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
7036
	local tings={};
7037
	local org=mx/4
7038
	mx=mx
7039
	if Hit then
7040
		local sz={};
7041
		for i = .2,num,.025 do table.insert(sz,i) end
7042
		for i = 1,360,mx do
7043
			local val = sz[rand(1,#sz)]
7044
			local function rr()
7045
				local vlz={}
7046
				for i = .45,1,.025 do table.insert(vlz,i) end
7047
				return vlz[rand(1,#vlz)]
7048
			end
7049
			local part=NewObject('Part', FX,{Material=Hit.Material, CanCollide=cancollide, Transparency=Hit.Transparency,Size=vec3(val/rr(),val/rr(),val/rr()),Color = Hit.Color, CFrame = cf(pos) * ang(0,rad(i),0)*cf(radius,(Hit.CFrame.Y+(Hit.Size.Y/2))-val,0)*ang(rad(rand(-360,360)),rad(rand(-360,360)),rad(rand(-360,360)))})
7050
			tings[i]=part
7051
			if cancollide then
7052
				delay(waitt,function() trans[part]={.05,1} end)
7053
			end
7054
		end
7055
		return tings
7056
	else
7057
		--// Derp
7058
	end
7059
end
7060
7061
--[[ examples
7062
	effects:BlastRad(true, 15, 2, 18, pos, .5)
7063
	
7064
	effects:Debris(true, 2.5, 2, rand(10,20), pos, .5,{50,25})
7065
	
7066
	effects:MagicCircle(.15,124339738, cf(0,-1.5,0))
7067
	
7068
	effects:Particle(.5,1.2,rand(2,5),'Ball',cf(0,-1.5,0),{'Pearl','Pearl'})
7069
--]]
7070
7071
function SetSwordTransparency(Transparency, Speed)
7072
	Speed = Speed or .5
7073
	for Index, Obj in next, Parts do
7074
		if Obj:IsDescendantOf(Melee) and Obj ~= SHA and Obj ~= trailTop and Obj ~= trailBottom then
7075
			Tween(Obj, Speed, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, {Transparency = Transparency})
7076
		end
7077
	end
7078
	lwait(Speed)
7079
end
7080
7081
function FadeSword(Type)
7082
	if Type == 'Out' then
7083
		snd(588738712,root,true)
7084
		SetSwordTransparency(1, .5)
7085
	elseif Type == 'In' then
7086
		snd(588733880,root,true)
7087
		SetSwordTransparency(0, .5)
7088
	end
7089
	if Type == 'In' or Type == 'Out' then
7090
		--// asd
7091
	else
7092
		warn('Invalid Tween Type')
7093
	end
7094
end
7095
7096
local function CalculateArc(Smoothness, From, To)
7097
	local PeakFactor = 5
7098
	local Peak, To = (From - To).magnitude / PeakFactor, To - Vector3.new(0, From.Y, 0)
7099
	local Algorithm = math.abs(2 * (Peak * 2 - From.Y + To.Y))
7100
	local Fraction, Last, Return = (1 / (Peak * PeakFactor)) / Smoothness, From, {};
7101
	for Integer = 0, 1, Fraction do
7102
		local New = CFrame.new(From:lerp(To, Integer) + Vector3.new(0, -Algorithm * Integer ^ 2 + Algorithm * Integer + From.Y, 0))
7103
		Return[#Return + 1] = New.p
7104
	end
7105
	return Return
7106
end
7107
7108
local function DisplayArc(Arc)
7109
	local Storage, Last = Instance.new('Folder', script), Arc[1]
7110
	for Index, Point in next, Arc do
7111
		if Index > 1 then
7112
			local Part = Instance.new('Part')
7113
			Part.Anchored = true
7114
			Part.Material = 'Plastic'
7115
			Part.BrickColor = BrickColor.new('Buttermilk')
7116
			Part.TopSurface, Part.BottomSurface = 0, 0
7117
			Part.CanCollide = false
7118
			local Distance = (Last - Point).magnitude
7119
			Part.Size = Vector3.new(.15, .15, Distance)
7120
			Part.CFrame = CFrame.new(Point, Last) * CFrame.new(0, 0, -Distance / 2)
7121
			Part.Parent = Storage
7122
		end
7123
		Last = Point
7124
	end
7125
	return Storage
7126
end 
7127
7128
local function TweenC0(Obj, C0, Style, Direction, Time)
7129
	local S = type(Style) == 'string' and Enum.EasingStyle[Style] or Style
7130
	local D = type(Direction) == 'string' and Enum.EasingDirection[Direction] or Direction
7131
	return Tween(Obj, Time, S, D, {C0 = C0})
7132
end
7133
7134
local function TweenJoints(Array)
7135
	local Style, Direction, Time = Array.Style, Array.Direction, Array.Time
7136
	TweenC0(torw, CFrame.new(0,0,0) * Array.Torso_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
7137
	TweenC0(hedw, CFrame.new(0,0,0) * Array.Head_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
7138
	TweenC0(law, CFrame.new(0,0,0) * Array.Left_Arm_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
7139
	TweenC0(raw, CFrame.new(0,0,0) * Array.Right_Arm_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
7140
	TweenC0(rlw, CFrame.new(0,0,0) * Array.Right_Leg_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
7141
	TweenC0(llw, CFrame.new(0,0,0) * Array.Left_Leg_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
7142
	lwait(Time)
7143
end
7144
7145
BindKey('Shatter', 'g', function()
7146
	local actual,floor = CheckIfLanded(5)
7147
	if floor ~= nil then
7148
		dkd,ds = true,true
7149
		walkspd=0
7150
		spawn(function()
7151
			FadeSword'Out'
7152
		end)
7153
		spawn(function()
7154
			TweenJoints{
7155
				Style = 'Quad',
7156
				Direction = 'InOut',
7157
				Time = 2,
7158
				Right_Arm_ = CFrame.new(0.465010166, -0.439316332, -0.871765137, 0.747874916, -0.654143095, 0.1130483, 0.493739158, 0.434284091, -0.753404915, 0.443739593, 0.619269013, 0.647766173),
7159
				Left_Arm_ = CFrame.new(-0.170354724, -0.342900693, -0.237001896, 0.933956206, 0.284371793, 0.216468185, -0.290408731, 0.95689404, -0.00408667326, -0.208299309, -0.0590473711, 0.976281226),
7160
				Right_Leg_ = CFrame.new(5.82933426e-05, -0.162627101, -0.864352643, 0.99999994, 5.28991222e-07, 8.41915607e-07, -7.22706318e-07, 0.963203788, 0.268772095, -6.85453415e-07, -0.268772036, 0.963203907),
7161
				Left_Leg_ = CFrame.new(0.0951830149, 0.54995501, -0.323918521, 0.984639764, 0.100627825, 0.142683357, -0.0181532614, 0.871783793, -0.489554465, -0.173651829, 0.479444683, 0.860219717),
7162
				Head_ = CFrame.new(-0.0422370695, 0.00290894508, -0.0818053484, 0.984639764, 0.0281961933, 0.172306329, -0.0181532614, 0.99805814, -0.0595857799, -0.173651829, 0.0555427074, 0.983239532),
7163
				Torso_ = CFrame.new(0.0194549561, -0.49135685, -0.340732574, 0.984639764, -0.0181533415, -0.173651904, 0.131810531, 0.729528904, 0.671128631, 0.114500739, -0.683708429, 0.720715284),
7164
			}
7165
		end)
7166
		local s2=snd(588697034,root)
7167
		s2.Pitch=1
7168
		s2:Play()
7169
		for i = 1,3 do
7170
			lwait(.4)
7171
			local s = snd(588738949, root)
7172
			s.Pitch=1+(i/3)
7173
			s:Play()
7174
			effects:MagicCircle(2, 124339738, Right_Arm.CFrame*cf(0,1.25+i,0)*ang(rad(90),0,0),'Alder',.4+(i*2))
7175
		end
7176
		lwait(1)
7177
		local pe=effects:particle(.5,1.2,rand(2,5),'Cylinder',Right_Arm.CFrame*cf(0,1.25,0),{'Alder','Pearl'})
7178
		for i,v in next, pe do
7179
			v.Material='Neon'
7180
			v.Transparency=.5
7181
		end
7182
		TweenJoints{
7183
			Style = 'Bounce',
7184
			Direction = 'Out',
7185
			Time = .1,
7186
			Right_Arm_ = CFrame.new(-0.0323668718, -0.33607614, -1.25630379, 0.91932112, -0.32731083, 0.218440875, 0.34712559, 0.413077384, -0.841944814, 0.185344651, 0.849843979, 0.493368685),
7187
			Left_Arm_ = CFrame.new(-0.209303617, -0.521940768, 0.209407374, 0.936596692, 0.341231942, 0.0796716437, -0.350254416, 0.904899955, 0.24182263, 0.0104227364, -0.254395574, 0.967044115),
7188
			Right_Leg_ = CFrame.new(-0.144759536, -0.00181019306, -0.561343014, 0.955083072, -0.217188269, -0.201608062, 0.221891105, 0.975071311, 0.000745773315, 0.196420282, -0.0454473495, 0.979466081),
7189
			Left_Leg_ = CFrame.new(-0.314982504, 0.547448993, 0.130197883, 0.968778491, -0.198621765, 0.148383692, 0.246814638, 0.715970933, -0.653045356, 0.0234706104, 0.669279575, 0.742639899),
7190
			Head_ = CFrame.new(0.181634739, 0.0164057016, -0.124970227, 0.991457701, -0.121056765, 0.0485501736, 0.124629587, 0.989057779, -0.0789446831, -0.0384620987, 0.0843212008, 0.995696187),
7191
			Torso_ = CFrame.new(0.35552597, -0.773739338, -0.511285782, 0.919321179, 0.34712553, 0.185344562, -0.344054341, 0.480445355, 0.806721151, 0.190985352, -0.80540365, 0.561113119),
7192
		}
7193
		Tween(s2, .1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, {Volume=0,Pitch=0})
7194
		lwait(.08)
7195
		OnHumanoidFind(root, cf(0,0,0), function(proot,phum,body)
7196
			local dmg = math.random(20,35)
7197
			phum.Health = phum.Health - dmg
7198
			showDmg(body, Character,  dmg, {Rod=true,RodTrans=0,Crit=math.random()>.85})
7199
			phum.PlatformStand=proot:GetMass()<4 and true or false
7200
			delay(1,function()
7201
				phum.PlatformStand=false
7202
			end)
7203
		end, 15, true)
7204
		ExpellWithForce(Right_Arm.CFrame*cf(0,-.5,0), 15, math.random(30,80), function(Part, Distance)
7205
		end, false, {workspace:FindFirstChild'Base', Character})
7206
		local cr=effects:Crown(.5, cf((Right_Arm.CFrame*cf(0,-.5,0)).p), 10, 1, tostring(floor.BrickColor),{Material=floor.Material},.2)
7207
		local cr2=effects:Ring(0, cf((Right_Arm.CFrame*cf(0,-.5,0)).p), 10, 2, tostring(floor.BrickColor),false,{Material=floor.Material},.15)
7208
		table.insert(grows,{{cr},vec3(4,0,4)*4,ang(0,rad(10),0)})
7209
		table.insert(grows,{{cr2},vec3(2,0,2)*4,ang(0,0,0)})
7210
		s2:Destroy()
7211
		snd(610359590,root,true)
7212
		snd(610359515,root,true)
7213
		snd(471882019,root,true)
7214
		snd(284228088,root,true)
7215
		effects:Debris(true, 2.5, 2, rand(10,20), (Right_Arm.CFrame*CFrame.new(0,-1,0)).p, .5,{50,25})
7216
		effects:BlastRad(true, 10, 4, 6, (Right_Arm.CFrame*cf(0,-1,0)).p, .5)
7217
		lwait(.2)
7218
		dkd,ds = false,false
7219
		FadeSword'In'
7220
	end
7221
end)
7222
7223
local canmine=true
7224
BindKey('Mine', 'x', function(an,key)
7225
	if canmine then
7226
		canmine=false
7227
		ds,dkd = true,true
7228
		walkspd=0
7229
		TweenJoints{
7230
			Style = 'Quint',
7231
			Direction = 'In',
7232
			Time = .1,
7233
			Right_Arm_ = CFrame.new(0.206053138, -0.214844942, 4.48524952e-06, 0.950437307, -0.310916245, 3.57627869e-07, 0.310916275, 0.950437307, 4.52626892e-07, -4.47034836e-07, -3.27825546e-07, 0.99999994),
7234
			Left_Arm_ = CFrame.new(-0.450706005, 0.440005541, -1.68257201, 0.674415231, 0.738352239, -3.22744e-08, 0, -4.37113883e-08, -1, -0.738352239, 0.674415231, -2.94796259e-08),
7235
			Right_Leg_ = CFrame.new(4.7981739e-06, 1.08480453e-05, 3.81469727e-06, 0.99999994, 0, 0, 0, 1, 0, 0, 0, 0.99999994),
7236
			Left_Leg_ = CFrame.new(-0.280058563, -0.0610874891, -0.665026188, 0.889047265, -0.112292051, 0.443835318, 4.33083471e-07, 0.969455719, 0.245275185, -0.457815409, -0.218061626, 0.861891985),
7237
			Head_ = CFrame.new(0, -6.10351563e-05, 0, 0.560465097, 0, 0.828179061, 0, 1, 0, -0.828179061, 0, 0.560465097),
7238
			Torso_ = CFrame.new(-1.1920929e-06, 0, 2.86102295e-06, 0.674415231, 0, -0.738352239, 0, 1, 0, 0.738352239, 0, 0.674415231),
7239
		}
7240
7241
		for i=0,1,.1 do
7242
			FacePos(old)
7243
			lrs:wait()
7244
		end
7245
7246
		lwait(.2)
7247
		for i=0,1,.1 do
7248
			FacePos(old)
7249
		end
7250
7251
		local bl=NewPart(script)
7252
		bl.Color=c3(0,0,0)
7253
		bl.Size=Vector3.new(2,2,2)
7254
		bl.CFrame=larm.CFrame*cf(0,-1.5,0)
7255
		bl.Shape='Ball'
7256
		bl.Material='Neon'
7257
		bl.Transparency=.001
7258
		local active=true
7259
		spawn(function()
7260
			game.Debris:AddItem(bl,25)
7261
			delay(24,function()
7262
				active=false
7263
				local c=bl.CFrame
7264
				bl.CanCollide=false
7265
				Tween(bl,1,Enum.EasingStyle.Back,Enum.EasingDirection.In,{Size=Vector3.new(.05,.05,.05),CFrame=c,Transparency=1})
7266
			end)
7267
			local tic=0
7268
			local ontouch
7269
			ontouch=bl.Touched:connect(function(Hit)
7270
				if not Hit:IsDescendantOf(Character) then
7271
					bl.CanCollide=true
7272
					OnHumanoidFind(bl, cf(0,0,0), function(proot,phum,body)
7273
						local dmg = math.random(15,30)
7274
						phum.Health = phum.Health - dmg
7275
						hum.Health=hum.Health+15
7276
						showDmg(body, Character,  'LIFE STEAL '..dmg, {Rod=true,RodTrans=0,Crit=false})
7277
					end, 8, true)
7278
					snd(144699494,root,true)
7279
					snd(260433487,root,true)
7280
					local neww=bl:Clone()
7281
					neww.Color=c3(0,0,0)
7282
					local c=bl.CFrame
7283
					bl:Destroy()
7284
					neww.Parent=script
7285
					effects:particle(.5,7,rand(2,5),'Cylinder',c,{'Pearl','Alder'})
7286
					for i = 0,8,.45 do
7287
						neww.Transparency=neww.Transparency+.056274620146314
7288
						neww.Size=neww.Size:lerp(Vector3.new(2+i,2+i,2+i),.2)
7289
						neww.CFrame=c
7290
						lrs:wait()
7291
					end
7292
					neww:Destroy()
7293
					ontouch:disconnect()
7294
					neww.CFrame=c
7295
				end
7296
			end)
7297
			while lwait(.2) and bl and active do
7298
				if bl.Parent~=nil then
7299
					tic=tic+.1
7300
					if tic > .65 then
7301
						snd(171137312,bl,true)
7302
						OnHumanoidFind(bl, cf(0,0,0), function(proot,phum,body)
7303
							local took=math.random(5,20)
7304
							phum.Health = phum.Health - took
7305
							--hum.Health=hum.Health+took
7306
							showDmg(body, Character,  took, {Rod=true,RodTrans=0,Crit=false})
7307
						end, 6, true)
7308
						local cr=effects:Crown(.1, cf(bl.Position)*cf(0,-3,0), 1, .25, 'Pearl',{Material='Neon'},.05)
7309
						local cr2=effects:Ring(.1, cf(bl.Position)*cf(0,-3.5,0), 2, .1, 'Pearl',true,{Material='Neon'},.05)
7310
						table.insert(grows,{{cr,cr2},vec3(.05,.005,.05)*3,ang(0,rad(1),0)})
7311
						tic=0
7312
						local neww=bl:Clone()
7313
						neww.Color=c3(1,1,1)
7314
						neww.Parent=script
7315
						local c=bl.CFrame
7316
						spawn(function()
7317
							for i = 0,3,.1 do
7318
								neww.Transparency=neww.Transparency+.0333
7319
								neww.Size=neww.Size:lerp(Vector3.new(2+i,2+i,2+i),.2)
7320
								neww.CFrame=c
7321
								lrs:wait()
7322
							end
7323
							neww:Destroy()
7324
						end)
7325
					end
7326
				end
7327
			end
7328
			ontouch:disconnect()
7329
		end)
7330
		
7331
		snd(171137312,root,true)
7332
		snd(187747824,root,true)
7333
7334
		spawn(function()
7335
			TweenJoints{
7336
				Style = 'Back',
7337
				Direction = 'Out',
7338
				Time = .1,
7339
				Right_Arm_ = CFrame.new(0.206047893, -0.21484524, 5.28991222e-06, 0.950437486, -0.310916156, 9.23871994e-07, 0.310916156, 0.950437367, 3.18055783e-07, -9.83476639e-07, -1.49011612e-08, 1.00000024), 
7340
				Left_Arm_ = CFrame.new(0.333840013, 0.20000568, -0.701913893, 0.985808611, 0.140995234, 0.0911340564, -6.04101302e-08, 0.542838275, -0.839838743, -0.167884231, 0.827917576, 0.535135746),
7341
				Right_Leg_ = CFrame.new(0.406761706, 0.198160172, -0.827177048, 0.861753821, 0.0901806355, -0.499247611, 0, 0.984074771, 0.177756459, 0.507326901, -0.153182313, 0.84803021),
7342
				Left_Leg_ = CFrame.new(0.428323984, -0.535795689, -1.22677946, 0.797612667, 0.302806526, 0.521652818, -0.546524048, 0.728732705, 0.41263321, -0.255197555, -0.614223242, 0.74672997),
7343
				Head_ = CFrame.new(0.106018938, 0.00909304619, 0.160875916, 0.97453934, -0.0714026541, -0.212544471, 0.0874781013, 0.993896961, 0.0672045946, 0.206448734, -0.0840865001, 0.97483778),
7344
				Torso_ = CFrame.new(-0.0166940689, -0.179999828, -0.0304899216, 0.861753821, 0, 0.507326901, 0, 1, 0, -0.507326901, 0, 0.861753821),
7345
			}
7346
		end)
7347
		local bv=Instance.new('BodyVelocity',root)
7348
		bv.MaxForce=vec3(9e9,0,9e9)
7349
		bv.Velocity=Head.CFrame.lookVector*-13
7350
		game.Debris:AddItem(bv,.2)
7351
		for i = 0,1,.2 do
7352
			local ptc1 = effects:particle(.1,.5,3,'Block',Left_Leg.CFrame*cf(0,-1,0),{'Really black','Really black', 'Pearl'})
7353
			local ptc2 = effects:particle(.1,.5,3,'Block',Right_Leg.CFrame*cf(0,-1,0),{'Really black','Really black', 'Pearl'})
7354
			local ss=1.6
7355
			table.insert(grows,{{ptc1},vec3(.2,0,.2),ang(rad(10),rad(10),rad(10))})
7356
			table.insert(grows,{{ptc2},vec3(.2,.2,.2),ang(rad(10),rad(10),rad(10))})
7357
			lrs:wait()
7358
		end
7359
		lwait()
7360
		ds,dkd = false,false
7361
		delay(0,function()
7362
			canmine=true
7363
		end)
7364
	end
7365
end)
7366
7367
local cangrab=true
7368
local grabbed=false
7369
BindKey('Ward (wip)', 'e', function(_,key)
7370
	if not cangrab then return end
7371
	ds,dkd = true,true
7372
	walkspd = 7
7373
	SetSwordTransparency(1,.1)
7374
	local done=false
7375
	local wld=nil
7376
	spawn(function()
7377
		repeat lrs:wait()
7378
			local strt = Right_Arm.CFrame
7379
			local rayray = Ray.new(strt.p, (strt.p - (strt * CFrame.new(0, 1, 0)).p).unit * 1)
7380
			local hit, pp = workspace:FindPartOnRayWithIgnoreList(rayray, {Character})
7381
			if hit then
7382
				local first=true
7383
				OnHumanoidFind(Right_Arm, cf(0,-1,0), function(proot,phum,body)
7384
					if hit:IsDescendantOf(body) and first then
7385
						first=false
7386
						cangrab=false
7387
						local olds={};
7388
						spawn(function()
7389
							local r
7390
							r=function(p)
7391
								for i,v in next, p:children() do
7392
									if v:IsA'BasePart' then
7393
										olds[v]=v.CustomPhysicalProperties
7394
										v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
7395
									end
7396
									r(v)
7397
								end
7398
							end
7399
							r(body)
7400
						end)
7401
						grabbed=true
7402
						local dist=((Right_Arm.CFrame*cf(0,-1,0)).p-(Right_Arm.CFrame*Right_Arm.CFrame:toObjectSpace(hit.CFrame)).p).magnitude
7403
						wld=Weld(Right_Arm,proot,cf(0,-1.25,0)*ang(-rad(90),rad(180),0))
7404
						local ev
7405
						ev=mouse.KeyDown:connect(function(k)
7406
							if k==key then
7407
								game.Debris:AddItem(wld,0)
7408
								ev:disconnect()
7409
							end
7410
						end)
7411
						spawn(function()
7412
							while wld.Parent~= nil and lrs:wait() do
7413
								phum.PlatformStand=true
7414
							end
7415
							grabbed=false
7416
							cangrab=true
7417
							for i,v in next, olds do
7418
								pcall(function()
7419
									i.CustomPhysicalProperties=v
7420
								end)
7421
							end
7422
						end)
7423
					end
7424
				end, 10, true)
7425
			end
7426
		until done or grabbed
7427
	end)
7428
	TweenJoints{
7429
		Style = 'Linear',
7430
		Direction = 'Out',
7431
		Time = .2,
7432
		Right_Arm_ = CFrame.new(0.829519689, 0.381413698, -1.57987428, 0.374878913, -0.927073777, 4.05236804e-08, -0.00280904677, -0.00113593217, -0.99999547, 0.927069545, 0.374877214, -0.00303003029),
7433
		Left_Arm_ = CFrame.new(-0.519713402, -0.873377562, -0.158320561, 0.739482224, 0.668240309, 0.0813785493, -0.665690601, 0.74387598, -0.0592175536, -0.100107282, -0.0103825331, 0.994922578),
7434
		Right_Leg_ = CFrame.new(3.68356705e-05, -0.0779465437, -0.447928578, 1.00000942, -2.08616257e-07, 2.38418579e-07, -1.59139745e-07, 0.975493431, 0.220059082, -7.74860382e-07, -0.22006014, 0.97549367),
7435
		Left_Leg_ = CFrame.new(0.246763051, -0.165307999, 5.43892384e-06, 0.97661984, 0.21497333, 1.34110451e-06, -0.21497333, 0.976619899, -5.21395123e-07, -1.43051147e-06, 2.16066837e-07, 1),
7436
		Head_ = CFrame.new(-0.175744906, 0.0174450874, 0.14690578, 0.648833036, 0.1171887, -0.75185281, -0.00230547017, 0.988368213, 0.152063951, 0.76092732, -0.0969307423, 0.641555905),
7437
		Torso_ = CFrame.new(-0.00162887573, -0.00289463997, 0.00579071045, 0.374878913, -0.0028091569, 0.927069545, 0.00280869659, 0.999994338, 0.00189410418, -0.92706871, 0.00189380953, 0.374884337),
7438
	}
7439
	lwait(.35)
7440
	done=true
7441
	SetSwordTransparency(0,.1)
7442
	ds,dkd = false,false
7443
end)
7444
7445
BindKey('Reap (Buggy, wip)', 'z', function()
7446
	local actual,floor = CheckIfLanded(8)
7447
	if actual then
7448
		ds,dkd = true,true
7449
		local og=root.CFrame.Y
7450
		walkspd=0
7451
		spawn(function()
7452
			FadeSword'Out'
7453
		end)
7454
		TweenJoints{
7455
			Style = 'Quint',
7456
			Direction = 'InOut',
7457
			Time = 1.35,
7458
			Right_Arm_ = CFrame.new(-0.00888395309, 0.069206208, 0.582951427, 0.959281623, -0.28070721, 0.0313441679, 0.177029952, 0.683999717, 0.707676709, -0.220087633, -0.673311114, 0.705845058),
7459
			Left_Arm_ = CFrame.new(-0.0156921148, 0.0312868953, 0.542969108, 0.965948522, 0.248420492, 0.0723837912, -0.223978251, 0.662671089, 0.714635015, 0.129563898, -0.706504285, 0.695749283),
7460
			Right_Leg_ = CFrame.new(4.19616699e-05, 0.12218833, -0.250127792, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 0.999999881),
7461
			Left_Leg_ = CFrame.new(4.19616699e-05, 0.867762089, 0.3243047, 1, 0, 0, 0, 0.664999247, -0.746844232, 0, 0.746844351, 0.664999068),
7462
			Head_ = CFrame.new(-4.48642386e-05, 0.00383925438, 0.162792355, 0.999999106, 8.84015171e-05, -0.000454272929, -2.1958258e-06, 0.982483029, 0.186356097, 0.000462789234, -0.186356962, 0.982482672),
7463
			Torso_ = CFrame.new(0, -0.9390347, -0.399072647, 1, -6.54393304e-08, -8.86936391e-08, -1.42846829e-07, 0.599315822, 0.800512612, -9.31322575e-10, -0.800511897, 0.599315286),
7464
		}
7465
		ExpellWithForce(root.CFrame*cf(0,-3,0), 15, -30, function(Part, Distance)
7466
		end, false, {workspace:FindFirstChild'Base', Character})
7467
		local cr2=effects:Ring(0, cf((Left_Leg.CFrame*cf(0,-.5,0)).p), 10, 2, tostring(floor.BrickColor),false,{Material=floor.Material},.15)
7468
		table.insert(grows,{{cr2},vec3(2,0,2)*4,ang(0,0,0)})
7469
		snd(875882348,root,true)
7470
		snd(875881806,root,true)
7471
		local bv=Instance.new('BodyVelocity',root)
7472
		bv.MaxForce=vec3(0,9e9,0)
7473
		bv.Velocity=vec3(0,300,0)
7474
		game.Debris:AddItem(bv,.1)
7475
		local pos=nil
7476
		local can=false
7477
		local elligable=false
7478
		local done=false
7479
		local failed=false
7480
		local tem=0
7481
		spawn(function()
7482
			repeat lrs:wait()
7483
				if root.CFrame.Y > og+15 then
7484
					elligable=true
7485
				end
7486
				tem=tem+1
7487
				if tem>300 then
7488
					done=true
7489
					print'rip'
7490
					failed=true
7491
				end
7492
			until torso.Velocity.Y < 2 or tem>300
7493
			done=true
7494
			if root.CFrame.Y > og+30 then
7495
				can=true
7496
				pos=Instance.new('BodyPosition',root)
7497
				pos.MaxForce=vec3(9e9,9e9,9e9)
7498
				pos.Position=root.Position
7499
			end
7500
		end)
7501
		TweenJoints{
7502
			Style = 'Linear',
7503
			Direction = 'InOut',
7504
			Time = .05,
7505
			Right_Arm_ = CFrame.new(0.0626385212, -0.413276285, -0.00104331132, 0.959853292, -0.280451715, -0.00532685313, 0.280474722, 0.959851921, 0.00428472133, 0.00391133083, -0.00560673419, 0.999975801),
7506
			Left_Arm_ = CFrame.new(-0.0532609224, -0.383139998, 0.00133582728, 0.96501404, 0.26220125, 0.000218151894, -0.26220125, 0.96501267, 0.00172606739, 0.000242053007, -0.00172287039, 0.999997616),
7507
			Right_Leg_ = CFrame.new(5.21838665e-05, 0.485050678, -1.44800735, 1, 3.20676759e-06, 6.05589264e-07, -3.39197777e-06, 0.894448161, 0.447186589, 8.90321246e-07, -0.447186172, 0.894447386),
7508
 			Left_Leg_ = CFrame.new(4.14550304e-05, 0.00266909599, 3.84132045e-06, 1, -2.5306602e-07, -1.70181491e-09, -2.5306602e-07, 1, 1.3737008e-08, -1.70181491e-09, 1.3737008e-08, 0.999998212),
7509
			Head_ = CFrame.new(0.000245878298, 0.0850384235, -0.496386617, 0.999999881, -0.000141030672, -0.000435515656, -1.17793134e-05, 0.943306148, -0.331931502, 0.000457633898, 0.33193022, 0.943304479),
7510
			Torso_ = CFrame.new(0, -0.00287747383, 0, 1, -2.5306602e-07, -1.70181491e-09, -2.5306602e-07, 1, 1.3737008e-08, -1.70181491e-09, 1.3737008e-08, 0.999998212),
7511
		}
7512
		repeat lrs:wait() until elligable or failed
7513
		if failed then
7514
			print'oof1'
7515
			FadeSword'In'
7516
			ds,dkd = false,false
7517
			game.Debris:AddItem(pos,.1)
7518
			return
7519
		end
7520
		snd(610359515,root,true,{Pitch=.75,Volume=3})
7521
		spawn(function()
7522
			TweenJoints{
7523
				Style = 'Quint',
7524
				Direction = 'InOut',
7525
				Time = 1,
7526
				Right_Arm_ = CFrame.new(0.116997018, 1.7438519, -0.714151025, 0.0453877375, 0.961275458, -0.271829873, -0.988650799, 0.0042135613, -0.150176093, -0.143214807, 0.275561094, 0.950555861),
7527
				Left_Arm_ = CFrame.new(-1.62301254, -1.07525158, 0.624707758, 0.00382485241, 0.935074449, 0.354432911, -0.999991775, 0.00296776183, 0.00296173617, 0.00171759352, -0.354441464, 0.935076714),
7528
				Right_Leg_ = CFrame.new(4.78625298e-05, 0.171154499, -0.586177945, 1.00000024, -8.94069672e-08, -9.53674316e-07, 3.04044676e-07, 0.965367615, 0.260893703, 8.20373486e-07, -0.260893673, 0.965367556),
7529
				Left_Leg_ = CFrame.new(0.432845116, -0.0829806328, -0.0325477421, 0.932780087, 0.35875231, 0.0347830057, -0.360428244, 0.928439498, 0.0900038332, -3.56324017e-06, -0.0964903384, 0.995342135),
7530
				Head_ = CFrame.new(4.07677144e-05, 8.82148743e-06, -0.0030586943, 0.358160794, -2.70083547e-06, -0.933659971, -0.00284077972, 0.99999541, -0.00109264627, 0.933655679, 0.00304366648, 0.358159155),
7531
				Torso_ = CFrame.new(0.0228919983, -0.487380266, -0.492824554, 0.390342087, 0.0503119566, 0.919294178, -0.920665801, 0.0243561249, 0.389591277, -0.00278935931, -0.998435676, 0.0558276772),
7532
			}
7533
		end)
7534
		local ball = NewPart(script)
7535
		ball.Parent=nil
7536
		ball.CFrame=Left_Arm.CFrame*cf(0,-1,0)
7537
		ball.Material='Neon'
7538
		ball.Size=vec3(1,1,1)
7539
		ball.BrickColor=bc'Alder'
7540
		local msh=Instance.new('SpecialMesh',ball)
7541
		msh.Scale=vec3(1,1,1)
7542
		msh.MeshType='Sphere'
7543
		ball.Parent=script
7544
		local t=0
7545
		snd(782199941,root,true)
7546
		repeat lrs:wait() 
7547
			t=t+1
7548
			ball.CFrame=Left_Arm.CFrame*cf(0,-1,0)
7549
			Tween(msh,.15,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=msh.Scale+vec3(1,1,1)})
7550
			if t>4 then
7551
				local bl = NewPart(script)
7552
				bl.Parent=nil
7553
				bl.CFrame=Left_Arm.CFrame*cf(rand(-3,3),-1+rand(-3,3),rand(-3,3))
7554
				bl.Material='Neon'
7555
				bl.Size=vec3(2,2,2)
7556
				bl.BrickColor=math.random()>.5 and bc'Alder' or bc'Pearl'
7557
				local msh2=Instance.new('SpecialMesh',bl)
7558
				msh2.MeshType='Sphere'
7559
				msh2.Scale=vec3(1,1,1)
7560
				bl.Parent=script
7561
				Tween(bl,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{CFrame=Left_Arm.CFrame*cf(0,-1,0)})
7562
				Tween(msh2,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=vec3(0,0,0)})
7563
				delay(.5, function()
7564
					bl:Destroy()
7565
				end)
7566
			end
7567
		until done
7568
		if not can or failed then
7569
			print'oof2'
7570
			FadeSword'In'
7571
			ds,dkd = false,false
7572
			game.Debris:AddItem(pos,.1)
7573
			game.Debris:AddItem(ball,.1)
7574
			return
7575
		end
7576
		FadeSword'In'
7577
		local beam = NewPart(script)
7578
		beam.Parent=nil
7579
		beam.Size=vec3(5,1,5)
7580
		beam.CFrame=Left_Arm.CFrame*cf(0,-1,0)
7581
		beam.Material='Neon'
7582
		beam.BrickColor=bc'Alder'
7583
		local cm = Instance.new('CylinderMesh',beam)
7584
		beam.Parent=script
7585
		local strt = root.CFrame
7586
		local rayray = Ray.new(strt.p, (strt.p - (strt * CFrame.new(0, 1, 0)).p).unit * 9e9)
7587
		local hit, pp = workspace:FindPartOnRayWithIgnoreList(rayray, {Character})
7588
		pos.D=0
7589
		pos.P=3e6
7590
		snd(763717897,root,true)
7591
		snd(395184130,root,true)
7592
		snd(782353117,root,true)
7593
		local tii=1
7594
		Tween(cm,tii,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=vec3(3,2048,3)})
7595
		Tween(beam,tii,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{CFrame=Left_Arm.CFrame*cf(0,-1025,0)})
7596
		Tween(pos,tii,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Position=pp+vec3(0,10,0)})
7597
		lwait(tii)
7598
		local ptc1 = effects:particle(.1,40,7,'Block',cf(pp+vec3(0,5,0)),{'Alder', 'Pearl'})
7599
		local ptc2 = effects:particle(.1,40,15,'Cylinder',cf(pp+vec3(0,5,0)),{'Alder', 'Pearl'})
7600
		for i,v in next, ptc1 do v.Material='Neon' end
7601
		for i,v in next, ptc2 do v.Material='Neon' end
7602
		table.insert(grows,{{ptc1},vec3(6,6,6),ang(rad(13),rad(13),rad(13))})
7603
		table.insert(grows,{{ptc2},vec3(-4,4,-4),ang(rad(13),rad(13),rad(13))})
7604
		lrs:wait()
7605
		beam:Destroy()
7606
		ball:Destroy()
7607
		OnHumanoidFind(root, cf(0,0,0), function(proot,phum,body)
7608
			local dmg = math.random(35,50)
7609
			phum.Health = phum.Health - dmg
7610
			pcall(function()
7611
				showDmg(body, Character,  dmg, {Rod=false,RodTrans=0,Crit=math.random()>.9})
7612
			end)
7613
			phum.PlatformStand=proot:GetMass()<4 and true or false
7614
			delay(1,function()
7615
				phum.PlatformStand=false
7616
			end)
7617
		end, 30, true)
7618
		ExpellWithForce(cf(pp), 25, 150, function(Part, Distance)
7619
		end, false, {workspace:FindFirstChild'Base', Character})
7620
		local cr=effects:Crown(2, cf(pp+vec3(0,5,0)), 5, 4, tostring(floor.BrickColor),{Material=floor.Material},.2)
7621
		local cr2=effects:Ring(2, cf(pp+vec3(0,5,0)), 10, 5, tostring(floor.BrickColor),false,{Material=floor.Material},.15)
7622
		table.insert(grows,{{cr},vec3(4,.1,4)*4,ang(0,rad(3),0)})
7623
		table.insert(grows,{{cr2},vec3(2,0,2)*4,ang(0,0,0)})
7624
		snd(875881806,root,true)
7625
		snd(782353260,root,true)
7626
		snd(284228088,root,true,{Volume=2})
7627
		snd(782200047,root,true)
7628
		snd(782202168,root,true)
7629
		effects:Debris(false, 2.5, 7, rand(10,20), pp+vec3(0,2,0), .05,{50,25})
7630
		effects:BlastRad(false, 15, 3, 6, pp+vec3(0,2,0), .05)
7631
		ds,dkd = false,false
7632
		hum.PlatformStand=false
7633
		--[[TweenJoints{
7634
			Style = 'Quint',
7635
			Direction = 'Out',
7636
			Time = .5,
7637
			Right_Arm_ = cf(0,0,0),
7638
			Left_Arm_ = cf(0,0,0),
7639
			Right_Leg_ = cf(0,0,0),
7640
			Left_Leg_ = cf(0,0,0),
7641
			Head_ = cf(0,0,0),
7642
			Torso_ = cf(0,0,0),
7643
		}--]]
7644
		game.Debris:AddItem(pos,.5)
7645
	end
7646
end)
7647
7648
local clsr=true
7649
BindKey('Incinerate', 'q', function()
7650
	if not clsr then return end
7651
	clsr=false
7652
	ds,dkd = true,true
7653
	walkspd=0
7654
	FadeSword'Out'
7655
	spawn(function()
7656
		TweenJoints{
7657
			Style = 'Quint',
7658
			Direction = 'Out',
7659
			Time = .45,
7660
			Right_Arm_ = CFrame.new(-0.231867522, 0.277298152, 0.793980241, 0.274041951, 0.959314048, -0.0679790825, 0.0029127209, -0.071512714, -0.997437716, -0.961713552, 0.273141831, -0.0223916993),
7661
			Left_Arm_ = CFrame.new(-0.503219903, 0.412600666, -1.63814199, 0.586037755, 0.81028372, -3.54186263e-08, 0.00245406968, -0.00177494972, -0.99999547, -0.810280085, 0.586035132, -0.00302868057),
7662
			Right_Leg_ = CFrame.new(-0.1793679, -0.194476008, -1.1458993e-05, 0.983692706, -0.17985943, 2.98023224e-08, 0.179859221, 0.983697474, -7.10133463e-09, -2.98023224e-08, -1.49011612e-08, 1.0000062),
7663
			Left_Leg_ = CFrame.new(0.103276968, -0.0279527903, -0.087505281, 0.983025551, 0.0558601618, 0.174757063, -0.0549976081, 0.998438716, -0.00977835804, -0.17503038, 1.13807619e-06, 0.98456347),
7664
			Head_ = CFrame.new(4.57763672e-05, 3.93390656e-06, -0.00303999148, 0.586037755, 0, 0.81028372, 0.00245406968, 0.99999547, -0.00177490606, -0.810280085, 0.00302865496, 0.586035132),
7665
			Torso_ = CFrame.new(0.368801117, -0.00288367271, 0.00219345093, 0.586037755, 0.00245395955, -0.810280085, -0.00245499588, 0.999996245, 0.00125324936, 0.81027925, 0.00125479547, 0.586041093),
7666
		}
7667
	end)
7668
	for i=0,1,.05 do
7669
		FacePos'mouse'
7670
		lrs:wait()
7671
	end
7672
7673
	local beam = NewPart(script)
7674
	beam.Parent=nil
7675
	beam.CFrame=Right_Arm.CFrame*cf(0,-1,0)
7676
	beam.Material='Neon'
7677
	beam.BrickColor=bc'Alder'
7678
	Instance.new('CylinderMesh',beam).Scale=Vector3.new(.05,1,.05)
7679
	beam.Parent=script
7680
	local canfrag=true
7681
	spawn(function()
7682
		while beam.Parent ~= nil and lwait(.25) do
7683
			canfrag=true
7684
		end
7685
	end)
7686
	snd(588734767,root,true,{Pitch=1.25})
7687
	snd(588736245,root,true)
7688
	local hums,bps = {},{};
7689
	local ignore={Character};
7690
	local replace
7691
	for i=0, 2048, 50 do
7692
		FacePos'mouse'
7693
		local StartPos = Left_Arm.CFrame*cf(0,-1,0)
7694
		local Ray = Ray.new(StartPos.p, (StartPos.p - (StartPos * CFrame.new(0, 1, 0)).p).unit * i)
7695
		local Hit, Pos = workspace:FindPartOnRayWithIgnoreList(Ray, ignore)
7696
		local dist = Hit and not Hit:IsDescendantOf(Character) and (Pos-StartPos.p).magnitude or i
7697
		beam.Size=vec3(.85,dist,1)
7698
		beam.CFrame=StartPos*cf(0,-(dist/2),0)
7699
		if Hit then
7700
			local ptc2 = effects:particle(.1,2,1,'Block',cf(Pos),{'Really black',tostring(Hit.BrickColor), 'Pearl'})
7701
			for i,v in next, ptc2 do v.Material='Neon' end
7702
			table.insert(grows,{{ptc2},vec3(1,0,1),ang(rad(10),rad(10),rad(10))})
7703
			if Hit and (Hit.Parent:FindFirstChildOfClass'Humanoid' or Hit.Parent.Parent:FindFirstChildOfClass'Humanoid') and #hums < 5 then
7704
				if Hit:GetMass()<=4 then
7705
					local bp = Instance.new('BodyPosition', Hit)
7706
					game.Debris:AddItem(bp,10)
7707
					local dist = (StartPos.p-Hit.Position).magnitude
7708
					bp.Position=(StartPos*cf(0,-dist,1)).p
7709
					spawn(function()
7710
						while lwait() and bp.Parent ~= nil do
7711
							local pos = ((replace or Left_Arm.CFrame)*cf(0,-1-dist,0)).p
7712
							bp.Position=pos
7713
						end
7714
					end)
7715
					table.insert(bps, bp)
7716
				end
7717
				local phum = Hit.Parent:FindFirstChildOfClass'Humanoid' or Hit.Parent.Parent:FindFirstChildOfClass'Humanoid' or Hit.Parent.Parent.Parent:FindFirstChildOfClass'Humanoid'
7718
				table.insert(ignore,phum.Parent)
7719
				hums[phum]=true
7720
			end
7721
		end
7722
		lrs:wait()
7723
	end
7724
	local pos = Left_Arm.CFrame*cf(0,-1,0)
7725
	ds,dkd = false,false
7726
	replace=Left_Arm.CFrame
7727
	FadeSword'In'
7728
	
7729
	local b2 = beam:Clone()
7730
	b2.Mesh.Scale=vec3(2,1,2)
7731
	b2.Transparency=.8
7732
	local b3 = beam:Clone()
7733
	b3.Mesh.Scale=vec3(.3,1,.3)
7734
	b3.Transparency=1
7735
	b2.Parent,b3.Parent=script,script
7736
	
7737
	Tween(b2.Mesh,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Scale=vec3(.45,1,.45)})
7738
	Tween(b2,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency=0})
7739
	Tween(b3.Mesh,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Scale=vec3(3,1,3)})
7740
	Tween(b3,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency=.85})
7741
	snd(763718573,root,true)
7742
	lwait(.7)
7743
	--b2:Destroy();b3:Destroy()
7744
	snd(763717897, root, true)
7745
	snd(782354294, root,true)
7746
	
7747
	for i = 1, 6, 1 do
7748
		local effected={};
7749
		for i,v in next, hums do
7750
			local can=true
7751
			for a,b in next, effected do
7752
				if b==i then
7753
					can=false
7754
				end
7755
			end
7756
			if can then
7757
				for a,b in next, bps do
7758
					if b:IsDescendantOf(i.Parent) and (b.Position-i.Parent:WaitForChild'Head'.Position).magnitude < 6 then
7759
						table.insert(effected,i)
7760
						local dmgg = rand(2, 4)*1
7761
						i:TakeDamage(dmgg)
7762
						showDmg(i.Parent, Character,  dmgg, {Rod=false,RodTrans=0,Crit=rand()>.5})
7763
						spawn(function()
7764
							snd(588694531,i.Parent:WaitForChild'Head',true)
7765
						end)
7766
					end
7767
				end
7768
			end
7769
		end
7770
		local b4 = beam:Clone()
7771
		b4.Mesh.Scale=vec3(2,1,2)
7772
		b4.Transparency=.2
7773
		b4.Parent=script
7774
7775
		local cone = MeshEffects.Cone:Clone()
7776
		cone.CFrame = pos*cf(0,1.25,0)
7777
		cone.Anchored=true
7778
		cone.BrickColor=bc'Pearl'
7779
		cone.CanCollide=false
7780
		cone.Material='Neon'
7781
		cone.Transparency=.2
7782
		cone.Parent=script
7783
		Tween(cone,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency = 1, Size=vec3(15,4,15)/2.5})
7784
7785
		local cone2 = MeshEffects.Cone:Clone()
7786
		cone2.CFrame = pos*cf(0,1.5,0)
7787
		cone2.Anchored=true
7788
		cone2.BrickColor=bc'Alder'
7789
		cone2.CanCollide=false
7790
		cone2.Material='Neon'
7791
		cone2.Transparency=.2
7792
		cone2.Parent=script
7793
		Tween(cone2,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency = 1, Size=vec3(15,4,15)/1.25})
7794
		
7795
		Tween(b4.Mesh,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Scale=vec3(15,1,15)})
7796
		Tween(b4,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency=1})
7797
		delay(.65,function()
7798
			b4:Destroy();cone:Destroy()
7799
		end)
7800
		lwait(.6)
7801
	end
7802
	b2:Destroy();b3:Destroy()
7803
	for i,v in next, bps do
7804
		v:Destroy()
7805
	end
7806
	delay(5,function()
7807
		clsr=true
7808
	end)
7809
	beam:Destroy()
7810
end)
7811
7812
BindKey('Buster', 'r', function(_,k)
7813
	dkd,ds=true,true
7814
	local fire=false
7815
	local ev
7816
	walkspd=0
7817
	ev=mouse.KeyUp:connect(function(key)
7818
		if k==key then
7819
			fire=true
7820
			ev:disconnect()
7821
		end
7822
	end)
7823
	walkspd=0
7824
	local tweened=false
7825
	spawn(function()
7826
		TweenC0(shw, cf(0,0,0)*ang(0,rad(45),rad(70)), 'Quint', 'Out', 1)
7827
		TweenJoints{
7828
			Style = 'Quint',
7829
			Direction = 'Out',
7830
			Time = 1,
7831
			Right_Arm_ = CFrame.new(0.535389304, 0.15619868, -1.28274536, 0.680957854, -0.702149034, 0.208047509, 0.284585983, -0.00804074015, -0.958620548, 0.674766183, 0.711983562, 0.19434683),
7832
			Left_Arm_ = CFrame.new(-1.80736709, 0.506341934, -1.62024987, 0.117187969, 0.993109763, -4.3410207e-08, 0, -4.37113883e-08, -1, -0.993109763, 0.117187969, -5.12244869e-09),
7833
			Right_Leg_ = CFrame.new(-6.61611557e-06, -0.905116677, -1.40443158, 1, 7.5250864e-07, -5.30853868e-06, 4.43911813e-06, 0.440601975, 0.897702694, 3.02493572e-06, -0.897702754, 0.440601975),
7834
			Left_Leg_ = CFrame.new(-0.244986176, 0.385205865, -0.7590608, 0.939282835, -0.0607775971, 0.337720811, -2.25848567e-07, 0.98419106, 0.177119762, -0.343143851, -0.166365743, 0.924440086),
7835
			Head_ = CFrame.new(4.76837158e-07, 0, -2.86102295e-06, 0.117187969, 0, 0.993109763, 0, 1, 0, -0.993109763, 0, 0.117187969),
7836
			Torso_ = CFrame.new(0.0551037788, -0.53477335, -1.43051147e-06, 0.117187969, 0, -0.993109763, 0, 1, 0, 0.993109763, 0, 0.117187969),
7837
		}
7838
		tweened=true
7839
	end)
7840
	repeat lrs:wait() FacePos'mouse' 
7841
	until fire and tweened
7842
	dkd,ds=false,false
7843
	local to = mouse.Hit.p
7844
	local from = (Left_Arm.CFrame*cf(0,-1.5,1.25)).p
7845
	local Arc = CalculateArc(.5, from, to)
7846
	--local Segment = DisplayArc(Arc)
7847
	local Ball = NewObject('Part', script, {Size = vec3(2.5,2.5,2.5), Material='Neon', Color=bc'Alder'.Color, CFrame=cf(Arc[1]), Shape = 'Ball'})
7848
	local msh=Instance.new('SpecialMesh',Ball)
7849
	msh.MeshType='Sphere'
7850
	msh.Scale=vec3(1,1,1)
7851
	local loop=snd(228343433,Ball,true,{Pitch=2,Volume=3,Looped=true})
7852
	snd(231917750,root,true,{Pitch=.9})
7853
	local finished=false
7854
	spawn(function()
7855
		local t=0
7856
		local lcf=Arc[1]
7857
		repeat lrs:wait() 
7858
			t=t+1
7859
			Tween(msh,.15,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=msh.Scale.Y < 5 and msh.Scale+vec3(1,1,1) or msh.Scale})
7860
			if t > 10 then
7861
				t=0
7862
				local ri=effects:Ring(.5, cf(lcf,Ball.Position)*ang(rad(90),0,0), 1, .5, 'Alder', true,{Material='Neon'},.15)
7863
				table.insert(grows,{{ri},vec3(.15,0,.15)*4,ang(0,0,0)})
7864
			end
7865
			lcf=Ball.Position
7866
			spawn(function()
7867
				local bl = NewPart(script)
7868
				bl.Parent=nil
7869
				local random = vec3(rand(-3,3),rand(-3,3),rand(-3,3))
7870
				bl.CFrame=Ball.CFrame*cf(random*(msh.Scale.Y/2))
7871
				bl.Material='Neon'
7872
				bl.Size=vec3(1,1,1)
7873
				bl.BrickColor=math.random()>.5 and bc'Alder' or bc'Pearl'
7874
				local msh2=Instance.new('SpecialMesh',bl)
7875
				msh2.MeshType='Sphere'
7876
				msh2.Scale=msh.Scale/2
7877
				bl.Parent=script
7878
				Tween(bl,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{CFrame=Ball.CFrame})
7879
				Tween(msh2,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=vec3(0,0,0)})
7880
				delay(.5, function()
7881
					bl:Destroy()
7882
				end)
7883
			end)
7884
		until finished
7885
	end)
7886
	for i,v in next, Arc do
7887
		Tween(Ball, .025, 'Linear', 'InOut', {CFrame = cf(v)})
7888
		lrs:wait()
7889
	end
7890
	finished=true
7891
	Ball.Transparency=1
7892
	loop:Stop()
7893
	local strt = cf(to)*cf(0,3,0)
7894
	local rayray = Ray.new(strt.p, (strt.p - (strt * CFrame.new(0, 1, 0)).p).unit * 10)
7895
	local hit, pp = workspace:FindPartOnRayWithIgnoreList(rayray, {Character})
7896
	game.Debris:AddItem(Ball,3)
7897
	snd(610359515,Ball,true)
7898
	local ptc1 = effects:particle(.1,.5,5,'Block', cf(to),{'Alder','Pearl'})
7899
	local ptc2 = effects:particle(.1,.5,5,'Cylinder',cf(to),{'Alder', 'Pearl'})
7900
	local ss=10
7901
	for i,v in next, ptc1 do v.Material = 'Neon' Tween(v, .5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
7902
	for i,v in next, ptc2 do v.Material='Neon' Tween(v, .5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
7903
	OnHumanoidFind(Ball,cf(0,0,0), function(proot,phum,body)
7904
		local dmg = math.random(8,16)
7905
		phum.Health = phum.Health - dmg
7906
		pcall(function()
7907
			showDmg(body, Character,  dmg, {Rod=false,RodTrans=0,Crit=false})
7908
		end)
7909
		phum.PlatformStand=proot:GetMass()<4 and true or false
7910
		delay(.25,function()
7911
			phum.PlatformStand=false
7912
		end)
7913
	end, 20, true)
7914
	ExpellWithForce(strt, 10, 15, function(Part, Distance)
7915
	end, false, {workspace:FindFirstChild'Base', Character})
7916
	local ri=effects:Ring(.5, cf(pp+vec3(0,0,0)), 3, 2, tostring(hit ~= nil and hit.BrickColor or 'Pearl'),false,{Material=hit ~= nil and hit.Material or 'Neon'},.15)
7917
	local cr=effects:Crown(.5, cf(pp+vec3(0,0,0)), 7, 4, tostring(hit ~= nil and hit.BrickColor or 'Pearl'),{Material=hit ~= nil and hit.Material or 'Neon'},.15)
7918
	table.insert(grows,{{ri},vec3(.5,0,.5)*4,ang(0,0,0)})
7919
	table.insert(grows,{{cr},vec3(.5,0,.5)*4,ang(0,rad(3),0)})
7920
	snd(782202168,Ball,true)
7921
	snd(228343412,Ball,true)
7922
	snd(231917742,Ball,true)
7923
	effects:Debris(true, 2.5, 2, rand(5,10), to, .005,{50,25})
7924
	--effects:BlastRad(true, 15, 3, 5, to, .05)
7925
end)
7926
7927
function Attack4()
7928
	dkd,ds = true,true
7929
	TweenJoints{
7930
		Style = 'Quint',
7931
		Direction = 'Out',
7932
		Time = .5,
7933
		Right_Arm_ = cf(0,0,0),
7934
		Left_Arm_ = cf(0,0,0),
7935
		Right_Leg_ = cf(0,0,0),
7936
		Left_Leg_ = cf(0,0,0),
7937
		Head_ = cf(0,0,0),
7938
		Torso_ = cf(0,0,0),
7939
	}
7940
	TweenJoints{
7941
		Style = 'Quint',
7942
		Direction = 'Out',
7943
		Time = .5,
7944
		Right_Arm_ = cf(0,0,0),
7945
		Left_Arm_ = cf(0,0,0),
7946
		Right_Leg_ = cf(0,0,0),
7947
		Left_Leg_ = cf(0,0,0),
7948
		Head_ = cf(0,0,0),
7949
		Torso_ = cf(0,0,0),
7950
	}
7951
	dkd,ds = false,false
7952
end
7953
7954
function Attack2()
7955
	dkd,ds = true,true
7956
	TweenJoints{
7957
		Style = 'Quint',
7958
		Direction = 'Out',
7959
		Time = .5,
7960
		Right_Arm_ = cf(0,0,0),
7961
		Left_Arm_ = cf(0,0,0),
7962
		Right_Leg_ = cf(0,0,0),
7963
		Left_Leg_ = cf(0,0,0),
7964
		Head_ = cf(0,0,0),
7965
		Torso_ = cf(0,0,0),
7966
	}
7967
	TweenJoints{
7968
		Style = 'Quint',
7969
		Direction = 'Out',
7970
		Time = .5,
7971
		Right_Arm_ = cf(0,0,0),
7972
		Left_Arm_ = cf(0,0,0),
7973
		Right_Leg_ = cf(0,0,0),
7974
		Left_Leg_ = cf(0,0,0),
7975
		Head_ = cf(0,0,0),
7976
		Torso_ = cf(0,0,0),
7977
	}
7978
	dkd,ds = false,false
7979
end
7980
7981
function Attack3()
7982
	dkd,ds = true,true
7983
	TweenJoints{
7984
		Style = 'Quint',
7985
		Direction = 'Out',
7986
		Time = .5,
7987
		Right_Arm_ = cf(0,0,0),
7988
		Left_Arm_ = cf(0,0,0),
7989
		Right_Leg_ = cf(0,0,0),
7990
		Left_Leg_ = cf(0,0,0),
7991
		Head_ = cf(0,0,0),
7992
		Torso_ = cf(0,0,0),
7993
	}
7994
	TweenJoints{
7995
		Style = 'Quint',
7996
		Direction = 'Out',
7997
		Time = .5,
7998
		Right_Arm_ = cf(0,0,0),
7999
		Left_Arm_ = cf(0,0,0),
8000
		Right_Leg_ = cf(0,0,0),
8001
		Left_Leg_ = cf(0,0,0),
8002
		Head_ = cf(0,0,0),
8003
		Torso_ = cf(0,0,0),
8004
	}
8005
	dkd,ds = false,false
8006
end
8007
8008
function Attack1()
8009
	dkd,ds = true,true
8010
	TweenC0(shw, ang(0,-rad(180),rad(135)), 'Linear', 'Out', .05)
8011
	TweenJoints{
8012
		Style = 'Quint',
8013
		Direction = 'Out',
8014
		Time = .15,
8015
		Right_Arm_ = CFrame.new(0.480937481, -0.623095155, 0.207057506, 0.829737663, -0.543632448, -0.126478553, 0.558150053, 0.808969557, 0.184476554, 0.00202971697, -0.223660082, 0.974669456),
8016
		Left_Arm_ = CFrame.new(-0.223258257, -0.312400937, 0.592300892, 0.647217274, -0.554238617, -0.523383737, -0.253734976, 0.490803808, -0.833504915, 0.718839288, 0.672259688, 0.177026629),
8017
		Right_Leg_ = CFrame.new(5.14984131e-05, -0.0270439386, -0.340497971, 1, 7.4505806e-09, -8.94069672e-08, -5.12227416e-09, 0.98540169, 0.170247093, -2.98023224e-08, -0.170247093, 0.985401392),
8018
		Left_Leg_ = CFrame.new(-0.0214843154, 0.00267851353, -0.145123824, 0.956951261, -1.0477379e-09, 0.290260822, 1.86264515e-09, 1.00000489, -9.42964107e-09, -0.290262878, -9.54605639e-09, 0.956948757),
8019
		Head_ = CFrame.new(3.81469727e-05, 4.17232513e-06, -0.00303199375, 0.584618986, 0, 0.811308026, 0.00245903619, 0.99999547, -0.00177195237, -0.811304271, 0.0030309523, 0.584616244),
8020
		Torso_ = CFrame.new(0.00667190552, -0.00287604332, -0.000377655029, 0.584618986, 0.00245892606, -0.811304271, -0.00245809881, 0.999996245, 0.0012598458, 0.811303556, 0.00125774904, 0.584622204),
8021
	}
8022
	TweenC0(shw, ang(0,-rad(180),-rad(135)), 'Linear', 'Out', .4)
8023
	snd(588693156,root,true)
8024
	TweenJoints{
8025
		Style = 'Linear',
8026
		Direction = 'Out',
8027
		Time = .15,
8028
		Right_Arm_ = CFrame.new(1.22454464, -1.18362045, -0.306676567, 0.0752486736, -0.146807969, 0.98629868, 0.997097671, 0.02256638, -0.0727136135, -0.0115822516, 0.988907576, 0.148080021),
8029
		Left_Arm_ = CFrame.new(-0.516955376, -0.73023963, -0.855697036, 0.655881882, 0.60047102, 0.457442462, -0.493600518, 0.799645245, -0.341944873, -0.571119547, -0.00151839852, 0.820865571),
8030
		Right_Leg_ = CFrame.new(3.68356705e-05, -0.0779465437, -0.447924763, 1.00000942, -2.08616257e-07, 2.38418579e-07, -1.59139745e-07, 0.975493431, 0.220059082, -7.74860382e-07, -0.22006014, 0.97549367),
8031
		Left_Leg_ = CFrame.new(0.246763051, -0.165307999, 7.34627247e-06, 0.97661984, 0.21497333, 1.34110451e-06, -0.21497333, 0.976619899, -5.21395123e-07, -1.43051147e-06, 2.16066837e-07, 1),
8032
		Head_ = CFrame.new(-0.175744906, 0.017444849, 0.146904826, 0.648833036, 0.1171887, -0.75185281, -0.00230547017, 0.988368213, 0.152063951, 0.76092732, -0.0969307423, 0.641555905),
8033
		Torso_ = CFrame.new(-0.00162887573, -0.00289463997, 0.00579071045, 0.374878913, -0.0028091569, 0.927069545, 0.00280869659, 0.999994338, 0.00189410418, -0.92706871, 0.00189380953, 0.374884337),
8034
	}
8035
	local poss = SHA.CFrame
8036
	local offset = root.CFrame:toObjectSpace(SHA.CFrame)
8037
	shw:Destroy()
8038
	SHA.CFrame=poss
8039
	SHA.Anchored=true
8040
	local done=false
8041
	local half=false
8042
	OnHumanoidFind(SHA, cf(0,0,0), function(proot,phum,body)
8043
		local dmg = math.random(5,13)
8044
		phum.Health = phum.Health - dmg
8045
		pcall(function()
8046
			showDmg(body, Character,  dmg, {Rod=false,RodTrans=0,Crit=math.random()>.9})
8047
		end)
8048
	end, 7, true)
8049
	spawn(function()
8050
		while lwait(.5) and not done do
8051
			OnHumanoidFind(SHA, cf(0,0,0), function(proot,phum,body)
8052
				local dmg = math.random(3,7)
8053
				phum.Health = phum.Health - dmg
8054
				pcall(function()
8055
					showDmg(body, Character,  dmg, {Rod=false,RodTrans=0,Crit=math.random()>.9})
8056
				end)
8057
			end, 7, true)
8058
		end
8059
	end)
8060
	trail=true
8061
	spawn(function()
8062
		repeat lrs:wait();lrs:wait();lrs:wait()
8063
			--local ptc1 = effects:particle(.1,.5,1,'Block', SHI.CFrame,{'Alder', 'Pearl'})
8064
			local ptc2 = effects:particle(.1,.5,2,'Cylinder',SHI.CFrame,{'Alder', 'Pearl'})
8065
			local ss=3.4
8066
			--for i,v in next, ptc1 do Tween(v, 1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
8067
			for i,v in next, ptc2 do Tween(v, 1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
8068
		until done
8069
	end)
8070
	spawn(function()
8071
		snd(233856097,root,true)
8072
		local lp = snd(235097691,root,true,{Pitch=.45,Looped=true})
8073
		for i = 0,360,10 do
8074
			local set = (root.CFrame*cf(0,0,-1-(-1/(360/(360-i))))*ang(0,math.rad(i),0)*offset*ang(rad(i),0,rad(i*3))*cf(1.5,0,0))
8075
			SHA.CFrame = set
8076
			lrs:wait()
8077
		end
8078
		for i = 0,200,10 do
8079
			local set = (root.CFrame*cf(0,0,-1/(360/(360-i)))*ang(0,math.rad(i),0)*offset*ang(rad(13),0,rad(i*3))*cf(6,0,0))
8080
			SHA.CFrame = set
8081
			lrs:wait()
8082
		end
8083
		half=true
8084
		for i = 200,360,10 do
8085
			local set = (root.CFrame*cf(0,0,-1/(360/(360-i)))*ang(0,math.rad(i),0)*offset*ang(rad(9),0,rad(i*3))*cf(6,0,0))
8086
			SHA.CFrame = set
8087
			lrs:wait()
8088
		end
8089
		lp:Destroy()
8090
		done=true
8091
		trail=false
8092
	end)
8093
	lwait(.3)
8094
	TweenJoints{
8095
		Style = 'Quint',
8096
		Direction = 'In',
8097
		Time = .3,
8098
		Right_Arm_ = CFrame.new(0.998920679, 0.14364481, 1.68959856, 0.300145298, -0.618172228, 0.726481915, -0.0739984512, 0.74421227, 0.663831592, -0.951018989, -0.253004432, 0.177628011),
8099
		Left_Arm_ = CFrame.new(-1.36803436, -0.0923654437, -1.48961067, 0.0884984732, 0.600464821, 0.794741571, -0.0683499575, 0.799651325, -0.596564591, -0.993728042, -0.00152620673, 0.111809149),
8100
		Right_Leg_ = CFrame.new(0.10795176, 0.137223721, -0.322895944, 0.868303895, -0.172812983, -0.464955926, -0.00150111609, 0.936429739, -0.350851864, 0.496030331, 0.305344015, 0.812846243),
8101
		Left_Leg_ = CFrame.new(0.24675554, -0.16530633, 1.2665987e-06, 0.976619899, 0.214973375, 3.57627869e-06, -0.21497333, 0.976620018, 1.66893005e-06, -3.1888485e-06, -2.38418579e-06, 1),
8102
		Head_ = CFrame.new(0.0915586054, 0.0196099281, -0.111794382, 0.869667768, -0.0338301063, -0.492476821, 0.104621723, 0.987616539, 0.116908997, 0.482423246, -0.153195754, 0.862437844),
8103
		Torso_ = CFrame.new(-0.315471649, -0.31086731, -0.393325806, 0.394115746, -0.218366832, 0.892742395, -0.170076683, 0.937257767, 0.304338545, -0.903187037, -0.271779239, 0.332248896),
8104
	}
8105
	snd(588693579,root,true)
8106
	TweenJoints{
8107
		Style = 'Linear',
8108
		Direction = 'Out',
8109
		Time = .2,
8110
		Right_Arm_ = CFrame.new(0.0439815521, -0.135678574, -0.440430045, 0.806191146, 0.397307813, -0.438409001, -0.0213991497, 0.76008296, 0.649473667, 0.591268122, -0.514218271, 0.621274173),
8111
		Left_Arm_ = CFrame.new(0.236092269, 0.785143495, 0.332070351, 0.558541417, -0.762449682, 0.326653212, 0.206355974, -0.253699929, -0.945015788, 0.803398728, 0.595236301, 0.0156343132),
8112
		Right_Leg_ = CFrame.new(-0.351975918, -0.201288223, -0.3103953, 0.947356284, -0.32018137, 3.57627869e-06, 0.315506399, 0.93352598, 0.170250237, -0.0545143187, -0.161286473, 0.985400915),
8113
		Left_Leg_ = CFrame.new(-0.178579241, 0.00266909599, -0.383025676, 0.642761528, -3.51574272e-08, 0.766066432, 7.49423634e-09, 1.00000024, 3.99304554e-08, -0.766066551, -1.94413587e-08, 0.64276135),
8114
		Head_ = CFrame.new(3.9100647e-05, 3.93390656e-06, -0.00303199375, 0.584618986, 0, 0.811308026, 0.00245903619, 0.99999547, -0.00177195237, -0.811304271, 0.0030309523, 0.584616244),
8115
		Torso_ = CFrame.new(0.00667190552, -0.00287604332, -0.000377655029, 0.584618986, 0.00245892606, -0.811304271, -0.00245809881, 0.999996245, 0.0012598458, 0.811303556, 0.00125774904, 0.584622204),
8116
	}
8117
	OnHumanoidFind(Left_Arm, cf(0,0,0), function(proot,phum,body)
8118
		local dmg = math.random(3,9) * (rand()>.8 and 2 or 1)
8119
		phum.Health = phum.Health - dmg
8120
		pcall(function()
8121
			showDmg(body, Character,  dmg, {Rod=true,RodTrans=0,Crit=dmg>9})
8122
		end)
8123
	end, 10, true)
8124
	repeat lrs:wait() until half
8125
	TweenJoints{
8126
		Style = 'Linear',
8127
		Direction = 'Out',
8128
		Time = .15,
8129
		Right_Arm_ = CFrame.new(0.829519689, 0.381413698, -1.57987428, 0.374878913, -0.927073777, 4.05236804e-08, -0.00280904677, -0.00113593217, -0.99999547, 0.927069545, 0.374877214, -0.00303003029),
8130
		Left_Arm_ = CFrame.new(-0.519713402, -0.873377562, -0.158320561, 0.739482224, 0.668240309, 0.0813785493, -0.665690601, 0.74387598, -0.0592175536, -0.100107282, -0.0103825331, 0.994922578),
8131
		Right_Leg_ = CFrame.new(3.68356705e-05, -0.0779465437, -0.447928578, 1.00000942, -2.08616257e-07, 2.38418579e-07, -1.59139745e-07, 0.975493431, 0.220059082, -7.74860382e-07, -0.22006014, 0.97549367),
8132
		Left_Leg_ = CFrame.new(0.246763051, -0.165307999, 5.43892384e-06, 0.97661984, 0.21497333, 1.34110451e-06, -0.21497333, 0.976619899, -5.21395123e-07, -1.43051147e-06, 2.16066837e-07, 1),
8133
		Head_ = CFrame.new(-0.175744906, 0.0174450874, 0.14690578, 0.648833036, 0.1171887, -0.75185281, -0.00230547017, 0.988368213, 0.152063951, 0.76092732, -0.0969307423, 0.641555905),
8134
		Torso_ = CFrame.new(-0.00162887573, -0.00289463997, 0.00579071045, 0.374878913, -0.0028091569, 0.927069545, 0.00280869659, 0.999994338, 0.00189410418, -0.92706871, 0.00189380953, 0.374884337),
8135
	}
8136
	snd(231917871,root,true)
8137
	repeat lrs:wait() until done
8138
	SHA.Anchored=false
8139
	shw = Weld(Right_Arm, SHA, Right_Arm.CFrame:toObjectSpace(SHA.CFrame))
8140
	Tween(shw,.25/2,Enum.EasingStyle.Quint,Enum.EasingDirection.Out,{C1=cf(0,-1,0)*ang(0,-rad(0),-rad(90))})
8141
	lwait(.25/2)
8142
	Tween(shw,.25/2,Enum.EasingStyle.Quint,Enum.EasingDirection.Out,{C1=cf(0,-1,0)*ang(0,-rad(90),-rad(90))})
8143
	lwait(.25/2)
8144
	dkd,ds = false,false
8145
end
8146
8147
8148
hum.MaxHealth = Max_Health
8149
lwait(.1)
8150
hum.Health = Max_Health
8151
HumanoidRootPart.Transparency = 1
8152
8153
local debvals={};
8154
debvals['CLEAN']=0
8155
debvals['walkparticles']=0
8156
local Handle = function()
8157
	spawn(function()
8158
		for i,v in next, effects.MagicCircles do
8159
			if v[1].Parent ~= nil then
8160
				v[1].CFrame = lerp(v[1].CFrame, v[1].CFrame * CFrame.Angles(0,0,rad(v[4])), .9)
8161
			else
8162
				--table.remove(effects.MagicCircles,i)
8163
				effects.MagicCircles[i]=nil
8164
			end
8165
		end
8166
	end)
8167
	spawn(function()
8168
		for ting,data in next, trans do
8169
			if ting.Transparency~=nil and ting.Transparency < data[2] then
8170
				--print(ting.Transparency,data[2])
8171
				ting.Transparency=ting.Transparency+data[1]
8172
			elseif ting.Transparency >= tonumber(data[2]) and ting.Parent ~= nil then
8173
				--print'ded'
8174
				trans[ting]=nil
8175
				ting:Destroy()
8176
			end
8177
		end
8178
	end)
8179
	spawn(function()
8180
		for a,b in next, grows do
8181
			if a==grows[15] then
8182
				grows={};
8183
				for i,v in next, grows do
8184
					grows[i]=v
8185
				end
8186
				print'ded'
8187
			else
8188
				if #b > 1 then
8189
					for __,v in next, b[1] do
8190
						if v.Parent ~= nil then
8191
							if v.Transparency > 1 then
8192
								v:Destroy()
8193
							else
8194
								local c=v.CFrame
8195
								v.Size=v.Size+b[2] or vec3(b[2],b[2],b[2]) or vec3(0,0,0)
8196
								v.CFrame=c*b[3] or cf(0,0,0)
8197
							end
8198
						else
8199
							b[1][__]=nil
8200
						end
8201
					end
8202
				else
8203
					grows[a]=nil
8204
				end
8205
			end
8206
		end
8207
	end)
8208
	local actual,floor = CheckIfLanded(5)
8209
	if debvals['CLEAN'] > 40 then
8210
		debvals['CLEAN']=0
8211
		grows={};
8212
		trans={};
8213
		effects.MagicCircles={};
8214
		for i,v in next, FX:children() do
8215
			v:Destroy()
8216
		end
8217
	end
8218
	for i,v in next,debvals do
8219
		debvals[i]=v+.1
8220
		--print(i,v)
8221
	end
8222
end
8223
8224
--_G.g=function(mdl)local t,s=0 function s(p)for i,v in next,p:children()do if v:IsA'Part'then t=t+v:GetMass()end;s(v)end;end s(mdl) return t end
8225
8226
Mouse.KeyDown:connect(function(Key)
8227
	if Key:byte() == 48 then
8228
		Walking = false
8229
	elseif Key:byte() == 93 then
8230
		table.foreach(keyz,print)
8231
	end
8232
end)
8233
8234
Mouse.KeyUp:connect(function(Key)
8235
	if Key:byte() == 48 then
8236
		Walking = true
8237
	end
8238
end)
8239
8240
local ComboResetTime,canatk = .1,true
8241
local combo = 0
8242
local output_clicks = false
8243
8244
function ComboUp()
8245
	if dkd == true then return end
8246
	if combo == 0 and canatk == true then
8247
		canatk = false
8248
		Attack1()
8249
		combo = 1
8250
		canatk = true
8251
		spawn(function()
8252
			ds = true
8253
			lwait(ComboResetTime)
8254
			if canatk == true then
8255
				ds = false
8256
			end
8257
			if combo == 1 and not ds then
8258
				combo = 0
8259
			end
8260
		end)
8261
		return
8262
	end
8263
	if combo == 1 and canatk == true then
8264
		canatk = false
8265
		--print'2'
8266
		Attack2()
8267
		combo = 2
8268
		canatk = true
8269
		spawn(function()
8270
			ds = true
8271
			lwait(ComboResetTime)
8272
			if canatk == true then
8273
				ds = false
8274
			end
8275
			if combo == 2 and not ds then
8276
				combo = 0
8277
			end
8278
		end)
8279
		return
8280
	end
8281
	if combo == 2 and canatk == true then
8282
		canatk = false
8283
		Attack3()
8284
		combo = 3
8285
		canatk = true
8286
		spawn(function()
8287
			ds = true
8288
			lwait(ComboResetTime)
8289
			if canatk == true then
8290
				ds = false
8291
			end
8292
			if combo == 3 and not ds then
8293
				combo = 0
8294
			end
8295
		end)
8296
		return
8297
	end
8298
	if combo == 3 and canatk == true then
8299
		canatk = false
8300
		Attack4()
8301
		combo = 0
8302
		lwait(ComboResetTime)
8303
		canatk = true
8304
		spawn(function()
8305
			if canatk == true then
8306
				ds = false
8307
			end
8308
			if combo == 0 and not ds then
8309
				combo = 0
8310
			end
8311
		end)
8312
		return
8313
	end
8314
end
8315
8316
mouse.Button1Down:connect(function()
8317
	ComboUp()	
8318
end)
8319
8320
local can=true
8321
function FootStep()
8322
	if root.CFrame.Y < -10 then
8323
		root.CFrame = cf(rand(-10, 10), 5, rand(-10, 10))
8324
	end
8325
	if can then
8326
		--// continue
8327
	else
8328
		return
8329
	end
8330
	can=false
8331
	delay(.2,function()
8332
		can=true
8333
	end)
8334
	local ping = Instance.new('Sound',Torso)
8335
	local ov = .5
8336
	local pitches={}
8337
	for i = -.05,.05,.005 do table.insert(pitches,1+i) end
8338
	ping.Volume = .25/ov
8339
	game:service'RunService'.RenderStepped:wait()
8340
	local ray = Ray.new(HumanoidRootPart.CFrame.p,(HumanoidRootPart.CFrame.p-(HumanoidRootPart.CFrame*cf(0,2.5,0)).p).unit*3.15)
8341
	local Hit,Pos = workspace:FindPartOnRayWithIgnoreList(ray, {Char})
8342
	if Hit and (Hit:IsDescendantOf(Character) == false) then
8343
		local num=0
8344
		if Hit.Material == Enum.Material.Plastic or Hit.Material == Enum.Material.SmoothPlastic then
8345
			local ss={379483672, 379398649};
8346
			ping.SoundId = rbx..ss[math.random(1,#ss)]
8347
			ping.Pitch = pitches[math.random(1,#pitches)]
8348
			ping:Play()
8349
			return
8350
		end
8351
		if Hit.Material == Enum.Material.Grass then
8352
			ping.SoundId = rbx..379482039
8353
			ping.Volume = .05/ov
8354
			ping.Pitch = pitches[math.random(1,#pitches)]
8355
			ping:Play()
8356
			return
8357
		end
8358
		if Hit.Material == Enum.Material.Neon then
8359
			ping.SoundId = rbx..236989198
8360
			ping.Volume = 1/ov
8361
			ping.Pitch = pitches[math.random(1,#pitches)]
8362
			local ping2 = Instance.new('Sound',Torso)
8363
			ping2.Volume = .075/ov
8364
			ping2.SoundId = rbx..379482691
8365
			ping2.Pitch = pitches[math.random(1,#pitches)]
8366
			ping:Play()
8367
			ping2:Play()
8368
			return
8369
		end
8370
		if Hit.Material == Enum.Material.Metal or Hit.Material == Enum.Material.DiamondPlate or Hit.Material == Enum.Material.CorrodedMetal then
8371
			local ss={379482691,};
8372
			ping.SoundId = rbx..ss[math.random(1,#ss)]			
8373
			ping.Volume = .5/ov
8374
			ping.Pitch = pitches[math.random(1,#pitches)]
8375
			ping:Play()
8376
			return
8377
		end --510932495
8378
		if Hit.Material == Enum.Material.WoodPlanks or Hit.Material == Enum.Material.Wood then
8379
			local ss={ 379484117};
8380
			ping.SoundId = rbx..ss[math.random(1,#ss)]
8381
			ping.Volume = .15/ov
8382
			ping.Pitch = pitches[math.random(1,#pitches)]
8383
			ping:Play()
8384
			return
8385
		end 
8386
		if Hit.Material == Enum.Material.Ice or Hit.Material == Enum.Material.Foil then
8387
			local ss={ 510932495};
8388
			ping.SoundId = rbx..ss[math.random(1,#ss)]
8389
			ping.Volume = .5/ov
8390
			ping.Pitch = pitches[math.random(1,#pitches)]
8391
			ping:Play()
8392
			return
8393
		end 
8394
		if Hit.Material == Enum.Material.Fabric or Hit.Material == Enum.Material.Sand or Hit.Name == 'Snow' then
8395
			--warn'derp'
8396
			local ss={145536125,145536149};
8397
			ping.SoundId = rbx..ss[math.random(1,#ss)]
8398
			ping.Pitch = pitches[math.random(1,#pitches)]
8399
			ping:Play()
8400
			return
8401
		end
8402
		if Hit.Material == Enum.Material.Slate or Hit.Material == Enum.Material.Pebble or Hit.Material == Enum.Material.Marble or Hit.Material == Enum.Material.Brick or Hit.Material == Enum.Material.Cobblestone or Hit.Material == Enum.Material.Concrete or Hit.Material == Enum.Material.Granite  then
8403
			local ss={379483672, 379398649};
8404
			ping.SoundId = rbx..ss[math.random(1,#ss)]
8405
			ping.Volume = .5/ov
8406
			ping.Pitch = pitches[math.random(1,#pitches)]
8407
			ping:Play()
8408
			return
8409
		end
8410
	end
8411
end
8412
8413
local upv=0
8414
8415
srs:connect(function()
8416
	sine = tick() * (change * 25)
8417
	Handle()
8418
end)
8419
8420
local once=false
8421
lrs:connect(function()
8422
	Trail.Enabled=trail
8423
	Landed = CheckIfLanded()
8424
    hum.PlatformStand = false
8425
	if ds then
8426
		if Mode == 'Running' and  not once then
8427
			once=true
8428
			spawn(function()
8429
				FadeSword'In'
8430
			end)
8431
		end
8432
		return
8433
	end
8434
    hum.JumpPower = 0
8435
    hum.Jump=false
8436
	hum.WalkSpeed = hum.WalkSpeed + (walkspd - hum.WalkSpeed) * .1;
8437
	walkspd=7
8438
	if not Walking then
8439
		walkspd = 25
8440
	end
8441
	local tmag_xz = (torso.Velocity*vec3(1, 0, 1)).magnitude
8442
	local tmag_y = torso.Velocity.Y
8443
	local trot = torso.RotVelocity.Y/50
8444
	local speed = Vector3.new(Torso.Velocity.X,0,Torso.Velocity.Z)
8445
	local TiltOnAxis = (root.CFrame-root.CFrame.p):inverse()*speed/200
8446
	local Tilt = ang(TiltOnAxis.Z,-TiltOnAxis.X,-TiltOnAxis.X)
8447
	if Landed == false then
8448
		State, Mode = 'Falling', 'Normal'
8449
	elseif tmag_xz < 3 then
8450
			State, Mode = 'Idle', 'Normal'
8451
	elseif tmag_xz >= 4 then
8452
		State = 'Walking'
8453
		if tmag_xz > 20 then
8454
			Mode = 'Running'
8455
		else
8456
			Mode = 'Normal'
8457
		end
8458
	end
8459
	local RestoreDefault = function(Current)
8460
		Current = Current or State
8461
		local Current2 = Mode
8462
		if LastMode ~= Current2 then
8463
			if Current2 == 'Running' then
8464
				spawn(function()
8465
					FadeSword'Out'
8466
				end)
8467
			elseif Current2 ~= 'Running' or once then
8468
				spawn(function()
8469
					FadeSword'In'
8470
				end)
8471
			end
8472
			LastMode = Current2
8473
		end
8474
		if LastState ~= Current then
8475
			LastState = Current
8476
			sine = 0
8477
		end
8478
    end
8479
    once=false
8480
    local Default_Anims = function()
8481
		local animspd = .1
8482
		local Right_Arm_ = cf(0,0,0)
8483
		local Left_Arm_ = cf(0,0,0)
8484
		local Right_Leg_ = cf(0,0,0)
8485
		local Left_Leg_ = cf(0,0,0)
8486
		local Head_ = cf(0,0,0)
8487
		local Torso_ = cf(0,0,0)
8488
		
8489
		torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
8490
		hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
8491
		law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
8492
		raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
8493
		rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
8494
		llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
8495
    end
8496
    if State == 'Falling' and ds == false then
8497
		local animspd = .3
8498
		change = 1
8499
		local Right_Arm_ = cf(0,0,0)
8500
		local Left_Arm_ = cf(0,0,0)
8501
		local Right_Leg_ = cf(0,0,0)
8502
		local Left_Leg_ = cf(0,0,0)
8503
		local Head_ = cf(0,0,0)
8504
		local Torso_ = cf(0,0,0)
8505
		
8506
		torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
8507
		hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
8508
		law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
8509
		raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
8510
		rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
8511
		llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)       
8512
    elseif State == 'Idle' and ds == false then
8513
		RestoreDefault()
8514
		if Mode == 'Normal' and ds == false then
8515
			local animspd = .125
8516
			change = .35
8517
			local Right_Arm_ = CFrame.new(0.467620611, -0.552611947, -0.132565618, 0.842239499, -0.53289324, -0.0816002488, 0.520031989, 0.842986345, -0.137627944, 0.142128706, 0.0734807402, 0.987117887)
8518
			local Left_Arm_ = CFrame.new(-0.781376958, 0.0332048535, -1.34890664, 0.59977144, 0.799722373, -0.0268236771, -0.304636121, 0.197214842, -0.931828678, -0.739913702, 0.567055464, 0.361907959)
8519
			local Right_Leg_ = CFrame.new(-0.272229075, -0.24053812, 0.000354528427, 0.955758393, -0.294165701, -1.257658e-05, 0.294165134, 0.955759764, 6.22232903e-07, 1.13546848e-05, -4.07546759e-06, 1.00000012)
8520
			local Left_Leg_ = CFrame.new(0.0260814428, 0.0450050831, -0.361847639, 0.775439262, 0.110567033, 0.621666431, -0.0906994343, 0.993843734, -0.0636264831, -0.624874234, -0.00704631209, 0.780693769)
8521
			local Head_ = CFrame.new(0.270924807, 0.0874993801, 0.260071456, 0.390913397, -0.180617183, 0.90253222, -0.0901362225, 0.96833241, 0.23282595, -0.916003525, -0.172365636, 0.362253964)
8522
			local Torso_ = CFrame.new(0.0059170723, -0.182877302, -0.00212669373, 0.392511159, 0, -0.919747353, 0, 1, 0, 0.919747353, 0, 0.392511159)
8523
			
8524
			torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
8525
			hedw.C0 = lerp(hedw.C0, cf(0,0,-cos(sine/8)/16)*Head_*ang(cos(sine/8)/16,0,0),animspd)
8526
			law.C0 = lerp(law.C0, cf(sin(sine/8)/20,cos(sine/8)/14,0)*Left_Arm_*ang(cos(sine/8)/14,0,sin(sine/8)/20),animspd)
8527
			raw.C0 = lerp(raw.C0, cf(0,.5+sin(sine/8)/14,-.5)*Right_Arm_*ang(rad(70)+sin(sine/8)/14,0,0),animspd)
8528
			rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
8529
			llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
8530
			rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8531
			lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8532
			shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,-rad(15),rad(70)), animspd)
8533
		else
8534
			Default_Anims()
8535
			warn'Idle: Unknown Mode Used'
8536
		end
8537
    elseif State == 'Walking' and ds == false then
8538
		RestoreDefault()
8539
		if Mode == 'Normal' and ds == false then
8540
			local up = sin(sine/6)
8541
			if math.abs(up)>=.995 then
8542
				local actual,floor = CheckIfLanded(7)
8543
				local clrs={'Really black','Pearl'}
8544
				local mtrl='Neon'
8545
				local ss = 3
8546
				if actual then
8547
					clrs={tostring(floor.BrickColor)}
8548
					mtrl=floor.Material
8549
				end
8550
				FootStep()
8551
				if up > 0 then
8552
					
8553
				else
8554
					
8555
				end
8556
			end
8557
			local animspd = .25
8558
			change = 1.4
8559
			local Right_Arm_ = cf(0,0,0)
8560
			local Left_Arm_ = cf(0,0,0)
8561
			local Right_Leg_ = cf(0,0,0)
8562
			local Left_Leg_ = cf(0,0,0)
8563
			local Head_ = cf(0,0,0)
8564
			local Torso_ = cf(0,0,0)
8565
			
8566
			torw.C0 = clerp(torw.C0, cf(0,-.2,0)*Torso_*ang(-rad(12)+sin(sine/3)/18,sin(sine/6)/13,0),animspd)
8567
			hedw.C0 = clerp(hedw.C0, cf(0,0,-rad(4))*Head_*ang(rad(4),0,0),animspd)
8568
			law.C0 = clerp(law.C0, cf(-.265,-.359/2,sin(sine/6)/4)*Left_Arm_*ang(-sin(sine/6)/4,0,-rad(20)),animspd)
8569
			raw.C0 = clerp(raw.C0, cf(.265+cos(sine/6)/8,(-.359/2)+.65,-.85)*Right_Arm_*ang(rad(90),0,rad(20)+cos(sine/6)/8),animspd)
8570
			rlw.C0 = clerp(rlw.C0, cf(-.034/2,.1-cos(sine/6)/4,-.4+cos(sine/6)/4+-sin(sine/6)/2)*ang(-rad(5)+-sin(sine/6)/2,-sin(sine/6)/13,rad(1)),animspd)
8571
    		llw.C0 = clerp(llw.C0, cf(.034/2,.1+cos(sine/6)/4,-.4+-cos(sine/6)/4+sin(sine/6)/2)*ang(-rad(5)+sin(sine/6)/2,-sin(sine/6)/13,-rad(1)),animspd)
8572
			
8573
    		rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8574
			lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8575
			shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,rad(15),rad(70)), .1)
8576
		elseif Mode == 'Running' and ds == false then
8577
			local up = sin(sine/6)
8578
			if math.abs(up)>=.995 then
8579
				local actual,floor = CheckIfLanded(7)
8580
				local clrs={'Really black','Pearl'}
8581
				local mtrl='Neon'
8582
				local ss = 3
8583
				if actual then
8584
					clrs={tostring(floor.BrickColor)}
8585
					mtrl=floor.Material
8586
				end
8587
				FootStep()
8588
				if up > 0 then
8589
					
8590
				else
8591
					
8592
				end
8593
			end
8594
			local animspd = .25
8595
			change = 1.4
8596
			local Right_Arm_ = cf(0,0,0)
8597
			local Left_Arm_ = cf(0,0,0)
8598
			local Right_Leg_ = cf(0,0,0)
8599
			local Left_Leg_ = cf(0,0,0)
8600
			local Head_ = cf(0,0,0)
8601
			local Torso_ = cf(0,0,0)
8602
			
8603
			torw.C0 = clerp(torw.C0, cf(0,-.2,0)*Torso_*ang(-rad(12)+sin(sine/3)/18,sin(sine/6)/13,0),animspd)
8604
			hedw.C0 = clerp(hedw.C0, cf(0,0,-rad(4))*Head_*ang(rad(4),0,0),animspd)
8605
			law.C0 = clerp(law.C0, cf(-.265,-.359/2,sin(sine/6)/4)*Left_Arm_*ang(-sin(sine/6)/4,0,-rad(20)),animspd)
8606
			raw.C0 = clerp(raw.C0, cf(.265,-.359/2,-sin(sine/6)/4)*Right_Arm_*ang(sin(sine/6)/4,0,rad(20)),animspd)
8607
			rlw.C0 = clerp(rlw.C0, cf(-.034/2,.1-cos(sine/6)/4,-.4+cos(sine/6)/4+-sin(sine/6)/2)*ang(-rad(5)+-sin(sine/6)/2,-sin(sine/6)/13,rad(1)),animspd)
8608
    		llw.C0 = clerp(llw.C0, cf(.034/2,.1+cos(sine/6)/4,-.4+-cos(sine/6)/4+sin(sine/6)/2)*ang(-rad(5)+sin(sine/6)/2,-sin(sine/6)/13,-rad(1)),animspd)
8609
			
8610
    		rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8611
			lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8612
			shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,rad(15),rad(70)), .1)
8613
		else --// 59426=74955
8614
			Default_Anims()
8615
			warn'Walking: Unknown Mode Used'
8616
		end
8617
    else --// New Animation Test Stage
8618
		local animspd = .1
8619
		local Right_Arm_ = cf(0,0,0)
8620
		local Left_Arm_ = cf(0,0,0)
8621
		local Right_Leg_ = cf(0,0,0)
8622
		local Left_Leg_ = cf(0,0,0)
8623
		local Head_ = cf(0,0,0)
8624
		local Torso_ = cf(0,0,0)
8625
		
8626
		torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
8627
		hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
8628
		law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
8629
		raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
8630
		rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
8631
		llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
8632
    end
8633
        
8634
end)
8635
8636
--[[ Default Welds
8637
		local animspd = .3
8638
		change = 1
8639
		
8640
		local Right_Arm_ = cf(0,0,0)
8641
		local Left_Arm_ = cf(0,0,0)
8642
		local Right_Leg_ = cf(0,0,0)
8643
		local Left_Leg_ = cf(0,0,0)
8644
		local Head_ = cf(0,0,0)
8645
		local Torso_ = cf(0,0,0)
8646
8647
		torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
8648
		hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
8649
		law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
8650
		raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
8651
		rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
8652
		rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8653
		lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8654
		shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,0,0),animspd)
8655
		
8656
--]]
8657
8658
Player.Chatted:connect(function(Message)
8659
	if Message == '~debug' then
8660
		ds,dkd=false,false
8661
		for i,v in next, FX:children() do
8662
			v:Destroy()
8663
		end
8664
		FadeSword'In'
8665
	end
8666
end)
8667
8668
script.Archivable = false
8669
script:WaitForChild('Sound'):Play()
8670
8671
print("Press ']' to see all KeyBinds")
8672
print('Say ~debug to... debug..............................')