View difference between Paste ID: H1jdfmdY and SeRxrgci
SHOW: | | - or go back to the newest paste.
1
--https://github.com/Mokiros/roblox-FE-compatibility
2
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
3
local Player,game,owner = owner,game
4
local RealPlayer = Player
5
do
6
    print("FE Compatibility code V2 by Mokiros")
7
    local RealPlayer = RealPlayer
8
    script.Parent = RealPlayer.Character
9
 
10
    --Fake event to make stuff like Mouse.KeyDown work
11
    local Disconnect_Function = function(this)
12
        this[1].Functions[this[2]] = nil
13
    end
14
    local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
15
    local FakeEvent_Metatable = {__index={
16
        Connect = function(this,f)
17
            local i = tostring(math.random(0,10000))
18
            while this.Functions[i] do
19
                i = tostring(math.random(0,10000))
20
            end
21
            this.Functions[i] = f
22
            return setmetatable({this,i},Disconnect_Metatable)
23
        end
24
    }}
25
    FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
26
    local function fakeEvent()
27
        return setmetatable({Functions={}},FakeEvent_Metatable)
28
    end
29
 
30
    --Creating fake input objects with fake variables
31
    local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
32
    FakeMouse.keyUp = FakeMouse.KeyUp
33
    FakeMouse.keyDown = FakeMouse.KeyDown
34
    local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
35
    local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
36
        CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
37
    end}
38
    --Merged 2 functions into one by checking amount of arguments
39
    CAS.UnbindAction = CAS.BindAction
40
 
41
    --This function will trigger the events that have been :Connect()'ed
42
    local function TriggerEvent(self,ev,...)
43
        for _,f in pairs(self[ev].Functions) do
44
            f(...)
45
        end
46
    end
47
    FakeMouse.TriggerEvent = TriggerEvent
48
    UIS.TriggerEvent = TriggerEvent
49
 
50
    --Client communication
51
    local Event = Instance.new("RemoteEvent")
52
    Event.Name = "UserInput_Event"
53
    Event.OnServerEvent:Connect(function(plr,io)
54
        if plr~=RealPlayer then return end
55
        FakeMouse.Target = io.Target
56
        FakeMouse.Hit = io.Hit
57
        if not io.isMouse then
58
            local b = io.UserInputState == Enum.UserInputState.Begin
59
            if io.UserInputType == Enum.UserInputType.MouseButton1 then
60
                return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
61
            end
62
            if io.UserInputType == Enum.UserInputType.MouseButton2 then
63
                return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
64
            end
65
            for _,t in pairs(CAS.Actions) do
66
                for _,k in pairs(t.Keys) do
67
                    if k==io.KeyCode then
68
                        t.Function(t.Name,io.UserInputState,io)
69
                    end
70
                end
71
            end
72
            FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
73
            UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
74
        end
75
    end)
76
    Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
77
    local Mouse = owner:GetMouse()
78
    local UIS = game:GetService("UserInputService")
79
    local input = function(io,RobloxHandled)
80
        if RobloxHandled then return end
81
        --Since InputObject is a client-side instance, we create and pass table instead
82
        Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
83
    end
84
    UIS.InputBegan:Connect(input)
85
    UIS.InputEnded:Connect(input)
86
 
87
    local h,t
88
    --Give the server mouse data every second frame, but only if the values changed
89
    --If player is not moving their mouse, client won't fire events
90
    local HB = game:GetService("RunService").Heartbeat
91
    while true do
92
        if h~=Mouse.Hit or t~=Mouse.Target then
93
            h,t=Mouse.Hit,Mouse.Target
94
            Event:FireServer({isMouse=true,Target=t,Hit=h})
95
        end
96
        --Wait 2 frames
97
        for i=1,2 do
98
            HB:Wait()
99
        end
100
    end]==],script)
101
 
102
    ----Sandboxed game object that allows the usage of client-side methods and services
103
    --Real game object
104
    local RealGame = game
105
 
106
    --Metatable for fake service
107
    local FakeService_Metatable = {
108
        __index = function(self,k)
109
            local s = rawget(self,"_RealService")
110
            if s then
111
                return typeof(s[k])=="function"
112
                and function(_,...)return s[k](s,...)end or s[k]
113
            end
114
        end,
115
        __newindex = function(self,k,v)
116
            local s = rawget(self,"_RealService")
117
            if s then s[k]=v end
118
        end
119
    }
120
    local function FakeService(t,RealService)
121
        t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
122
        return setmetatable(t,FakeService_Metatable)
123
    end
124
 
125
    --Fake game object
126
    local FakeGame = {
127
        GetService = function(self,s)
128
            return rawget(self,s) or RealGame:GetService(s)
129
        end,
130
        Players = FakeService({
131
            LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
132
        },"Players"),
133
        UserInputService = FakeService(UIS,"UserInputService"),
134
        ContextActionService = FakeService(CAS,"ContextActionService"),
135
        RunService = FakeService({
136
            _btrs = {},
137
            RenderStepped = RealGame:GetService("RunService").Heartbeat,
138
            BindToRenderStep = function(self,name,_,fun)
139
                self._btrs[name] = self.Heartbeat:Connect(fun)
140
            end,
141
            UnbindFromRenderStep = function(self,name)
142
                self._btrs[name]:Disconnect()
143
            end,
144
        },"RunService")
145
    }
146
    rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
147
    FakeGame.service = FakeGame.GetService
148
    FakeService(FakeGame,game)
149
    --Changing owner to fake player object to support owner:GetMouse()
150
    game,owner = FakeGame,FakeGame.Players.LocalPlayer
151
end
152
--SUICIDE GUN REBORN BY DMS
153
o1 = Instance.new("Tool")
154
o2 = Instance.new("Part")
155
o3 = Instance.new("SpecialMesh")
156
o4 = Instance.new("Part")
157
o5 = Instance.new("BlockMesh")
158
o6 = Instance.new("Part")
159
o7 = Instance.new("BlockMesh")
160
o8 = Instance.new("Part")
161
o9 = Instance.new("BlockMesh")
162
o10 = Instance.new("Part")
163
o11 = Instance.new("BlockMesh")
164
o12 = Instance.new("Part")
165
o13 = Instance.new("BlockMesh")
166
o14 = Instance.new("Part")
167
o15 = Instance.new("BlockMesh")
168
o16 = Instance.new("Part")
169
o17 = Instance.new("BlockMesh")
170
o18 = Instance.new("Part")
171
o19 = Instance.new("BlockMesh")
172
o20 = Instance.new("Part")
173
o21 = Instance.new("CylinderMesh")
174
o22 = Instance.new("Part")
175
o23 = Instance.new("CylinderMesh")
176
o24 = Instance.new("Part")
177
o25 = Instance.new("CylinderMesh")
178
o26 = Instance.new("Part")
179
o27 = Instance.new("BlockMesh")
180
o28 = Instance.new("Part")
181
o29 = Instance.new("CylinderMesh")
182
o30 = Instance.new("Part")
183
o31 = Instance.new("PointLight")
184
o32 = Instance.new("BillboardGui")
185
o33 = Instance.new("ImageLabel")
186
o34 = Instance.new("BlockMesh")
187
o35 = Instance.new("Part")
188
o36 = Instance.new("BlockMesh")
189
o37 = Instance.new("Part")
190
o38 = Instance.new("BlockMesh")
191
o39 = Instance.new("Part")
192
o40 = Instance.new("BlockMesh")
193
o41 = Instance.new("Part")
194
o42 = Instance.new("Decal")
195
o43 = Instance.new("CylinderMesh")
196
o44 = Instance.new("Part")
197
o45 = Instance.new("CylinderMesh")
198
o46 = Instance.new("Part")
199
o47 = Instance.new("BlockMesh")
200
o48 = Instance.new("Part")
201
o49 = Instance.new("SpecialMesh")
202
o50 = Instance.new("Part")
203
o51 = Instance.new("SpecialMesh")
204
o52 = Instance.new("Part")
205
o53 = Instance.new("BlockMesh")
206
o54 = Instance.new("Part")
207
o55 = Instance.new("BlockMesh")
208
o56 = Instance.new("Part")
209
o57 = Instance.new("BlockMesh")
210
o58 = Instance.new("Part")
211
o59 = Instance.new("CylinderMesh")
212
o60 = Instance.new("Part")
213
o61 = Instance.new("SpecialMesh")
214
o62 = Instance.new("Part")
215
o63 = Instance.new("BlockMesh")
216
o64 = Instance.new("Part")
217
o65 = Instance.new("SpecialMesh")
218
o66 = Instance.new("Part")
219
o67 = Instance.new("BlockMesh")
220
o68 = Instance.new("Part")
221
o69 = Instance.new("BlockMesh")
222
o70 = Instance.new("Part")
223
o71 = Instance.new("SpecialMesh")
224
o72 = Instance.new("Part")
225
o73 = Instance.new("BlockMesh")
226
o74 = Instance.new("Part")
227
o75 = Instance.new("BlockMesh")
228
o76 = Instance.new("Part")
229
o77 = Instance.new("BlockMesh")
230
o78 = Instance.new("Part")
231
o79 = Instance.new("SpecialMesh")
232
o80 = Instance.new("Part")
233
o81 = Instance.new("CylinderMesh")
234
o82 = Instance.new("Part")
235
o83 = Instance.new("SpecialMesh")
236
o84 = Instance.new("Part")
237
o85 = Instance.new("BlockMesh")
238
o86 = Instance.new("Part")
239
o87 = Instance.new("SpecialMesh")
240
o88 = Instance.new("Part")
241
o89 = Instance.new("SpecialMesh")
242
o90 = Instance.new("Part")
243
o91 = Instance.new("BlockMesh")
244
o92 = Instance.new("Part")
245
o93 = Instance.new("BlockMesh")
246
o94 = Instance.new("Part")
247
o95 = Instance.new("SpecialMesh")
248
o96 = Instance.new("Part")
249
o97 = Instance.new("BlockMesh")
250
o98 = Instance.new("Part")
251
o99 = Instance.new("SpecialMesh")
252
o100 = Instance.new("Part")
253
o101 = Instance.new("BlockMesh")
254
o102 = Instance.new("Part")
255
o103 = Instance.new("BlockMesh")
256
o104 = Instance.new("Part")
257
o105 = Instance.new("SpecialMesh")
258
o106 = Instance.new("Part")
259
o107 = Instance.new("BlockMesh")
260
o108 = Instance.new("Part")
261
o109 = Instance.new("CylinderMesh")
262
o110 = Instance.new("Part")
263
o111 = Instance.new("BlockMesh")
264
o112 = Instance.new("Part")
265
o113 = Instance.new("SpecialMesh")
266
o114 = Instance.new("Part")
267
o115 = Instance.new("CylinderMesh")
268
o116 = Instance.new("Part")
269
o117 = Instance.new("BlockMesh")
270
o118 = Instance.new("Part")
271
o119 = Instance.new("SpecialMesh")
272
o120 = Instance.new("Part")
273
o121 = Instance.new("BlockMesh")
274
o122 = Instance.new("Part")
275
o123 = Instance.new("SpecialMesh")
276
o124 = Instance.new("Part")
277
o125 = Instance.new("SpecialMesh")
278
o126 = Instance.new("Part")
279
o127 = Instance.new("BlockMesh")
280
o128 = Instance.new("Part")
281
o129 = Instance.new("BlockMesh")
282
o130 = Instance.new("Part")
283
o131 = Instance.new("SpecialMesh")
284
o132 = Instance.new("Part")
285
o133 = Instance.new("BlockMesh")
286
o134 = Instance.new("Part")
287
o135 = Instance.new("BlockMesh")
288
o136 = Instance.new("Part")
289
o137 = Instance.new("SpecialMesh")
290
o138 = Instance.new("Part")
291
o139 = Instance.new("BlockMesh")
292
o140 = Instance.new("Part")
293
o141 = Instance.new("CylinderMesh")
294
o142 = Instance.new("Part")
295
o143 = Instance.new("BlockMesh")
296
o144 = Instance.new("Part")
297
o145 = Instance.new("SpecialMesh")
298
o146 = Instance.new("Part")
299
o147 = Instance.new("SpecialMesh")
300
o148 = Instance.new("Part")
301
o149 = Instance.new("Sound")
302
o150 = Instance.new("BlockMesh")
303
o1.Name = "Suicide"
304
o1.Parent = game.Players.LocalPlayer.Backpack
305
o2.Parent = o1
306
o2.Material = Enum.Material.SmoothPlastic
307
o2.BrickColor = BrickColor.new("Really black")
308
o2.Position = Vector3.new(18.950964, 0.850407004, 14.2854338)
309
o2.Rotation = Vector3.new(-2.19040904e-013, 2.50129006e-006, -180)
310
o2.Anchored = true
311
o2.FormFactor = Enum.FormFactor.Custom
312
o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
313
o2.CFrame = CFrame.new(18.950964, 0.850407004, 14.2854338, -1, 8.74227766e-008, 4.36557457e-008, -8.74227766e-008, -1, 3.82298495e-015, 4.36557457e-008, 3.92853881e-018, 1)
314
o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
315
o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
316
o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
317
o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
318
o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
319
o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
320
o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
321
o3.Parent = o2
322
o3.Scale = Vector3.new(0.666666687, 0.388888866, 0.416666687)
323
o3.MeshType = Enum.MeshType.Wedge
324
o4.Parent = o1
325
o4.Material = Enum.Material.SmoothPlastic
326
o4.BrickColor = BrickColor.new("Really black")
327
o4.Position = Vector3.new(18.950964, 0.953182995, 14.5104237)
328
o4.Rotation = Vector3.new(3.08320072e-016, 90, 0)
329
o4.Anchored = true
330
o4.FormFactor = Enum.FormFactor.Custom
331
o4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
332
o4.CFrame = CFrame.new(18.950964, 0.953182995, 14.5104237, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
333
o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
334
o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
335
o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
336
o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
337
o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
338
o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
339
o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
340
o5.Parent = o4
341
o5.Scale = Vector3.new(0.333333343, 0.194444433, 0.694444478)
342
o6.Parent = o1
343
o6.Material = Enum.Material.SmoothPlastic
344
o6.BrickColor = BrickColor.new("Black")
345
o6.Position = Vector3.new(18.950964, 1.13095105, 14.5993176)
346
o6.Rotation = Vector3.new(3.08320072e-016, 90, 0)
347
o6.Anchored = true
348
o6.FormFactor = Enum.FormFactor.Custom
349
o6.Size = Vector3.new(0.566666663, 0.200000003, 0.200000003)
350
o6.CFrame = CFrame.new(18.950964, 1.13095105, 14.5993176, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
351
o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
352
o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
353
o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
354
o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
355
o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
356
o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
357
o6.Color = Color3.new(0.105882, 0.164706, 0.207843)
358
o7.Parent = o6
359
o7.Scale = Vector3.new(1, 0.583333313, 0.722222269)
360
o8.Name = "SightBack"
361
o8.Parent = o1
362
o8.Material = Enum.Material.SmoothPlastic
363
o8.Position = Vector3.new(18.950964, 1.23151195, 14.4882116)
364
o8.Rotation = Vector3.new(3.08320072e-016, 90, 0)
365
o8.Anchored = true
366
o8.FormFactor = Enum.FormFactor.Custom
367
o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
368
o8.CFrame = CFrame.new(18.950964, 1.23151195, 14.4882116, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
369
o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
370
o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
371
o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
372
o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
373
o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
374
o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
375
o9.Parent = o8
376
o9.Scale = Vector3.new(0.166666672, 0.111111112, 0.411111116)
377
o10.Parent = o1
378
o10.Material = Enum.Material.SmoothPlastic
379
o10.BrickColor = BrickColor.new("Really black")
380
o10.Position = Vector3.new(18.950964, 0.961513996, 14.5937595)
381
o10.Rotation = Vector3.new(3.08320072e-016, 90, 0)
382
o10.Anchored = true
383
o10.FormFactor = Enum.FormFactor.Custom
384
o10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
385
o10.CFrame = CFrame.new(18.950964, 0.961513996, 14.5937595, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
386
o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
387
o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
388
o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
389
o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
390
o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
391
o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
392
o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
393
o11.Parent = o10
394
o11.Scale = Vector3.new(0.49999997, 0.277777761, 0.694444478)
395
o12.Parent = o1
396
o12.Material = Enum.Material.SmoothPlastic
397
o12.BrickColor = BrickColor.new("Really black")
398
o12.Position = Vector3.new(18.950964, 1.19539297, 14.5993176)
399
o12.Rotation = Vector3.new(3.08320072e-016, 90, 0)
400
o12.Anchored = true
401
o12.FormFactor = Enum.FormFactor.Custom
402
o12.Size = Vector3.new(0.566666663, 0.200000003, 0.200000003)
403
o12.CFrame = CFrame.new(18.950964, 1.19539297, 14.5993176, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
404
o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
405
o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
406
o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
407
o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
408
o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
409
o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
410
o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
411
o13.Parent = o12
412
o13.Scale = Vector3.new(1, 0.249999985, 0.411111116)
413
o14.Parent = o1
414
o14.Material = Enum.Material.SmoothPlastic
415
o14.BrickColor = BrickColor.new("Really black")
416
o14.Position = Vector3.new(18.908186, 1.19095695, 14.5993176)
417
o14.Rotation = Vector3.new(-90, 44.9999962, 90)
418
o14.Anchored = true
419
o14.FormFactor = Enum.FormFactor.Custom
420
o14.Size = Vector3.new(0.566666663, 0.200000003, 0.200000003)
421
o14.CFrame = CFrame.new(18.908186, 1.19095695, 14.5993176, 0, -0.707106709, 0.707106709, 5.38120031e-018, 0.707106769, 0.707106769, -1, 2.04281037e-011, 9.59801127e-011)
422
o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
423
o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
424
o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
425
o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
426
o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
427
o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
428
o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
429
o15.Parent = o14
430
o15.Scale = Vector3.new(1, 0.194444433, 0.222222224)
431
o16.Name = "SightBack"
432
o16.Parent = o1
433
o16.Material = Enum.Material.SmoothPlastic
434
o16.Position = Vector3.new(18.9787407, 1.25372696, 14.4882116)
435
o16.Rotation = Vector3.new(3.08320072e-016, 90, 0)
436
o16.Anchored = true
437
o16.FormFactor = Enum.FormFactor.Custom
438
o16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
439
o16.CFrame = CFrame.new(18.9787407, 1.25372696, 14.4882116, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
440
o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
441
o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
442
o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
443
o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
444
o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
445
o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
446
o17.Parent = o16
447
o17.Scale = Vector3.new(0.166666672, 0.111111112, 0.13333334)
448
o18.Name = "SightBack"
449
o18.Parent = o1
450
o18.Material = Enum.Material.SmoothPlastic
451
o18.Position = Vector3.new(18.9231701, 1.25372696, 14.4882002)
452
o18.Rotation = Vector3.new(3.08320072e-016, 90, 0)
453
o18.Anchored = true
454
o18.FormFactor = Enum.FormFactor.Custom
455
o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
456
o18.CFrame = CFrame.new(18.9231701, 1.25372696, 14.4882002, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
457
o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
458
o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
459
o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
460
o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
461
o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
462
o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
463
o19.Parent = o18
464
o19.Scale = Vector3.new(0.166666672, 0.111111112, 0.13333334)
465
o20.Parent = o1
466
o20.Material = Enum.Material.SmoothPlastic
467
o20.BrickColor = BrickColor.new("Black")
468
o20.Position = Vector3.new(18.950964, 0.886528015, 14.5798664)
469
o20.Rotation = Vector3.new(-90, -2.50447761e-006, -90)
470
o20.Anchored = true
471
o20.FormFactor = Enum.FormFactor.Custom
472
o20.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
473
o20.CFrame = CFrame.new(18.950964, 0.886528015, 14.5798664, -8.74279067e-008, 1, -4.37113812e-008, -3.83195418e-015, 4.37113812e-008, 1, 1, 8.74279067e-008, -4.65359901e-018)
474
o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
475
o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
476
o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
477
o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
478
o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
479
o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
480
o20.Color = Color3.new(0.105882, 0.164706, 0.207843)
481
o21.Parent = o20
482
o21.Scale = Vector3.new(0.416666687, 0.722222269, 0.416666687)
483
o22.Name = "SightLine"
484
o22.Parent = o1
485
o22.Material = Enum.Material.SmoothPlastic
486
o22.BrickColor = BrickColor.new("Smoky grey")
487
o22.Position = Vector3.new(18.950964, 1.21539295, 15.7804356)
488
o22.Rotation = Vector3.new(90, -2.50447761e-006, -90)
489
o22.Anchored = true
490
o22.FormFactor = Enum.FormFactor.Custom
491
o22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
492
o22.CFrame = CFrame.new(18.950964, 1.21539295, 15.7804356, 0, 1, -4.37113812e-008, 5.38120031e-018, -4.37113812e-008, -1, -1, 0, 6.1083781e-018)
493
o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
494
o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
495
o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
496
o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
497
o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
498
o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
499
o22.Color = Color3.new(0.356863, 0.364706, 0.411765)
500
o23.Parent = o22
501
o23.Scale = Vector3.new(0.505999982, 0.150000006, 0.505999982)
502
o24.Parent = o1
503
o24.Material = Enum.Material.SmoothPlastic
504
o24.BrickColor = BrickColor.new("Black")
505
o24.Position = Vector3.new(18.950964, 0.96707201, 15.7326679)
506
o24.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
507
o24.Anchored = true
508
o24.FormFactor = Enum.FormFactor.Custom
509
o24.Size = Vector3.new(0.200000003, 0.344444454, 0.200000003)
510
o24.CFrame = CFrame.new(18.950964, 0.96707201, 15.7326679, -1, 4.36557457e-008, -4.37113812e-008, -4.37113812e-008, 1.9122997e-015, 1, 4.36557457e-008, 1, -4.65359901e-018)
511
o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
512
o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
513
o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
514
o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
515
o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
516
o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
517
o24.Color = Color3.new(0.105882, 0.164706, 0.207843)
518
o25.Parent = o24
519
o25.Scale = Vector3.new(0.405599982, 1, 0.405599982)
520
o26.Parent = o1
521
o26.Material = Enum.Material.SmoothPlastic
522
o26.BrickColor = BrickColor.new("Black")
523
o26.Position = Vector3.new(18.950964, 1.01984501, 15.7298756)
524
o26.Rotation = Vector3.new(3.08320072e-016, 90, 0)
525
o26.Anchored = true
526
o26.FormFactor = Enum.FormFactor.Custom
527
o26.Size = Vector3.new(0.338888884, 0.200000003, 0.200000003)
528
o26.CFrame = CFrame.new(18.950964, 1.01984501, 15.7298756, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
529
o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
530
o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
531
o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
532
o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
533
o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
534
o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
535
o26.Color = Color3.new(0.105882, 0.164706, 0.207843)
536
o27.Parent = o26
537
o27.Scale = Vector3.new(1, 0.527777731, 0.611111104)
538
o28.Parent = o1
539
o28.Material = Enum.Material.SmoothPlastic
540
o28.BrickColor = BrickColor.new("Black")
541
o28.Position = Vector3.new(18.950964, 0.96707201, 15.7298756)
542
o28.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
543
o28.Anchored = true
544
o28.FormFactor = Enum.FormFactor.Custom
545
o28.Size = Vector3.new(0.200000003, 0.338888884, 0.200000003)
546
o28.CFrame = CFrame.new(18.950964, 0.96707201, 15.7298756, -1, 4.36557457e-008, -4.37113812e-008, -4.37113812e-008, 1.9122997e-015, 1, 4.36557457e-008, 1, -4.65359901e-018)
547
o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
548
o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
549
o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
550
o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
551
o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
552
o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
553
o28.Color = Color3.new(0.105882, 0.164706, 0.207843)
554
o29.Parent = o28
555
o29.Scale = Vector3.new(0.611111104, 1, 0.611111104)
556
o30.Name = "Main"
557
o30.Parent = o1
558
o30.Material = Enum.Material.SmoothPlastic
559
o30.BrickColor = BrickColor.new("Really black")
560
o30.Transparency = 1
561
o30.Position = Vector3.new(18.950964, 1.12816894, 15.9493256)
562
o30.Rotation = Vector3.new(90, -2.50447761e-006, 2.50796006e-006)
563
o30.Anchored = true
564
o30.FormFactor = Enum.FormFactor.Custom
565
o30.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
566
o30.CFrame = CFrame.new(18.950964, 1.12816894, 15.9493256, 1, -4.3772161e-008, -4.37113812e-008, -4.37113812e-008, -1.49011594e-008, -1, 4.3772161e-008, 1, -1.49011603e-008)
567
o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
568
o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
569
o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
570
o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
571
o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
572
o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
573
o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
574
o31.Name = "FlashFX"
575
o31.Parent = o30
576
o31.Color = Color3.new(1, 1, 0)
577
o31.Enabled = false
578
o31.Brightness = 10
579
o31.Range = 6
580
o31.Shadows = true
581
o32.Name = "FlashGui"
582
o32.Parent = o30
583
o32.Size = UDim2.new(1.1000000238419,0,1.1000000238419,0)
584
o32.Enabled = false
585
o33.Name = "Label"
586
o33.Parent = o32
587
o33.Size = UDim2.new(1,0,1,0)
588
o33.BackgroundTransparency = 1
589
o33.Image = "http://www.roblox.com/asset/?id=117472237"
590
o34.Parent = o30
591
o34.Scale = Vector3.new(0.99999994, 0.99999994, 0.99999994)
592
o35.Parent = o1
593
o35.Material = Enum.Material.SmoothPlastic
594
o35.BrickColor = BrickColor.new("Black")
595
o35.Position = Vector3.new(18.908186, 1.19095695, 15.5132236)
596
o35.Rotation = Vector3.new(-90, 44.9999962, 90)
597
o35.Anchored = true
598
o35.FormFactor = Enum.FormFactor.Custom
599
o35.Size = Vector3.new(0.772222221, 0.200000003, 0.200000003)
600
o35.CFrame = CFrame.new(18.908186, 1.19095695, 15.5132236, 0, -0.707106709, 0.707106709, 5.38120031e-018, 0.707106769, 0.707106769, -1, 2.04281037e-011, 9.59801127e-011)
601
o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
602
o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
603
o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
604
o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
605
o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
606
o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
607
o35.Color = Color3.new(0.105882, 0.164706, 0.207843)
608
o36.Parent = o35
609
o36.Scale = Vector3.new(1, 0.194444433, 0.222222224)
610
o37.Parent = o1
611
o37.Material = Enum.Material.SmoothPlastic
612
o37.BrickColor = BrickColor.new("Black")
613
o37.Position = Vector3.new(18.950964, 1.19539297, 15.5132236)
614
o37.Rotation = Vector3.new(3.08320072e-016, 90, 0)
615
o37.Anchored = true
616
o37.FormFactor = Enum.FormFactor.Custom
617
o37.Size = Vector3.new(0.772222221, 0.200000003, 0.200000003)
618
o37.CFrame = CFrame.new(18.950964, 1.19539297, 15.5132236, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
619
o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
620
o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
621
o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
622
o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
623
o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
624
o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
625
o37.Color = Color3.new(0.105882, 0.164706, 0.207843)
626
o38.Parent = o37
627
o38.Scale = Vector3.new(1, 0.249999985, 0.411111116)
628
o39.Parent = o1
629
o39.Material = Enum.Material.SmoothPlastic
630
o39.BrickColor = BrickColor.new("Black")
631
o39.Position = Vector3.new(18.950964, 1.13095105, 15.5132236)
632
o39.Rotation = Vector3.new(3.08320072e-016, 90, 0)
633
o39.Anchored = true
634
o39.FormFactor = Enum.FormFactor.Custom
635
o39.Size = Vector3.new(0.772222221, 0.200000003, 0.200000003)
636
o39.CFrame = CFrame.new(18.950964, 1.13095105, 15.5132236, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
637
o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
638
o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
639
o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
640
o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
641
o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
642
o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
643
o39.Color = Color3.new(0.105882, 0.164706, 0.207843)
644
o40.Parent = o39
645
o40.Scale = Vector3.new(1, 0.583333313, 0.722222269)
646
o41.Parent = o1
647
o41.Material = Enum.Material.SmoothPlastic
648
o41.BrickColor = BrickColor.new("Black")
649
o41.Position = Vector3.new(18.950964, 1.12816894, 15.3854284)
650
o41.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
651
o41.Anchored = true
652
o41.FormFactor = Enum.FormFactor.Custom
653
o41.Size = Vector3.new(0.200000003, 1.06111109, 0.200000003)
654
o41.CFrame = CFrame.new(18.950964, 1.12816894, 15.3854284, -1, 4.36557457e-008, -4.37113812e-008, -4.37113812e-008, 1.9122997e-015, 1, 4.36557457e-008, 1, -4.65359901e-018)
655
o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
656
o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
657
o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
658
o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
659
o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
660
o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
661
o41.Color = Color3.new(0.105882, 0.164706, 0.207843)
662
o42.Parent = o41
663
o42.Texture = "http://www.roblox.com/asset/?id=47760372"
664
o42.Face = Enum.NormalId.Top
665
o43.Parent = o41
666
o43.Scale = Vector3.new(0.49999997, 1, 0.49999997)
667
o44.Parent = o1
668
o44.Material = Enum.Material.SmoothPlastic
669
o44.BrickColor = BrickColor.new("Black")
670
o44.Position = Vector3.new(18.950964, 0.961513996, 15.352108)
671
o44.Rotation = Vector3.new(-90, -2.50447761e-006, -180)
672
o44.Anchored = true
673
o44.FormFactor = Enum.FormFactor.Custom
674
o44.Size = Vector3.new(0.200000003, 0.416666627, 0.200000003)
675
o44.CFrame = CFrame.new(18.950964, 0.961513996, 15.352108, -1, 4.36557457e-008, -4.37113812e-008, -4.37113812e-008, 1.9122997e-015, 1, 4.36557457e-008, 1, -4.65359901e-018)
676
o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
677
o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
678
o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
679
o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
680
o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
681
o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
682
o44.Color = Color3.new(0.105882, 0.164706, 0.207843)
683
o45.Parent = o44
684
o45.Scale = Vector3.new(0.666666687, 1, 0.666666687)
685
o46.Name = "Mag"
686
o46.Parent = o1
687
o46.Material = Enum.Material.SmoothPlastic
688
o46.BrickColor = BrickColor.new("Black")
689
o46.Position = Vector3.new(18.950964, 0.129971996, 14.3866644)
690
o46.Rotation = Vector3.new(101, 90, 0)
691
o46.Anchored = true
692
o46.FormFactor = Enum.FormFactor.Custom
693
o46.Size = Vector3.new(0.200000003, 0.333333343, 0.200000003)
694
o46.CFrame = CFrame.new(18.950964, 0.129971996, 14.3866644, -2.79885857e-008, -5.49657244e-008, 1, 0.981627166, -0.190809026, 1.69563066e-008, 0.190809026, 0.981627107, 5.93718141e-008)
695
o46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
696
o46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
697
o46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
698
o46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
699
o46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
700
o46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
701
o46.Color = Color3.new(0.105882, 0.164706, 0.207843)
702
o47.Parent = o46
703
o47.Scale = Vector3.new(0.027777778, 1, 0.666666687)
704
o48.Parent = o1
705
o48.Material = Enum.Material.SmoothPlastic
706
o48.BrickColor = BrickColor.new("Black")
707
o48.Position = Vector3.new(18.950964, 0.161533996, 14.3493176)
708
o48.Rotation = Vector3.new(0.019784553, -6.66929267e-009, 180)
709
o48.Anchored = true
710
o48.FormFactor = Enum.FormFactor.Custom
711
o48.Size = Vector3.new(0.200000003, 0.200000003, 0.266666681)
712
o48.CFrame = CFrame.new(18.950964, 0.161533996, 14.3493176, -1, -8.74227979e-008, -1.16401111e-010, 8.74227766e-008, -0.99999994, -0.000345305598, 0, -0.000345305569, 0.99999994)
713
o48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
714
o48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
715
o48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
716
o48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
717
o48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
718
o48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
719
o48.Color = Color3.new(0.105882, 0.164706, 0.207843)
720
o49.Parent = o48
721
o49.Scale = Vector3.new(0.694444478, 0.222222224, 1)
722
o49.MeshType = Enum.MeshType.Wedge
723
o50.Parent = o1
724
o50.Material = Enum.Material.SmoothPlastic
725
o50.BrickColor = BrickColor.new("Really black")
726
o50.Position = Vector3.new(18.950964, 0.155975997, 14.3354216)
727
o50.Rotation = Vector3.new(3.08320072e-016, 0, -180)
728
o50.Anchored = true
729
o50.FormFactor = Enum.FormFactor.Custom
730
o50.Size = Vector3.new(0.200000003, 0.200000003, 0.438888878)
731
o50.CFrame = CFrame.new(18.950964, 0.155975997, 14.3354216, -1, 1.0960446e-021, 0, 1.0960446e-021, -1, -5.38120031e-018, 0, 5.38120031e-018, 1)
732
o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
733
o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
734
o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
735
o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
736
o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
737
o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
738
o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
739
o51.Parent = o50
740
o51.Scale = Vector3.new(0.666666687, 0.333333343, 1)
741
o51.MeshType = Enum.MeshType.Wedge
742
o52.Parent = o1
743
o52.Material = Enum.Material.SmoothPlastic
744
o52.BrickColor = BrickColor.new("Black")
745
o52.Position = Vector3.new(18.950964, 0.239300996, 14.1882057)
746
o52.Rotation = Vector3.new(105, 90, 0)
747
o52.Anchored = true
748
o52.FormFactor = Enum.FormFactor.Custom
749
o52.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
750
o52.CFrame = CFrame.new(18.950964, 0.239300996, 14.1882057, -1.07331601e-008, -6.40018527e-008, 1, 0.965925813, -0.258819044, -6.21114538e-009, 0.258819073, 0.965925813, 6.46105036e-008)
751
o52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
752
o52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
753
o52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
754
o52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
755
o52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
756
o52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
757
o52.Color = Color3.new(0.105882, 0.164706, 0.207843)
758
o53.Parent = o52
759
o53.Scale = Vector3.new(0.944444478, 0.111111112, 0.611111104)
760
o54.Parent = o1
761
o54.Material = Enum.Material.SmoothPlastic
762
o54.BrickColor = BrickColor.new("Really black")
763
o54.Position = Vector3.new(18.950964, 0.225419, 14.3520937)
764
o54.Rotation = Vector3.new(-3.25256337e-007, 90, 0)
765
o54.Anchored = true
766
o54.FormFactor = Enum.FormFactor.Custom
767
o54.Size = Vector3.new(0.26111111, 0.200000003, 0.200000003)
768
o54.CFrame = CFrame.new(18.950964, 0.225419, 14.3520937, 8.94069672e-008, -6.24762481e-015, 1, -5.6767937e-009, 1, 1.42108539e-014, -1, -5.6767937e-009, 8.94069672e-008)
769
o54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
770
o54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
771
o54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
772
o54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
773
o54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
774
o54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
775
o54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
776
o55.Parent = o54
777
o55.Scale = Vector3.new(1, 0.416666687, 0.694444478)
778
o56.Parent = o1
779
o56.Material = Enum.Material.SmoothPlastic
780
o56.BrickColor = BrickColor.new("Really black")
781
o56.Position = Vector3.new(18.950964, 0.197641, 14.2215319)
782
o56.Rotation = Vector3.new(3.08320072e-016, 90, 0)
783
o56.Anchored = true
784
o56.FormFactor = Enum.FormFactor.Custom
785
o56.Size = Vector3.new(0.211111099, 0.200000003, 0.200000003)
786
o56.CFrame = CFrame.new(18.950964, 0.197641, 14.2215319, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
787
o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
788
o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
789
o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
790
o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
791
o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
792
o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
793
o56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
794
o57.Parent = o56
795
o57.Scale = Vector3.new(1, 0.0833333358, 0.666666687)
796
o58.Parent = o1
797
o58.Material = Enum.Material.SmoothPlastic
798
o58.BrickColor = BrickColor.new("Really black")
799
o58.Position = Vector3.new(18.950964, 0.258204013, 14.3493176)
800
o58.Rotation = Vector3.new(-90, -2.50447761e-006, -90)
801
o58.Anchored = true
802
o58.FormFactor = Enum.FormFactor.Custom
803
o58.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
804
o58.CFrame = CFrame.new(18.950964, 0.258204013, 14.3493176, -8.74279067e-008, 1, -4.37113812e-008, -3.83195418e-015, 4.37113812e-008, 1, 1, 8.74279067e-008, -4.65359901e-018)
805
o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
806
o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
807
o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
808
o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
809
o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
810
o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
811
o58.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
812
o59.Parent = o58
813
o59.Scale = Vector3.new(0.49999997, 0.722222269, 0.472222239)
814
o60.Parent = o1
815
o60.Material = Enum.Material.SmoothPlastic
816
o60.BrickColor = BrickColor.new("Really black")
817
o60.Position = Vector3.new(18.950964, 0.244874001, 14.1993141)
818
o60.Rotation = Vector3.new(0.019784553, -6.66929267e-009, 180)
819
o60.Anchored = true
820
o60.FormFactor = Enum.FormFactor.Custom
821
o60.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
822
o60.CFrame = CFrame.new(18.950964, 0.244874001, 14.1993141, -1, -8.74227979e-008, -1.16401111e-010, 8.74227766e-008, -0.99999994, -0.000345305598, 0, -0.000345305569, 0.99999994)
823
o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
824
o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
825
o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
826
o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
827
o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
828
o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
829
o60.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
830
o61.Parent = o60
831
o61.Scale = Vector3.new(0.694444478, 0.222222224, 0.222222224)
832
o61.MeshType = Enum.MeshType.Wedge
833
o62.Parent = o1
834
o62.Material = Enum.Material.SmoothPlastic
835
o62.BrickColor = BrickColor.new("Black")
836
o62.Position = Vector3.new(18.993742, 1.19095695, 15.1076584)
837
o62.Rotation = Vector3.new(90, 44.9999962, -90)
838
o62.Anchored = true
839
o62.FormFactor = Enum.FormFactor.Custom
840
o62.Size = Vector3.new(1.58333337, 0.200000003, 0.200000003)
841
o62.CFrame = CFrame.new(18.993742, 1.19095695, 15.1076584, 0, 0.707106709, 0.707106709, 5.38120031e-018, 0.707106769, -0.707106769, -1, 9.59801127e-011, -2.04281037e-011)
842
o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
843
o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
844
o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
845
o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
846
o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
847
o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
848
o62.Color = Color3.new(0.105882, 0.164706, 0.207843)
849
o63.Parent = o62
850
o63.Scale = Vector3.new(1, 0.194444433, 0.222222224)
851
o64.Parent = o1
852
o64.Material = Enum.Material.SmoothPlastic
853
o64.Position = Vector3.new(18.950964, 0.867092013, 15.1298876)
854
o64.Rotation = Vector3.new(180, 2.50796006e-006, 8.65142192e-006)
855
o64.Anchored = true
856
o64.FormFactor = Enum.FormFactor.Custom
857
o64.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
858
o64.CFrame = CFrame.new(18.950964, 0.867092013, 15.1298876, 1, -1.50995803e-007, 4.3772161e-008, -1.50995803e-007, -1, -6.59664855e-015, 4.3772161e-008, 3.92853881e-018, -1)
859
o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
860
o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
861
o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
862
o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
863
o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
864
o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
865
o65.Parent = o64
866
o65.Scale = Vector3.new(0.611111104, 0.333333343, 0.138888881)
867
o65.MeshType = Enum.MeshType.Wedge
868
o66.Parent = o1
869
o66.Material = Enum.Material.SmoothPlastic
870
o66.Position = Vector3.new(18.950964, 0.83930999, 15.1048679)
871
o66.Rotation = Vector3.new(89.9999771, 90, 0)
872
o66.Anchored = true
873
o66.FormFactor = Enum.FormFactor.Custom
874
o66.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
875
o66.CFrame = CFrame.new(18.950964, 0.83930999, 15.1048679, -8.74231674e-008, 2.50292942e-008, 1, 1, 4.33125763e-007, 8.74231461e-008, -4.33125791e-007, 1, -2.50292942e-008)
876
o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
877
o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
878
o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
879
o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
880
o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
881
o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
882
o67.Parent = o66
883
o67.Scale = Vector3.new(0.944444478, 0.111111112, 0.611111104)
884
o68.Parent = o1
885
o68.Material = Enum.Material.SmoothPlastic
886
o68.BrickColor = BrickColor.new("Fossil")
887
o68.Position = Vector3.new(18.950964, 0.716949999, 15.0719404)
888
o68.Rotation = Vector3.new(-45, 90, 0)
889
o68.Anchored = true
890
o68.FormFactor = Enum.FormFactor.Custom
891
o68.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
892
o68.CFrame = CFrame.new(18.950964, 0.716949999, 15.0719404, -1.36843425e-010, -2.04281037e-011, 1, -0.707106769, 0.707106769, -1.0960446e-021, -0.707106709, -0.707106709, 0)
893
o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
894
o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
895
o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
896
o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
897
o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
898
o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
899
o68.Color = Color3.new(0.623529, 0.631373, 0.67451)
900
o69.Parent = o68
901
o69.Scale = Vector3.new(0.527777731, 0.111111112, 0.611111104)
902
o70.Parent = o1
903
o70.Material = Enum.Material.SmoothPlastic
904
o70.BrickColor = BrickColor.new("Black")
905
o70.Position = Vector3.new(18.950964, 0.875427008, 15.0743237)
906
o70.Rotation = Vector3.new(3.08320072e-016, 0, -180)
907
o70.Anchored = true
908
o70.FormFactor = Enum.FormFactor.Custom
909
o70.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
910
o70.CFrame = CFrame.new(18.950964, 0.875427008, 15.0743237, -1, 1.0960446e-021, 0, 1.0960446e-021, -1, -5.38120031e-018, 0, 5.38120031e-018, 1)
911
o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
912
o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
913
o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
914
o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
915
o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
916
o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
917
o70.Color = Color3.new(0.105882, 0.164706, 0.207843)
918
o71.Parent = o70
919
o71.Scale = Vector3.new(0.611111104, 0.249999985, 0.194444433)
920
o71.MeshType = Enum.MeshType.Wedge
921
o72.Parent = o1
922
o72.Material = Enum.Material.SmoothPlastic
923
o72.BrickColor = BrickColor.new("Black")
924
o72.Position = Vector3.new(18.9315281, 1.09817195, 15.0048761)
925
o72.Rotation = Vector3.new(3.08320072e-016, 90, 0)
926
o72.Anchored = true
927
o72.FormFactor = Enum.FormFactor.Custom
928
o72.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
929
o72.CFrame = CFrame.new(18.9315281, 1.09817195, 15.0048761, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
930
o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
931
o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
932
o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
933
o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
934
o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
935
o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
936
o72.Color = Color3.new(0.105882, 0.164706, 0.207843)
937
o73.Parent = o72
938
o73.Scale = Vector3.new(1, 0.277777761, 0.527777731)
939
o74.Parent = o1
940
o74.Material = Enum.Material.SmoothPlastic
941
o74.BrickColor = BrickColor.new("Black")
942
o74.Position = Vector3.new(18.9870701, 1.13095105, 15.0048761)
943
o74.Rotation = Vector3.new(3.08320072e-016, 90, 0)
944
o74.Anchored = true
945
o74.FormFactor = Enum.FormFactor.Custom
946
o74.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
947
o74.CFrame = CFrame.new(18.9870701, 1.13095105, 15.0048761, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
948
o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
949
o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
950
o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
951
o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
952
o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
953
o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
954
o74.Color = Color3.new(0.105882, 0.164706, 0.207843)
955
o75.Parent = o74
956
o75.Scale = Vector3.new(1, 0.583333313, 0.361111134)
957
o76.Parent = o1
958
o76.Material = Enum.Material.SmoothPlastic
959
o76.BrickColor = BrickColor.new("Black")
960
o76.Position = Vector3.new(18.970396, 1.17595196, 15.0048761)
961
o76.Rotation = Vector3.new(3.08320072e-016, 90, 0)
962
o76.Anchored = true
963
o76.FormFactor = Enum.FormFactor.Custom
964
o76.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
965
o76.CFrame = CFrame.new(18.970396, 1.17595196, 15.0048761, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
966
o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
967
o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
968
o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
969
o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
970
o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
971
o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
972
o76.Color = Color3.new(0.105882, 0.164706, 0.207843)
973
o77.Parent = o76
974
o77.Scale = Vector3.new(1, 0.444444448, 0.216666669)
975
o78.Parent = o1
976
o78.Material = Enum.Material.SmoothPlastic
977
o78.BrickColor = BrickColor.new("Black")
978
o78.Position = Vector3.new(18.950964, 0.39764601, 14.6493216)
979
o78.Rotation = Vector3.new(180, 2.50796006e-006, 5.00895612e-006)
980
o78.Anchored = true
981
o78.FormFactor = Enum.FormFactor.Custom
982
o78.Size = Vector3.new(0.200000003, 0.550000012, 0.200000003)
983
o78.CFrame = CFrame.new(18.950964, 0.39764601, 14.6493216, 1, -8.74227766e-008, 4.3772161e-008, -8.74227766e-008, -1, -3.8177829e-015, 4.3772161e-008, 6.83386182e-018, -1)
984
o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
985
o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
986
o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
987
o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
988
o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
989
o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
990
o78.Color = Color3.new(0.105882, 0.164706, 0.207843)
991
o79.Parent = o78
992
o79.Scale = Vector3.new(0.666666687, 1, 0.944444478)
993
o79.MeshType = Enum.MeshType.Wedge
994
o80.Parent = o1
995
o80.Material = Enum.Material.SmoothPlastic
996
o80.BrickColor = BrickColor.new("Black")
997
o80.Position = Vector3.new(18.8859501, 0.96707201, 15.0021019)
998
o80.Rotation = Vector3.new(-90, -2.50447761e-006, -90.0000076)
999
o80.Anchored = true
1000
o80.FormFactor = Enum.FormFactor.Custom
1001
o80.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1002
o80.CFrame = CFrame.new(18.8859501, 0.96707201, 15.0021019, -1.51107088e-007, 1, -4.37113812e-008, -6.60488848e-015, 4.37113812e-008, 1, 1, 1.51107088e-007, -4.65359901e-018)
1003
o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1004
o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1005
o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1006
o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1007
o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1008
o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1009
o80.Color = Color3.new(0.105882, 0.164706, 0.207843)
1010
o81.Parent = o80
1011
o81.Scale = Vector3.new(0.249999985, 0.027777778, 0.249999985)
1012
o82.Parent = o1
1013
o82.Material = Enum.Material.SmoothPlastic
1014
o82.BrickColor = BrickColor.new("Dark stone grey")
1015
o82.Position = Vector3.new(18.950964, 0.858749986, 14.8770924)
1016
o82.Rotation = Vector3.new(-180, -2.50796256e-006, 5.00895703e-006)
1017
o82.Anchored = true
1018
o82.FormFactor = Enum.FormFactor.Custom
1019
o82.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1020
o82.CFrame = CFrame.new(18.950964, 0.858749986, 14.8770924, 0.99999994, -8.74227837e-008, -4.37722036e-008, -8.74227837e-008, -0.99999994, 7.17606313e-018, -4.36557599e-008, 1.89421216e-015, -0.999999762)
1021
o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1022
o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1023
o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1024
o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1025
o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1026
o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1027
o82.Color = Color3.new(0.388235, 0.372549, 0.384314)
1028
o83.Parent = o82
1029
o83.Scale = Vector3.new(0.472222239, 0.416666687, 0.222222224)
1030
o83.MeshType = Enum.MeshType.Wedge
1031
o84.Parent = o1
1032
o84.Material = Enum.Material.SmoothPlastic
1033
o84.BrickColor = BrickColor.new("Black")
1034
o84.Position = Vector3.new(18.950964, 1.05040395, 14.9382162)
1035
o84.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1036
o84.Anchored = true
1037
o84.FormFactor = Enum.FormFactor.Custom
1038
o84.Size = Vector3.new(1.24444449, 0.200000003, 0.200000003)
1039
o84.CFrame = CFrame.new(18.950964, 1.05040395, 14.9382162, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1040
o84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1041
o84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1042
o84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1043
o84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1044
o84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1045
o84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1046
o84.Color = Color3.new(0.105882, 0.164706, 0.207843)
1047
o85.Parent = o84
1048
o85.Scale = Vector3.new(1, 0.222222224, 0.722222269)
1049
o86.Parent = o1
1050
o86.Material = Enum.Material.SmoothPlastic
1051
o86.BrickColor = BrickColor.new("Black")
1052
o86.Position = Vector3.new(18.950964, 0.469879985, 14.2215319)
1053
o86.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
1054
o86.Anchored = true
1055
o86.FormFactor = Enum.FormFactor.Custom
1056
o86.Size = Vector3.new(0.200000003, 0.527777791, 0.211111099)
1057
o86.CFrame = CFrame.new(18.950964, 0.469879985, 14.2215319, 1, -1.0960446e-021, -4.3772161e-008, -7.78546341e-022, 1, -3.58803156e-018, 4.3772161e-008, -5.38120031e-018, 1)
1058
o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1059
o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1060
o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1061
o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1062
o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1063
o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1064
o86.Color = Color3.new(0.105882, 0.164706, 0.207843)
1065
o87.Parent = o86
1066
o87.Scale = Vector3.new(0.666666687, 1, 1)
1067
o87.MeshType = Enum.MeshType.Wedge
1068
o88.Parent = o1
1069
o88.Material = Enum.Material.SmoothPlastic
1070
o88.BrickColor = BrickColor.new("Dark stone grey")
1071
o88.Position = Vector3.new(18.950964, 0.736557007, 14.8798761)
1072
o88.Rotation = Vector3.new(180, -2.50129006e-006, 180)
1073
o88.Anchored = true
1074
o88.FormFactor = Enum.FormFactor.Custom
1075
o88.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1076
o88.CFrame = CFrame.new(18.950964, 0.736557007, 14.8798761, -1, -1.0960446e-021, -4.36557457e-008, 1.41269847e-021, 1, -1.6144448e-018, 4.36557457e-008, -5.38120031e-018, -1)
1077
o88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1078
o88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1079
o88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1080
o88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1081
o88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1082
o88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1083
o88.Color = Color3.new(0.388235, 0.372549, 0.384314)
1084
o89.Parent = o88
1085
o89.Scale = Vector3.new(0.472222239, 0.416666687, 0.249999985)
1086
o89.MeshType = Enum.MeshType.Wedge
1087
o90.Parent = o1
1088
o90.Material = Enum.Material.SmoothPlastic
1089
o90.BrickColor = BrickColor.new("Smoky grey")
1090
o90.Position = Vector3.new(18.950964, 0.683766007, 14.9020796)
1091
o90.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1092
o90.Anchored = true
1093
o90.FormFactor = Enum.FormFactor.Custom
1094
o90.Size = Vector3.new(0.283333331, 0.200000003, 0.200000003)
1095
o90.CFrame = CFrame.new(18.950964, 0.683766007, 14.9020796, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1096
o90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1097
o90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1098
o90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1099
o90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1100
o90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1101
o90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1102
o90.Color = Color3.new(0.356863, 0.364706, 0.411765)
1103
o91.Parent = o90
1104
o91.Scale = Vector3.new(1, 0.111111112, 0.611111104)
1105
o92.Parent = o1
1106
o92.Material = Enum.Material.SmoothPlastic
1107
o92.BrickColor = BrickColor.new("Black")
1108
o92.Position = Vector3.new(18.950964, 0.992074013, 14.9382162)
1109
o92.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1110
o92.Anchored = true
1111
o92.FormFactor = Enum.FormFactor.Custom
1112
o92.Size = Vector3.new(1.24444449, 0.200000003, 0.200000003)
1113
o92.CFrame = CFrame.new(18.950964, 0.992074013, 14.9382162, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1114
o92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1115
o92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1116
o92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1117
o92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1118
o92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1119
o92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1120
o92.Color = Color3.new(0.105882, 0.164706, 0.207843)
1121
o93.Parent = o92
1122
o93.Scale = Vector3.new(1, 0.361111134, 0.666666687)
1123
o94.Parent = o1
1124
o94.Material = Enum.Material.SmoothPlastic
1125
o94.BrickColor = BrickColor.new("Black")
1126
o94.Position = Vector3.new(18.950964, 0.708733976, 14.827096)
1127
o94.Rotation = Vector3.new(-180, 0.0927856117, 180)
1128
o94.Anchored = true
1129
o94.FormFactor = Enum.FormFactor.Custom
1130
o94.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1131
o94.CFrame = CFrame.new(18.950964, 0.708733976, 14.827096, -0.999998689, -1.0960446e-021, 0.00161941373, -1.1745207e-017, 1, 4.66291637e-018, -0.00161941373, -5.38120031e-018, -0.999998689)
1132
o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1133
o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1134
o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1135
o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1136
o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1137
o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1138
o94.Color = Color3.new(0.105882, 0.164706, 0.207843)
1139
o95.Parent = o94
1140
o95.Scale = Vector3.new(0.611111104, 0.138888881, 0.249999985)
1141
o95.MeshType = Enum.MeshType.Wedge
1142
o96.Parent = o1
1143
o96.Material = Enum.Material.SmoothPlastic
1144
o96.BrickColor = BrickColor.new("Black")
1145
o96.Position = Vector3.new(18.950964, 0.797657013, 14.8104324)
1146
o96.Rotation = Vector3.new(180, -2.50129006e-006, 180)
1147
o96.Anchored = true
1148
o96.FormFactor = Enum.FormFactor.Custom
1149
o96.Size = Vector3.new(0.200000003, 0.205555543, 0.200000003)
1150
o96.CFrame = CFrame.new(18.950964, 0.797657013, 14.8104324, -1, -1.0960446e-021, -4.36557457e-008, 1.41269847e-021, 1, -1.6144448e-018, 4.36557457e-008, -5.38120031e-018, -1)
1151
o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1152
o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1153
o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1154
o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1155
o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1156
o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1157
o96.Color = Color3.new(0.105882, 0.164706, 0.207843)
1158
o97.Parent = o96
1159
o97.Scale = Vector3.new(0.472222239, 1, 0.444444448)
1160
o98.Parent = o1
1161
o98.Material = Enum.Material.SmoothPlastic
1162
o98.BrickColor = BrickColor.new("Black")
1163
o98.Position = Vector3.new(18.950964, 0.875427008, 14.8298864)
1164
o98.Rotation = Vector3.new(-180, 0, -6.27987314e-020)
1165
o98.Anchored = true
1166
o98.FormFactor = Enum.FormFactor.Custom
1167
o98.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1168
o98.CFrame = CFrame.new(18.950964, 0.875427008, 14.8298864, 1, 1.0960446e-021, 0, -1.0960446e-021, -1, 5.38120031e-018, 0, 5.38120031e-018, -1)
1169
o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1170
o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1171
o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1172
o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1173
o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1174
o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1175
o98.Color = Color3.new(0.105882, 0.164706, 0.207843)
1176
o99.Parent = o98
1177
o99.Scale = Vector3.new(0.666666687, 0.249999985, 0.194444433)
1178
o99.MeshType = Enum.MeshType.Wedge
1179
o100.Parent = o1
1180
o100.Material = Enum.Material.SmoothPlastic
1181
o100.BrickColor = BrickColor.new("Black")
1182
o100.Position = Vector3.new(18.988184, 0.986526012, 14.8076496)
1183
o100.Rotation = Vector3.new(3.00000024, 90, 0)
1184
o100.Anchored = true
1185
o100.FormFactor = Enum.FormFactor.Custom
1186
o100.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1187
o100.CFrame = CFrame.new(18.988184, 0.986526012, 14.8076496, 2.57358579e-011, -6.64535094e-012, 1, 0.0523359589, 0.99862951, -1.0960446e-021, -0.99862951, 0.0523359627, 0)
1188
o100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1189
o100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1190
o100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1191
o100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1192
o100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1193
o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1194
o100.Color = Color3.new(0.105882, 0.164706, 0.207843)
1195
o101.Parent = o100
1196
o101.Scale = Vector3.new(0.694444478, 0.249999985, 0.361111134)
1197
o102.Parent = o1
1198
o102.Material = Enum.Material.SmoothPlastic
1199
o102.BrickColor = BrickColor.new("Black")
1200
o102.Position = Vector3.new(18.950964, 0.875427008, 14.8020916)
1201
o102.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1202
o102.Anchored = true
1203
o102.FormFactor = Enum.FormFactor.Custom
1204
o102.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1205
o102.CFrame = CFrame.new(18.950964, 0.875427008, 14.8020916, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1206
o102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1207
o102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1208
o102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1209
o102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1210
o102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1211
o102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1212
o102.Color = Color3.new(0.105882, 0.164706, 0.207843)
1213
o103.Parent = o102
1214
o103.Scale = Vector3.new(0.0833333358, 0.249999985, 0.666666687)
1215
o104.Parent = o1
1216
o104.Material = Enum.Material.SmoothPlastic
1217
o104.BrickColor = BrickColor.new("Really black")
1218
o104.Position = Vector3.new(18.950964, 0.536549985, 14.6048756)
1219
o104.Rotation = Vector3.new(180, 2.50796006e-006, 5.00895612e-006)
1220
o104.Anchored = true
1221
o104.FormFactor = Enum.FormFactor.Custom
1222
o104.Size = Vector3.new(0.200000003, 0.794444382, 0.244444445)
1223
o104.CFrame = CFrame.new(18.950964, 0.536549985, 14.6048756, 1, -8.74227766e-008, 4.3772161e-008, -8.74227766e-008, -1, -3.8177829e-015, 4.3772161e-008, 6.83386182e-018, -1)
1224
o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1225
o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1226
o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1227
o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1228
o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1229
o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1230
o104.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1231
o105.Parent = o104
1232
o105.Scale = Vector3.new(0.694444478, 1, 1)
1233
o105.MeshType = Enum.MeshType.Wedge
1234
o106.Name = "Mag"
1235
o106.Parent = o1
1236
o106.Material = Enum.Material.SmoothPlastic
1237
o106.BrickColor = BrickColor.new("Really black")
1238
o106.Position = Vector3.new(18.950964, 0.56080699, 14.4704056)
1239
o106.Rotation = Vector3.new(101, 90, 0)
1240
o106.Anchored = true
1241
o106.FormFactor = Enum.FormFactor.Custom
1242
o106.Size = Vector3.new(0.872222185, 0.322222203, 0.200000003)
1243
o106.CFrame = CFrame.new(18.950964, 0.56080699, 14.4704056, -2.79885857e-008, -5.65955389e-008, 1, 0.981627166, -0.190809026, 1.66447549e-008, 0.190809026, 0.981627107, 6.10016286e-008)
1244
o106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1245
o106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1246
o106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1247
o106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1248
o106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1249
o106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1250
o106.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1251
o107.Parent = o106
1252
o107.Scale = Vector3.new(1, 1, 0.611111104)
1253
o108.Parent = o1
1254
o108.Material = Enum.Material.SmoothPlastic
1255
o108.BrickColor = BrickColor.new("Smoky grey")
1256
o108.Position = Vector3.new(18.950964, 0.731004, 14.7326536)
1257
o108.Rotation = Vector3.new(-90, 4.32571142e-006, -90.0000076)
1258
o108.Anchored = true
1259
o108.FormFactor = Enum.FormFactor.Custom
1260
o108.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1261
o108.CFrame = CFrame.new(18.950964, 0.731004, 14.7326536, -1.51107088e-007, 1, 7.54979084e-008, 7.25342942e-015, -7.54979084e-008, 1, 1, 1.51107088e-007, 4.14945855e-015)
1262
o108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1263
o108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1264
o108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1265
o108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1266
o108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1267
o108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1268
o108.Color = Color3.new(0.356863, 0.364706, 0.411765)
1269
o109.Parent = o108
1270
o109.Scale = Vector3.new(0.416666687, 0.694444478, 0.416666687)
1271
o110.Parent = o1
1272
o110.Material = Enum.Material.SmoothPlastic
1273
o110.BrickColor = BrickColor.new("Black")
1274
o110.Position = Vector3.new(18.950964, 0.544876993, 14.4409838)
1275
o110.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1276
o110.Anchored = true
1277
o110.FormFactor = Enum.FormFactor.Custom
1278
o110.Size = Vector3.new(0.227777779, 0.711111128, 0.200000003)
1279
o110.CFrame = CFrame.new(18.950964, 0.544876993, 14.4409838, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1280
o110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1281
o110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1282
o110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1283
o110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1284
o110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1285
o110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1286
o110.Color = Color3.new(0.105882, 0.164706, 0.207843)
1287
o111.Parent = o110
1288
o111.Scale = Vector3.new(1, 1, 0.666666687)
1289
o112.Parent = o1
1290
o112.Material = Enum.Material.SmoothPlastic
1291
o112.BrickColor = BrickColor.new("Black")
1292
o112.Position = Vector3.new(18.950964, 0.775434017, 14.7993164)
1293
o112.Rotation = Vector3.new(180, -2.50129006e-006, 180)
1294
o112.Anchored = true
1295
o112.FormFactor = Enum.FormFactor.Custom
1296
o112.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1297
o112.CFrame = CFrame.new(18.950964, 0.775434017, 14.7993164, -1, -1.0960446e-021, -4.36557457e-008, 1.41269847e-021, 1, -1.6144448e-018, 4.36557457e-008, -5.38120031e-018, -1)
1298
o112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1299
o112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1300
o112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1301
o112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1302
o112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1303
o112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1304
o112.Color = Color3.new(0.105882, 0.164706, 0.207843)
1305
o113.Parent = o112
1306
o113.Scale = Vector3.new(0.666666687, 0.249999985, 0.111111112)
1307
o113.MeshType = Enum.MeshType.Wedge
1308
o114.Parent = o1
1309
o114.Material = Enum.Material.SmoothPlastic
1310
o114.BrickColor = BrickColor.new("Black")
1311
o114.Position = Vector3.new(18.950964, 0.730996013, 14.7298584)
1312
o114.Rotation = Vector3.new(180, 0, -90.0000076)
1313
o114.Anchored = true
1314
o114.FormFactor = Enum.FormFactor.Custom
1315
o114.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1316
o114.CFrame = CFrame.new(18.950964, 0.730996013, 14.7298584, -1.94707198e-007, 1, 0, 1, 1.94707169e-007, -4.37113883e-008, -4.37113883e-008, 0, -1)
1317
o114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1318
o114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1319
o114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1320
o114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1321
o114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1322
o114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1323
o114.Color = Color3.new(0.105882, 0.164706, 0.207843)
1324
o115.Parent = o114
1325
o115.Scale = Vector3.new(0.833333373, 0.666666687, 0.805555522)
1326
o116.Parent = o1
1327
o116.Material = Enum.Material.SmoothPlastic
1328
o116.BrickColor = BrickColor.new("Black")
1329
o116.Position = Vector3.new(18.950964, 0.928192973, 14.7298584)
1330
o116.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1331
o116.Anchored = true
1332
o116.FormFactor = Enum.FormFactor.Custom
1333
o116.Size = Vector3.new(0.827777743, 0.200000003, 0.200000003)
1334
o116.CFrame = CFrame.new(18.950964, 0.928192973, 14.7298584, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1335
o116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1336
o116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1337
o116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1338
o116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1339
o116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1340
o116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1341
o116.Color = Color3.new(0.105882, 0.164706, 0.207843)
1342
o117.Parent = o116
1343
o117.Scale = Vector3.new(1, 0.277777761, 0.666666687)
1344
o118.Parent = o1
1345
o118.Material = Enum.Material.SmoothPlastic
1346
o118.BrickColor = BrickColor.new("Black")
1347
o118.Position = Vector3.new(18.950964, 0.825424016, 14.7993164)
1348
o118.Rotation = Vector3.new(-180, 0, -6.27987314e-020)
1349
o118.Anchored = true
1350
o118.FormFactor = Enum.FormFactor.Custom
1351
o118.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1352
o118.CFrame = CFrame.new(18.950964, 0.825424016, 14.7993164, 1, 1.0960446e-021, 0, -1.0960446e-021, -1, 5.38120031e-018, 0, 5.38120031e-018, -1)
1353
o118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1354
o118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1355
o118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1356
o118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1357
o118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1358
o118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1359
o118.Color = Color3.new(0.105882, 0.164706, 0.207843)
1360
o119.Parent = o118
1361
o119.Scale = Vector3.new(0.666666687, 0.249999985, 0.111111112)
1362
o119.MeshType = Enum.MeshType.Wedge
1363
o120.Parent = o1
1364
o120.Material = Enum.Material.SmoothPlastic
1365
o120.BrickColor = BrickColor.new("Black")
1366
o120.Position = Vector3.new(18.950964, 0.600430012, 14.4798584)
1367
o120.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1368
o120.Anchored = true
1369
o120.FormFactor = Enum.FormFactor.Custom
1370
o120.Size = Vector3.new(0.200000003, 0.666666687, 0.200000003)
1371
o120.CFrame = CFrame.new(18.950964, 0.600430012, 14.4798584, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1372
o120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1373
o120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1374
o120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1375
o120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1376
o120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1377
o120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1378
o120.Color = Color3.new(0.105882, 0.164706, 0.207843)
1379
o121.Parent = o120
1380
o121.Scale = Vector3.new(0.027777778, 1, 0.694444478)
1381
o122.Parent = o1
1382
o122.Material = Enum.Material.SmoothPlastic
1383
o122.BrickColor = BrickColor.new("Black")
1384
o122.Position = Vector3.new(18.950964, 0.980957985, 14.5104237)
1385
o122.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
1386
o122.Anchored = true
1387
o122.FormFactor = Enum.FormFactor.Custom
1388
o122.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1389
o122.CFrame = CFrame.new(18.950964, 0.980957985, 14.5104237, 1, -1.0960446e-021, -4.3772161e-008, -7.78546341e-022, 1, -3.58803156e-018, 4.3772161e-008, -5.38120031e-018, 1)
1390
o122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1391
o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1392
o122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1393
o122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1394
o122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1395
o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1396
o122.Color = Color3.new(0.105882, 0.164706, 0.207843)
1397
o123.Parent = o122
1398
o123.Scale = Vector3.new(0.694444478, 0.0833333358, 0.333333343)
1399
o123.MeshType = Enum.MeshType.Wedge
1400
o124.Parent = o1
1401
o124.Material = Enum.Material.SmoothPlastic
1402
o124.BrickColor = BrickColor.new("Black")
1403
o124.Position = Vector3.new(18.950964, 0.961513996, 14.6854324)
1404
o124.Rotation = Vector3.new(180, -2.50129006e-006, 180)
1405
o124.Anchored = true
1406
o124.FormFactor = Enum.FormFactor.Custom
1407
o124.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1408
o124.CFrame = CFrame.new(18.950964, 0.961513996, 14.6854324, -1, -1.0960446e-021, -4.36557457e-008, 1.41269847e-021, 1, -1.6144448e-018, 4.36557457e-008, -5.38120031e-018, -1)
1409
o124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1410
o124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1411
o124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1412
o124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1413
o124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1414
o124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1415
o124.Color = Color3.new(0.105882, 0.164706, 0.207843)
1416
o125.Parent = o124
1417
o125.Scale = Vector3.new(0.694444478, 0.277777761, 0.416666687)
1418
o125.MeshType = Enum.MeshType.Wedge
1419
o126.Parent = o1
1420
o126.Material = Enum.Material.SmoothPlastic
1421
o126.BrickColor = BrickColor.new("Really black")
1422
o126.Position = Vector3.new(18.950964, 0.803216994, 14.6715384)
1423
o126.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1424
o126.Anchored = true
1425
o126.FormFactor = Enum.FormFactor.Custom
1426
o126.Size = Vector3.new(0.244444445, 0.200000003, 0.200000003)
1427
o126.CFrame = CFrame.new(18.950964, 0.803216994, 14.6715384, 0, -1.0960446e-021, 1, 5.38120031e-018, 1, -1.0960446e-021, -1, -5.38120031e-018, 0)
1428
o126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1429
o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1430
o126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1431
o126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1432
o126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1433
o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1434
o126.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1435
o127.Parent = o126
1436
o127.Scale = Vector3.new(1, 0.972222209, 0.666666687)
1437
o128.Parent = o1
1438
o128.Material = Enum.Material.SmoothPlastic
1439
o128.BrickColor = BrickColor.new("Really black")
1440
o128.Position = Vector3.new(18.950964, 0.672379017, 14.6450357)
1441
o128.Rotation = Vector3.new(-30.0000038, 90, 0)
1442
o128.Anchored = true
1443
o128.FormFactor = Enum.FormFactor.Custom
1444
o128.Size = Vector3.new(0.205555543, 0.200000003, 0.200000003)
1445
o128.CFrame = CFrame.new(18.950964, 0.672379017, 14.6450357, 4.20376836e-008, -2.60188173e-008, 1, -0.50000006, 0.866025388, 4.35066809e-008, -0.866025388, -0.50000006, 2.33994797e-008)
1446
o128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1447
o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1448
o128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1449
o128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1450
o128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1451
o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1452
o128.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1453
o129.Parent = o128
1454
o129.Scale = Vector3.new(1, 0.722222269, 0.666666687)
1455
o130.Parent = o1
1456
o130.Material = Enum.Material.SmoothPlastic
1457
o130.BrickColor = BrickColor.new("Really black")
1458
o130.Position = Vector3.new(18.950964, 0.619874001, 14.3270836)
1459
o130.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
1460
o130.Anchored = true
1461
o130.FormFactor = Enum.FormFactor.Custom
1462
o130.Size = Vector3.new(0.200000003, 0.705555558, 0.300000012)
1463
o130.CFrame = CFrame.new(18.950964, 0.619874001, 14.3270836, 1, -1.0960446e-021, -4.3772161e-008, -7.78546341e-022, 1, -3.58803156e-018, 4.3772161e-008, -5.38120031e-018, 1)
1464
o130.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1465
o130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1466
o130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1467
o130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1468
o130.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1469
o130.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1470
o130.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1471
o131.Parent = o130
1472
o131.Scale = Vector3.new(0.694444478, 1, 1)
1473
o131.MeshType = Enum.MeshType.Wedge
1474
o132.Parent = o1
1475
o132.Material = Enum.Material.SmoothPlastic
1476
o132.BrickColor = BrickColor.new("Black")
1477
o132.Position = Vector3.new(18.950964, 1.15317094, 14.2876415)
1478
o132.Rotation = Vector3.new(30.0000019, 90, 0)
1479
o132.Anchored = true
1480
o132.FormFactor = Enum.FormFactor.Custom
1481
o132.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1482
o132.CFrame = CFrame.new(18.950964, 1.15317094, 14.2876415, 1.28167699e-010, -5.82076609e-011, 1, 0.5, 0.866025388, -1.0960446e-021, -0.866025388, 0.5, 0)
1483
o132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1484
o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1485
o132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1486
o132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1487
o132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1488
o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1489
o132.Color = Color3.new(0.105882, 0.164706, 0.207843)
1490
o133.Parent = o132
1491
o133.Scale = Vector3.new(0.388888866, 0.194444433, 0.416666687)
1492
o134.Parent = o1
1493
o134.Material = Enum.Material.SmoothPlastic
1494
o134.BrickColor = BrickColor.new("Black")
1495
o134.Position = Vector3.new(18.950964, 1.10315704, 14.3126564)
1496
o134.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1497
o134.Anchored = true
1498
o134.FormFactor = Enum.FormFactor.Custom
1499
o134.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1500
o134.CFrame = CFrame.new(18.950964, 1.10315704, 14.3126564, 0, -5.9604659e-008, 1, 5.38120031e-018, 1, 5.9604659e-008, -1, -5.38374141e-018, 0)
1501
o134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1502
o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1503
o134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1504
o134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1505
o134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1506
o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1507
o134.Color = Color3.new(0.105882, 0.164706, 0.207843)
1508
o135.Parent = o134
1509
o135.Scale = Vector3.new(0.027777778, 0.861111045, 0.416666687)
1510
o136.Parent = o1
1511
o136.Material = Enum.Material.SmoothPlastic
1512
o136.BrickColor = BrickColor.new("Black")
1513
o136.Position = Vector3.new(18.950964, 0.969842017, 14.2187424)
1514
o136.Rotation = Vector3.new(2.05579065e-016, -2.50796006e-006, 6.27987314e-020)
1515
o136.Anchored = true
1516
o136.FormFactor = Enum.FormFactor.Custom
1517
o136.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1518
o136.CFrame = CFrame.new(18.950964, 0.969842017, 14.2187424, 1, -1.0960446e-021, -4.3772161e-008, -7.78546341e-022, 1, -3.58803156e-018, 4.3772161e-008, -5.38120031e-018, 1)
1519
o136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1520
o136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1521
o136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1522
o136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1523
o136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1524
o136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1525
o136.Color = Color3.new(0.105882, 0.164706, 0.207843)
1526
o137.Parent = o136
1527
o137.Scale = Vector3.new(0.666666687, 0.249999985, 0.74999994)
1528
o137.MeshType = Enum.MeshType.Wedge
1529
o138.Parent = o1
1530
o138.Material = Enum.Material.SmoothPlastic
1531
o138.BrickColor = BrickColor.new("Black")
1532
o138.Position = Vector3.new(18.950964, 0.919857979, 14.2271004)
1533
o138.Rotation = Vector3.new(-0.600734293, 89.980217, -5.99351438e-007)
1534
o138.Anchored = true
1535
o138.FormFactor = Enum.FormFactor.Custom
1536
o138.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1537
o138.CFrame = CFrame.new(18.950964, 0.919857979, 14.2271004, 4.06289615e-008, 4.25005558e-016, 0.99999994, -6.70552254e-008, 0.999999881, 4.68723726e-010, -1.00000012, -9.68575407e-008, 4.47034694e-008)
1538
o138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1539
o138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1540
o138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1541
o138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1542
o138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1543
o138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1544
o138.Color = Color3.new(0.105882, 0.164706, 0.207843)
1545
o139.Parent = o138
1546
o139.Scale = Vector3.new(0.888888896, 0.249999985, 0.666666687)
1547
o140.Parent = o1
1548
o140.Material = Enum.Material.SmoothPlastic
1549
o140.BrickColor = BrickColor.new("Black")
1550
o140.Position = Vector3.new(18.950964, 1.17262495, 14.2539701)
1551
o140.Rotation = Vector3.new(30.0000038, 1.24663654e-006, -90)
1552
o140.Anchored = true
1553
o140.FormFactor = Enum.FormFactor.Custom
1554
o140.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1555
o140.CFrame = CFrame.new(18.950964, 1.17262495, 14.2539701, -4.959292e-008, 1, 2.17579128e-008, -0.866025388, -3.19989653e-008, -0.50000006, -0.50000006, -4.36557457e-008, 0.866025388)
1556
o140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1557
o140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1558
o140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1559
o140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1560
o140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1561
o140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1562
o140.Color = Color3.new(0.105882, 0.164706, 0.207843)
1563
o141.Parent = o140
1564
o141.Scale = Vector3.new(0.194444433, 0.416666687, 0.194444433)
1565
o142.Parent = o1
1566
o142.Material = Enum.Material.SmoothPlastic
1567
o142.BrickColor = BrickColor.new("Really black")
1568
o142.Position = Vector3.new(18.950964, 1.10038495, 14.3182096)
1569
o142.Rotation = Vector3.new(3.08320072e-016, 90, 0)
1570
o142.Anchored = true
1571
o142.FormFactor = Enum.FormFactor.Custom
1572
o142.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1573
o142.CFrame = CFrame.new(18.950964, 1.10038495, 14.3182096, 0, -2.98023295e-008, 1, 5.38120031e-018, 1, 2.98023295e-008, -1, -1.91260039e-018, 0)
1574
o142.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1575
o142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1576
o142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1577
o142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1578
o142.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1579
o142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1580
o142.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1581
o143.Parent = o142
1582
o143.Scale = Vector3.new(0.027777778, 0.722222269, 0.388888866)
1583
o144.Parent = o1
1584
o144.Material = Enum.Material.SmoothPlastic
1585
o144.BrickColor = BrickColor.new("Black")
1586
o144.Position = Vector3.new(18.950964, 0.986526012, 14.2826424)
1587
o144.Rotation = Vector3.new(3.08320072e-016, 0, 6.27987314e-020)
1588
o144.Anchored = true
1589
o144.FormFactor = Enum.FormFactor.Custom
1590
o144.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1591
o144.CFrame = CFrame.new(18.950964, 0.986526012, 14.2826424, 1, -1.0960446e-021, 0, -1.0960446e-021, 1, -5.38120031e-018, 0, -5.38120031e-018, 1)
1592
o144.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1593
o144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1594
o144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1595
o144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1596
o144.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1597
o144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1598
o144.Color = Color3.new(0.105882, 0.164706, 0.207843)
1599
o145.Parent = o144
1600
o145.Scale = Vector3.new(0.666666687, 0.416666687, 0.333333343)
1601
o145.MeshType = Enum.MeshType.Wedge
1602
o146.Parent = o1
1603
o146.Material = Enum.Material.SmoothPlastic
1604
o146.BrickColor = BrickColor.new("Really black")
1605
o146.Position = Vector3.new(18.950964, 0.872651994, 14.2770796)
1606
o146.Rotation = Vector3.new(2.18855899e-013, 2.50129006e-006, 180)
1607
o146.Anchored = true
1608
o146.FormFactor = Enum.FormFactor.Custom
1609
o146.Size = Vector3.new(0.200000003, 0.200000003, 0.211111099)
1610
o146.CFrame = CFrame.new(18.950964, 0.872651994, 14.2770796, -1, -8.74227766e-008, 4.36557457e-008, 8.74227766e-008, -1, -3.81975606e-015, 4.36557457e-008, 6.83386182e-018, 1)
1611
o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1612
o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1613
o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1614
o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1615
o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1616
o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1617
o146.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1618
o147.Parent = o146
1619
o147.Scale = Vector3.new(0.666666687, 0.277777761, 1)
1620
o147.MeshType = Enum.MeshType.Wedge
1621
o148.Name = "Handle"
1622
o148.Parent = o1
1623
o148.Material = Enum.Material.SmoothPlastic
1624
o148.BrickColor = BrickColor.new("Really black")
1625
o148.Transparency = 1
1626
o148.Position = Vector3.new(18.9506321, 0.598004997, 14.4106464)
1627
o148.Rotation = Vector3.new(180, -2.50129006e-006, 180)
1628
o148.Anchored = true
1629
o148.FormFactor = Enum.FormFactor.Custom
1630
o148.Size = Vector3.new(0.200000003, 0.205555543, 0.200000003)
1631
o148.CFrame = CFrame.new(18.9506321, 0.598004997, 14.4106464, -1, -1.0960446e-021, -4.36557457e-008, 1.41269847e-021, 1, -1.6144448e-018, 4.36557457e-008, -5.38120031e-018, -1)
1632
o148.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1633
o148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1634
o148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1635
o148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1636
o148.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1637
o148.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1638
o148.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
1639
o149.Name = "FireSound"
1640
o149.Parent = o148
1641
o149.SoundId = "rbxassetid://330704232"
1642
o149.Volume = 10
1643
o150.Parent = o148
1644
o150.Scale = Vector3.new(0.99999994, 1, 0.99999994)
1645
Victim = game.Players.LocalPlayer.Character
1646
function Suicide ()
1647
	    Victim.Torso.Neck.C0 = CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(25), -math.rad(0),-math.rad(0))
1648
        Victim.Torso.Neck.C1 = CFrame.new(0,0,0)
1649
		wait(.02)
1650
	    Victim.Torso["Right Shoulder"].C0 = CFrame.new(2.3,.5,0) * CFrame.Angles(math.rad(-90), -math.rad(160),-math.rad(-70))
1651
        Victim.Torso["Right Shoulder"].C1 = CFrame.new(0,0,0)
1652
		ANGLE = -70
1653
		ANGLE2 = -20
1654
		for i=1,7 do
1655
		ANGLE = ANGLE + 10
1656
		ANGLE2 = ANGLE2 + 10
1657
		Victim.Torso["Right Shoulder"].C0 = CFrame.new(2.3,.5,0) * CFrame.Angles(math.rad(-90), -math.rad(160),-math.rad(ANGLE))
1658
        Victim.Torso["Right Shoulder"].C1 = CFrame.new(0,0,0)
1659
		wait(1/30)
1660
		end
1661
		wait(.3)
1662
		o1.Handle.FireSound.Parent = workspace
1663
		workspace.FireSound:Play()
1664
		game.Players.LocalPlayer.Character.Humanoid.Health = 0
1665
		game.Players.LocalPlayer.Character.Head.BrickColor = BrickColor.new("Maroon")
1666
		player = game.Players[Victim.Name]
1667
char = player.Character
1668
			char.Archivable = true
1669
			local rg = char:Clone()
1670
			rg.HumanoidRootPart:Destroy()
1671
			rg.Name = ""
1672
			rg.Humanoid.MaxHealth = 0
1673
1674
			for i, v in pairs(rg.Torso:GetChildren()) do
1675
				if v:IsA("Glue") or v:IsA("Motor6D") then
1676
					v:Destroy()
1677
				end
1678
			end
1679
									
1680
			local n = Instance.new("Glue", rg.Torso)
1681
			n.Name = "Neck"
1682
			n.Part0 = rg.Torso
1683
			n.Part1 = rg.Head
1684
			n.C0 = CFrame.new(0, 1, 0)
1685
			n.C1 = CFrame.new(0, -0.5, 0)
1686
1687
			
1688
			local rs = Instance.new("Glue", rg.Torso)
1689
			rs.Name = "Right Shoulder"
1690
			rs.Part0 = rg.Torso
1691
			rs.Part1 = rg["Right Arm"]
1692
			rs.C0 = CFrame.new(1.5, 0.5, 0)
1693
			rs.C1 = CFrame.new(0, 0.5, 0)
1694
			local ls = Instance.new("Glue", rg.Torso)
1695
			ls.Name = "Left Shoulder"
1696
			ls.Part0 = rg.Torso
1697
			ls.Part1 = rg["Left Arm"]
1698
			ls.C0 = CFrame.new(-1.5, 0.5, 0)
1699
			ls.C1 = CFrame.new(0, 0.5, 0)
1700
			
1701
			local rh = Instance.new("Glue", rg.Torso)
1702
			rh.Name = "Right Hip"
1703
			rh.Part0 = rg.Torso
1704
			rh.Part1 = rg["Right Leg"]
1705
			rh.C0 = CFrame.new(0.5, -1, 0)
1706
			rh.C1 = CFrame.new(0, 1, 0)
1707
			local lh = Instance.new("Glue", rg.Torso)
1708
			lh.Name = "Left Hip"
1709
			lh.Part0 = rg.Torso
1710
			lh.Part1 = rg["Left Leg"]
1711
			lh.C0 = CFrame.new(-0.5, -1, 0)
1712
			lh.C1 = CFrame.new(0, 1, 0)
1713
			char.Torso:Destroy()
1714
			char.Head:Destroy()
1715
			char["Left Leg"]:Destroy()
1716
			char["Left Arm"]:Destroy()
1717
			char["Right Leg"]:Destroy()
1718
			char["Right Arm"]:Destroy()
1719
			rg.Parent = game.Workspace
1720
			rg.Head.BrickColor = BrickColor.new("Maroon")
1721
			rg.Torso.Neck:Destroy()
1722
						for i, v in pairs(rg.Torso:GetChildren()) do
1723
				if v:IsA("Motor6D") then
1724
					v:Destroy()
1725
				end
1726
			end
1727
function DEATH ()
1728
OHHNELLY = Instance.new("Part")
1729
OHHNELLY.Parent = rg
1730
OHHNELLY.Anchored = false
1731
OHHNELLY.Material = Enum.Material.SmoothPlastic
1732
OHHNELLY.BrickColor = BrickColor.new("Maroon")
1733
OHHNELLY.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
1734
OHHNELLY.Position = rg.Head.Position
1735
OHHNELLY.Color = Color3.new(0.458824, 0, 0)
1736
OHHNELLY.BackSurface = Enum.SurfaceType.SmoothNoOutlines
1737
OHHNELLY.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
1738
OHHNELLY.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
1739
OHHNELLY.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
1740
OHHNELLY.RightSurface = Enum.SurfaceType.SmoothNoOutlines
1741
OHHNELLY.TopSurface = Enum.SurfaceType.SmoothNoOutlines
1742
end
1743
for i=1, 10 do
1744
	DEATH()
1745
	print"BLOODY"
1746
	wait()
1747
end
1748
end
1749
function Weld(x,y)
1750
	local W = Instance.new("Weld")
1751
	W.Part0 = x
1752
	W.Part1 = y
1753
	local CJ = CFrame.new(x.Position)
1754
	local C0 = x.CFrame:inverse()*CJ
1755
	local C1 = y.CFrame:inverse()*CJ
1756
	W.C0 = C0
1757
	W.C1 = C1
1758
	W.Parent = x
1759
end
1760
1761
function Get(A)
1762
	if A.className == "Part" then
1763
		Weld(o1.Handle, A)
1764
		A.Anchored = false
1765
	else
1766
		local C = A:GetChildren()
1767
		for i=1, #C do
1768
		Get(C[i])
1769
		end
1770
	end
1771
end
1772
1773
function Finale()
1774
	Get(o1)
1775
end
1776
1777
o1.Equipped:connect(Finale)
1778
o1.Unequipped:connect(Finale)
1779
o1.Activated:connect(Suicide)
1780
Finale()