SHOW:
|
|
- or go back to the newest paste.
| 1 | - | --https://github.com/Mokiros/roblox-FE-compatibility |
| 1 | + | -- This script has been converted to FE by iPxter |
| 2 | ||
| 3 | - | local Player,game,owner = owner,game |
| 3 | + | |
| 4 | - | local RealPlayer = Player |
| 4 | + | |
| 5 | local Player,Mouse,mouse,UserInputService,ContextActionService = owner | |
| 6 | - | print("FE Compatibility code V2 by Mokiros")
|
| 6 | + | |
| 7 | - | local RealPlayer = RealPlayer |
| 7 | + | print("FE Compatibility code by Mokiros | Translated to FE by iPxter")
|
| 8 | - | script.Parent = RealPlayer.Character |
| 8 | + | script.Parent = Player.Character |
| 9 | ||
| 10 | - | --Fake event to make stuff like Mouse.KeyDown work |
| 10 | + | --RemoteEvent for communicating |
| 11 | - | local Disconnect_Function = function(this) |
| 11 | + | local Event = Instance.new("RemoteEvent")
|
| 12 | - | this[1].Functions[this[2]] = nil |
| 12 | + | Event.Name = "UserInput_Event" |
| 13 | ||
| 14 | - | local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
|
| 14 | + | --Fake event to make stuff like Mouse.KeyDown work |
| 15 | - | local FakeEvent_Metatable = {__index={
|
| 15 | + | local function fakeEvent() |
| 16 | - | Connect = function(this,f) |
| 16 | + | local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
|
| 17 | - | local i = tostring(math.random(0,10000)) |
| 17 | + | t.connect = t.Connect |
| 18 | - | while this.Functions[i] do |
| 18 | + | return t |
| 19 | - | i = tostring(math.random(0,10000)) |
| 19 | + | end |
| 20 | ||
| 21 | - | this.Functions[i] = f |
| 21 | + | --Creating fake input objects with fake variables |
| 22 | - | return setmetatable({this,i},Disconnect_Metatable)
|
| 22 | + | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
|
| 23 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 24 | - | }} |
| 24 | + | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
|
| 25 | - | FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect |
| 25 | + | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
|
| 26 | - | local function fakeEvent() |
| 26 | + | end} |
| 27 | - | return setmetatable({Functions={}},FakeEvent_Metatable)
|
| 27 | + | --Merged 2 functions into one by checking amount of arguments |
| 28 | CAS.UnbindAction = CAS.BindAction | |
| 29 | ||
| 30 | - | --Creating fake input objects with fake variables |
| 30 | + | --This function will trigger the events that have been :Connect()'ed |
| 31 | - | local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
|
| 31 | + | local function te(self,ev,...) |
| 32 | - | FakeMouse.keyUp = FakeMouse.KeyUp |
| 32 | + | local t = m[ev] |
| 33 | - | FakeMouse.keyDown = FakeMouse.KeyDown |
| 33 | + | if t and t._fakeEvent and t.Function then |
| 34 | - | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
|
| 34 | + | t.Function(...) |
| 35 | - | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
|
| 35 | + | end |
| 36 | - | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
|
| 36 | + | end |
| 37 | - | end} |
| 37 | + | m.TrigEvent = te |
| 38 | - | --Merged 2 functions into one by checking amount of arguments |
| 38 | + | UIS.TrigEvent = te |
| 39 | - | CAS.UnbindAction = CAS.BindAction |
| 39 | + | |
| 40 | Event.OnServerEvent:Connect(function(plr,io) | |
| 41 | - | --This function will trigger the events that have been :Connect()'ed |
| 41 | + | if plr~=Player then return end |
| 42 | - | local function TriggerEvent(self,ev,...) |
| 42 | + | if io.isMouse then |
| 43 | - | for _,f in pairs(self[ev].Functions) do |
| 43 | + | m.Target = io.Target |
| 44 | - | f(...) |
| 44 | + | m.Hit = io.Hit |
| 45 | else | |
| 46 | local b = io.UserInputState == Enum.UserInputState.Begin | |
| 47 | - | FakeMouse.TriggerEvent = TriggerEvent |
| 47 | + | if io.UserInputType == Enum.UserInputType.MouseButton1 then |
| 48 | - | UIS.TriggerEvent = TriggerEvent |
| 48 | + | return m:TrigEvent(b and "Button1Down" or "Button1Up") |
| 49 | end | |
| 50 | - | --Client communication |
| 50 | + | for _,t in pairs(CAS.Actions) do |
| 51 | - | local Event = Instance.new("RemoteEvent")
|
| 51 | + | for _,k in pairs(t.Keys) do |
| 52 | - | Event.Name = "UserInput_Event" |
| 52 | + | if k==io.KeyCode then |
| 53 | - | Event.OnServerEvent:Connect(function(plr,io) |
| 53 | + | t.Function(t.Name,io.UserInputState,io) |
| 54 | - | if plr~=RealPlayer then return end |
| 54 | + | end |
| 55 | - | FakeMouse.Target = io.Target |
| 55 | + | end |
| 56 | - | FakeMouse.Hit = io.Hit |
| 56 | + | end |
| 57 | - | if not io.isMouse then |
| 57 | + | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) |
| 58 | - | local b = io.UserInputState == Enum.UserInputState.Begin |
| 58 | + | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) |
| 59 | - | if io.UserInputType == Enum.UserInputType.MouseButton1 then |
| 59 | + | end |
| 60 | - | return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up") |
| 60 | + | end) |
| 61 | Event.Parent = NLS([==[ | |
| 62 | - | if io.UserInputType == Enum.UserInputType.MouseButton2 then |
| 62 | + | local Player = game:GetService("Players").LocalPlayer
|
| 63 | - | return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up") |
| 63 | + | local Event = script:WaitForChild("UserInput_Event")
|
| 64 | ||
| 65 | - | for _,t in pairs(CAS.Actions) do |
| 65 | + | local UIS = game:GetService("UserInputService")
|
| 66 | - | for _,k in pairs(t.Keys) do |
| 66 | + | local input = function(io,a) |
| 67 | - | if k==io.KeyCode then |
| 67 | + | if a then return end |
| 68 | - | t.Function(t.Name,io.UserInputState,io) |
| 68 | + | --Since InputObject is a client-side instance, we create and pass table instead |
| 69 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
| |
| 70 | - | end |
| 70 | + | end |
| 71 | UIS.InputBegan:Connect(input) | |
| 72 | - | FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) |
| 72 | + | UIS.InputEnded:Connect(input) |
| 73 | - | UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false) |
| 73 | + | |
| 74 | - | end |
| 74 | + | local Mouse = Player:GetMouse() |
| 75 | - | end) |
| 75 | + | local h,t |
| 76 | - | Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
|
| 76 | + | --Give the server mouse data 30 times every second, but only if the values changed |
| 77 | - | local Mouse = owner:GetMouse() |
| 77 | + | --If player is not moving their mouse, client won't fire events |
| 78 | - | local UIS = game:GetService("UserInputService")
|
| 78 | + | while wait(1/30) do |
| 79 | - | local input = function(io,RobloxHandled) |
| 79 | + | if h~=Mouse.Hit or t~=Mouse.Target then |
| 80 | - | if RobloxHandled then return end |
| 80 | + | h,t=Mouse.Hit,Mouse.Target |
| 81 | - | --Since InputObject is a client-side instance, we create and pass table instead |
| 81 | + | Event:FireServer({isMouse=true,Target=t,Hit=h})
|
| 82 | - | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
|
| 82 | + | end |
| 83 | end]==],Player.Character) | |
| 84 | - | UIS.InputBegan:Connect(input) |
| 84 | + | Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS |
| 85 | - | UIS.InputEnded:Connect(input) |
| 85 | + | |
| 86 | wait(1) | |
| 87 | - | local h,t |
| 87 | + | |
| 88 | - | --Give the server mouse data every second frame, but only if the values changed |
| 88 | + | |
| 89 | - | --If player is not moving their mouse, client won't fire events |
| 89 | + | |
| 90 | - | local HB = game:GetService("RunService").Heartbeat
|
| 90 | + | |
| 91 | - | while true do |
| 91 | + | |
| 92 | - | if h~=Mouse.Hit or t~=Mouse.Target then |
| 92 | + | |
| 93 | - | h,t=Mouse.Hit,Mouse.Target |
| 93 | + | |
| 94 | - | Event:FireServer({isMouse=true,Target=t,Hit=h})
|
| 94 | + | |
| 95 | script.Parent = FOLDER | |
| 96 | - | --Wait 2 frames |
| 96 | + | |
| 97 | - | for i=1,2 do |
| 97 | + | |
| 98 | - | HB:Wait() |
| 98 | + | |
| 99 | local FRARM = Instance.new("Part")
| |
| 100 | - | end]==],script) |
| 100 | + | |
| 101 | FRARM.Name = "Right Arm" | |
| 102 | - | ----Sandboxed game object that allows the usage of client-side methods and services |
| 102 | + | |
| 103 | - | --Real game object |
| 103 | + | |
| 104 | - | local RealGame = game |
| 104 | + | |
| 105 | FRARM.Size = SPY.Character["Right Arm"].Size | |
| 106 | - | --Metatable for fake service |
| 106 | + | |
| 107 | - | local FakeService_Metatable = {
|
| 107 | + | |
| 108 | - | __index = function(self,k) |
| 108 | + | |
| 109 | - | local s = rawget(self,"_RealService") |
| 109 | + | |
| 110 | - | if s then |
| 110 | + | |
| 111 | - | return typeof(s[k])=="function" |
| 111 | + | |
| 112 | - | and function(_,...)return s[k](s,...)end or s[k] |
| 112 | + | |
| 113 | local LW = Instance.new("Weld")
| |
| 114 | - | end, |
| 114 | + | |
| 115 | - | __newindex = function(self,k,v) |
| 115 | + | |
| 116 | - | local s = rawget(self,"_RealService") |
| 116 | + | |
| 117 | - | if s then s[k]=v end |
| 117 | + | |
| 118 | RW.Part1 = SPY.Character["Right Arm"] | |
| 119 | - | } |
| 119 | + | |
| 120 | - | local function FakeService(t,RealService) |
| 120 | + | |
| 121 | - | t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService |
| 121 | + | |
| 122 | - | return setmetatable(t,FakeService_Metatable) |
| 122 | + | |
| 123 | pcall(function() | |
| 124 | for i, v in pairs(SPY.Character:children()) do | |
| 125 | - | --Fake game object |
| 125 | + | |
| 126 | - | local FakeGame = {
|
| 126 | + | |
| 127 | - | GetService = function(self,s) |
| 127 | + | |
| 128 | - | return rawget(self,s) or RealGame:GetService(s) |
| 128 | + | |
| 129 | - | end, |
| 129 | + | |
| 130 | - | Players = FakeService({
|
| 130 | + | |
| 131 | - | LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
|
| 131 | + | |
| 132 | - | },"Players"), |
| 132 | + | rs.OnServerEvent:connect(function() |
| 133 | - | UserInputService = FakeService(UIS,"UserInputService"), |
| 133 | + | |
| 134 | - | ContextActionService = FakeService(CAS,"ContextActionService"), |
| 134 | + | |
| 135 | - | RunService = FakeService({
|
| 135 | + | |
| 136 | - | _btrs = {},
|
| 136 | + | |
| 137 | - | RenderStepped = RealGame:GetService("RunService").Heartbeat,
|
| 137 | + | |
| 138 | - | BindToRenderStep = function(self,name,_,fun) |
| 138 | + | |
| 139 | - | self._btrs[name] = self.Heartbeat:Connect(fun) |
| 139 | + | |
| 140 | - | end, |
| 140 | + | |
| 141 | - | UnbindFromRenderStep = function(self,name) |
| 141 | + | |
| 142 | - | self._btrs[name]:Disconnect() |
| 142 | + | |
| 143 | - | end, |
| 143 | + | |
| 144 | - | },"RunService") |
| 144 | + | |
| 145 | - | } |
| 145 | + | |
| 146 | - | rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer) |
| 146 | + | |
| 147 | - | FakeGame.service = FakeGame.GetService |
| 147 | + | |
| 148 | - | FakeService(FakeGame,game) |
| 148 | + | |
| 149 | - | --Changing owner to fake player object to support owner:GetMouse() |
| 149 | + | |
| 150 | - | game,owner = FakeGame,FakeGame.Players.LocalPlayer |
| 150 | + | |
| 151 | o4 = Instance.new("BoolValue")
| |
| 152 | o5 = Instance.new("Part")
| |
| 153 | o6 = Instance.new("SurfaceGui")
| |
| 154 | - | local MUOSE = SPY:GetMouse() |
| 154 | + | |
| 155 | o8 = Instance.new("Frame")
| |
| 156 | o9 = Instance.new("TextLabel")
| |
| 157 | o10 = Instance.new("Frame")
| |
| 158 | o11 = Instance.new("TextLabel")
| |
| 159 | o12 = Instance.new("TextLabel")
| |
| 160 | o13 = Instance.new("TextLabel")
| |
| 161 | o14 = Instance.new("TextLabel")
| |
| 162 | o15 = Instance.new("TextLabel")
| |
| 163 | oo15 = Instance.new("TextLabel")
| |
| 164 | o16 = Instance.new("ImageLabel")
| |
| 165 | o17 = Instance.new("Weld")
| |
| 166 | o18 = Instance.new("CFrameValue")
| |
| 167 | o19 = Instance.new("Folder")
| |
| 168 | o20 = Instance.new("TextLabel")
| |
| 169 | o1.Name = "Scanner/radar" | |
| 170 | o1.Parent = SPY.Backpack | |
| 171 | o1.TextureId = "http://www.roblox.com/asset/?id=481230529" | |
| 172 | o1.ToolTip = "A great scanner by raulib & co. Use it wisely, and keep the relay antenna on or the radar won't work!" | |
| 173 | o1.GripPos = Vector3.new(0.800000012, -0.800000012, 0.219999999) | |
| 174 | o1.GripForward = Vector3.new(-0.468, 0, -0.884) | |
| 175 | o1.GripRight = Vector3.new(0.884, 0, -0.468) | |
| 176 | o1.GripUp = Vector3.new(0, 1, 0) | |
| 177 | o2.Name = "Handle" | |
| 178 | o2.Parent = o1 | |
| 179 | o2.BrickColor = BrickColor.new("Mid gray")
| |
| 180 | o2.Position = Vector3.new(-41.4399872, 1.00511599, 10.71521) | |
| 181 | o2.Rotation = Vector3.new(0.00999999978, 0, 0) | |
| 182 | o2.Size = Vector3.new(1.62, 2.01000023, 0.430000007) | |
| 183 | o2.CFrame = CFrame.new(-41.4399872, 1.00511599, 10.71521, 1, -4.92868203e-05, 3.4392513e-05, 4.92931795e-05, 1, -0.000185024692, -3.43833926e-05, 0.00018502638, 1) | |
| 184 | o2.BottomSurface = Enum.SurfaceType.Smooth | |
| 185 | o2.TopSurface = Enum.SurfaceType.Smooth | |
| 186 | o2.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 187 | o2.Position = Vector3.new(-41.4399872, 1.00511599, 10.71521) | |
| 188 | o2.Orientation = Vector3.new(0.00999999978, 0, 0) | |
| 189 | o2.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 190 | o3.Parent = o2 | |
| 191 | o3.MeshId = "http://www.roblox.com/asset/?id=29515975" | |
| 192 | o3.Scale = Vector3.new(1.5, 1.5, 1.5) | |
| 193 | o3.TextureId = "rbxassetid://1000478714" | |
| 194 | o3.MeshType = Enum.MeshType.FileMesh | |
| 195 | o3.Scale = Vector3.new(1.5, 1.5, 1.5) | |
| 196 | o4.Name = "Power" | |
| 197 | o4.Parent = o2 | |
| 198 | - | rs.RenderStepped:connect(function() |
| 198 | + | |
| 199 | o5.Parent = o1 | |
| 200 | o5.Transparency = 1 | |
| 201 | o5.Position = Vector3.new(-41.2999649, 0.510078251, 10.9551134) | |
| 202 | o5.Rotation = Vector3.new(0.00999999978, 0, 0) | |
| 203 | o5.Size = Vector3.new(0.980000079, 0.680000007, 0.0500000007) | |
| 204 | o5.CFrame = CFrame.new(-41.2999649, 0.510078251, 10.9551134, 1, -4.92868276e-05, 3.43925167e-05, 4.92931795e-05, 1.00000012, -0.000185054523, -3.43833926e-05, 0.000185056211, 1.00000012) | |
| 205 | o5.Position = Vector3.new(-41.2999649, 0.510078251, 10.9551134) | |
| 206 | o5.Orientation = Vector3.new(0.00999999978, 0, 0) | |
| 207 | o6.Parent = o5 | |
| 208 | o6.Face = Enum.NormalId.Back | |
| 209 | o7.Name = "BloxeFrame" | |
| 210 | o7.Parent = o19 | |
| 211 | o7.Size = UDim2.new(1,0,1,0) | |
| 212 | o7.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) | |
| 213 | o7.Style = "DropShadow" | |
| 214 | o8.Name = "Radar" | |
| 215 | o8.Parent = o7 | |
| 216 | o8.Position = UDim2.new(0,0,0,-30) | |
| 217 | o8.Position = UDim2.new(0,0,0,-30) | |
| 218 | o8.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 219 | o9.Name = "Distance" | |
| 220 | o9.Parent = o8 | |
| 221 | o9.Position = UDim2.new(0,0,0,30) | |
| 222 | o9.Size = UDim2.new(0,200,0,200) | |
| 223 | o9.Position = UDim2.new(0,0,0,30) | |
| 224 | o9.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 225 | o9.BackgroundTransparency = 1 | |
| 226 | o9.Font = Enum.Font.SourceSans | |
| 227 | o9.FontSize = Enum.FontSize.Size14 | |
| 228 | o9.TextColor3 = Color3.new(1, 0, 0) | |
| 229 | o9.TextScaled = true | |
| 230 | o9.TextWrapped = true | |
| 231 | o9.Text = "?" | |
| 232 | o10.Name = "Players" | |
| 233 | o10.Parent = o8 | |
| 234 | o10.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 235 | o10.BackgroundTransparency = 1 | |
| 236 | o10.BorderSizePixel = 0 | |
| 237 | o11.Name = "Nameee" | |
| 238 | o11.Parent = o7 | |
| 239 | o11.Position = UDim2.new(0,220,0,0) | |
| 240 | o11.Size = UDim2.new(0,580,0,100) | |
| 241 | o11.Text = "Name: N/A" | |
| 242 | o11.Position = UDim2.new(0,220,0,0) | |
| 243 | o11.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 244 | o11.BackgroundTransparency = 1 | |
| 245 | o11.Font = Enum.Font.SourceSans | |
| 246 | o11.FontSize = Enum.FontSize.Size14 | |
| 247 | o11.TextColor3 = Color3.new(1, 0, 0) | |
| 248 | o11.TextScaled = true | |
| 249 | o11.TextWrapped = true | |
| 250 | o12.Name = "UserId" | |
| 251 | o12.Parent = o7 | |
| 252 | o12.Position = UDim2.new(0,220,0,200) | |
| 253 | o12.Size = UDim2.new(0,580,0,100) | |
| 254 | o12.Text = "UserId: N/A" | |
| 255 | o12.Position = UDim2.new(0,220,0,200) | |
| 256 | o12.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 257 | o12.BackgroundTransparency = 1 | |
| 258 | o12.Font = Enum.Font.SourceSans | |
| 259 | o12.FontSize = Enum.FontSize.Size14 | |
| 260 | o12.TextColor3 = Color3.new(1, 0, 0) | |
| 261 | o12.TextScaled = true | |
| 262 | o12.TextWrapped = true | |
| 263 | o13.Name = "Age" | |
| 264 | o13.Parent = o7 | |
| 265 | o13.Position = UDim2.new(0,220,0,100) | |
| 266 | o13.Size = UDim2.new(0,580,0,100) | |
| 267 | o13.Text = "Age: N/A" | |
| 268 | o13.Position = UDim2.new(0,220,0,100) | |
| 269 | o13.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 270 | o13.BackgroundTransparency = 1 | |
| 271 | o13.Font = Enum.Font.SourceSans | |
| 272 | o13.FontSize = Enum.FontSize.Size14 | |
| 273 | o13.TextColor3 = Color3.new(1, 0, 0) | |
| 274 | o13.TextScaled = true | |
| 275 | o13.TextWrapped = true | |
| 276 | o14.Name = "Health" | |
| 277 | o14.Parent = o7 | |
| 278 | o14.Position = UDim2.new(0,220,0,300) | |
| 279 | o14.Size = UDim2.new(0,580,0,100) | |
| 280 | o14.Text = "Health: N/A" | |
| 281 | o14.Position = UDim2.new(0,220,0,300) | |
| 282 | o14.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 283 | o14.BackgroundTransparency = 1 | |
| 284 | o14.Font = Enum.Font.SourceSans | |
| 285 | o14.FontSize = Enum.FontSize.Size14 | |
| 286 | o14.TextColor3 = Color3.new(1, 0, 0) | |
| 287 | o14.TextScaled = true | |
| 288 | o14.TextWrapped = true | |
| 289 | o15.Name = "JumpPower" | |
| 290 | o15.Parent = o7 | |
| 291 | o15.Position = UDim2.new(0,220,0,400) | |
| 292 | o15.Size = UDim2.new(0,580,0,100) | |
| 293 | o15.Text = "JumpPower: N/A" | |
| 294 | o15.Position = UDim2.new(0,220,0,400) | |
| 295 | o15.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 296 | o15.BackgroundTransparency = 1 | |
| 297 | o15.Font = Enum.Font.SourceSans | |
| 298 | o15.FontSize = Enum.FontSize.Size14 | |
| 299 | o15.TextColor3 = Color3.new(1, 0, 0) | |
| 300 | o15.TextScaled = true | |
| 301 | o15.TextWrapped = true | |
| 302 | oo15.Name = "WalkSpeed" | |
| 303 | oo15.Parent = o7 | |
| 304 | oo15.Position = UDim2.new(0,220,0,500) | |
| 305 | oo15.Size = UDim2.new(0,580,0,100) | |
| 306 | oo15.Text = "WalkSpeed: N/A" | |
| 307 | oo15.Position = UDim2.new(0,220,0,500) | |
| 308 | oo15.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 309 | oo15.BackgroundTransparency = 1 | |
| 310 | oo15.Font = Enum.Font.SourceSans | |
| 311 | oo15.FontSize = Enum.FontSize.Size14 | |
| 312 | oo15.TextColor3 = Color3.new(1, 0, 0) | |
| 313 | oo15.TextScaled = true | |
| 314 | oo15.TextWrapped = true | |
| 315 | o16.Name = "UserImage" | |
| 316 | o16.Parent = o7 | |
| 317 | o16.Position = UDim2.new(0,0,0,200) | |
| 318 | o16.Size = UDim2.new(0,215,0,300) | |
| 319 | o16.Position = UDim2.new(0,0,0,200) | |
| 320 | o16.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 321 | o16.BackgroundTransparency = 1 | |
| 322 | o16.Image = "http://www.roblox.com/asset/?id=52354919" | |
| 323 | o17.Name = "qCFrameWeldThingy" | |
| 324 | o17.Parent = o5 | |
| 325 | o17.C1 = CFrame.new(-0.139987946, 0.495000184, -0.239999771, 1, 0, 0, 0, 1.00000012, 2.98023224e-08, 0, -2.98023224e-08, 1.00000012) | |
| 326 | o17.Part0 = o2 | |
| 327 | o17.Part1 = o5 | |
| 328 | o18.Name = "qRelativeCFrameWeldValue" | |
| 329 | o18.Parent = o5 | |
| 330 | o18.Value = CFrame.new(-0.139987946, 0.495000184, -0.239999771, 1, 0, 0, 0, 1.00000012, 2.98023224e-08, 0, -2.98023224e-08, 1.00000012) | |
| 331 | o19.Name = "Hider" | |
| 332 | o19.Parent = o1 | |
| 333 | o20.Name = "StandBy" | |
| 334 | o20.Parent = o6 | |
| 335 | o20.Size = UDim2.new(1,0,1,0) | |
| 336 | o20.Text = "Please stand by" | |
| 337 | o20.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 338 | o20.BackgroundTransparency = 1 | |
| 339 | o20.Font = Enum.Font.SourceSans | |
| 340 | o20.FontSize = Enum.FontSize.Size14 | |
| 341 | o20.TextColor3 = Color3.new(1, 0, 0) | |
| 342 | o20.TextScaled = true | |
| 343 | o20.TextWrapped = true | |
| 344 | o1.CanBeDropped = false | |
| 345 | -------------------Leds--------------- | |
| 346 | lo1 = Instance.new("Part")
| |
| 347 | lo2 = Instance.new("Weld")
| |
| 348 | lo3 = Instance.new("CFrameValue")
| |
| 349 | lo4 = Instance.new("Part")
| |
| 350 | lo5 = Instance.new("Weld")
| |
| 351 | lo6 = Instance.new("CFrameValue")
| |
| 352 | lo1.Name = "GRN" | |
| 353 | lo1.Parent = o1 | |
| 354 | lo1.Material = Enum.Material.Neon | |
| 355 | lo1.BrickColor = BrickColor.new("Really black")
| |
| 356 | lo1.Position = Vector3.new(-5.06707144, 0.0725069046, -10.9864769) | |
| 357 | lo1.Rotation = Vector3.new(179.600006, 45.6699982, 56.9199982) | |
| 358 | lo1.Shape = Enum.PartType.Cylinder | |
| 359 | lo1.Size = Vector3.new(0.0500000007, 0.149999991, 0.170000017) | |
| 360 | lo1.CFrame = CFrame.new(-5.06707144, 0.0725069046, -10.9864769, 0.381466597, -0.585526109, 0.715291917, -0.835096538, -0.550081313, -0.00492872484, 0.396354556, -0.595457673, -0.698808491) | |
| 361 | lo1.BottomSurface = Enum.SurfaceType.Smooth | |
| 362 | lo1.TopSurface = Enum.SurfaceType.Smooth | |
| 363 | lo1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 364 | lo1.Position = Vector3.new(-5.06707144, 0.0725069046, -10.9864769) | |
| 365 | lo1.Orientation = Vector3.new(0.280000001, 134.330002, -123.370003) | |
| 366 | lo1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 367 | lo2.Name = "qCFrameWeldThingy" | |
| 368 | lo2.Parent = lo1 | |
| 369 | lo2.Part0 = o1.Handle | |
| 370 | lo2.Part1 = lo1 | |
| 371 | lo2.C1 = CFrame.new(0.240002632, 0.310002089, 0.49499917, 7.04079866e-07, -1.49011612e-08, -1.0000093, 1.32713467e-06, 1.00000334, -2.42888927e-06, 0.99999845, -1.17858872e-06, 1.86264515e-09) | |
| 372 | lo2.Part1 = lo1 | |
| 373 | lo3.Name = "qRelativeCFrameWeldValue" | |
| 374 | lo3.Parent = lo1 | |
| 375 | lo3.Value = CFrame.new(0.240002632, 0.310002089, 0.49499917, 7.04079866e-07, -1.49011612e-08, -1.0000093, 1.32713467e-06, 1.00000334, -2.42888927e-06, 0.99999845, -1.17858872e-06, 1.86264515e-09) | |
| 376 | lo4.Name = "RD" | |
| 377 | lo4.Parent = o1 | |
| 378 | lo4.Material = Enum.Material.Neon | |
| 379 | lo4.BrickColor = BrickColor.new("Really black")
| |
| 380 | lo4.Position = Vector3.new(-4.90312195, 0.226530999, -10.819746) | |
| 381 | lo4.Rotation = Vector3.new(179.600006, 45.6699982, 56.9199982) | |
| 382 | lo4.Shape = Enum.PartType.Cylinder | |
| 383 | lo4.Size = Vector3.new(0.0500000007, 0.149999991, 0.170000017) | |
| 384 | lo4.CFrame = CFrame.new(-4.90312195, 0.226530999, -10.819746, 0.381466597, -0.585526109, 0.715291917, -0.835096538, -0.550081313, -0.00492872484, 0.396354556, -0.595457673, -0.698808491) | |
| 385 | lo4.BottomSurface = Enum.SurfaceType.Smooth | |
| 386 | lo4.TopSurface = Enum.SurfaceType.Smooth | |
| 387 | lo4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 388 | lo4.Position = Vector3.new(-4.90312195, 0.226530999, -10.819746) | |
| 389 | lo4.Orientation = Vector3.new(0.280000001, 134.330002, -123.370003) | |
| 390 | lo4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 391 | lo5.Name = "qCFrameWeldThingy" | |
| 392 | lo5.Part0 = o1.Handle | |
| 393 | lo5.Part1 = lo4 | |
| 394 | lo5.Parent = lo4 | |
| 395 | lo5.C1 = CFrame.new(0.240000725, 0.590003014, 0.494998932, 7.04079866e-07, -1.49011612e-08, -1.0000093, 1.32713467e-06, 1.00000334, -2.42888927e-06, 0.99999845, -1.17858872e-06, 1.86264515e-09) | |
| 396 | lo5.Part1 = lo4 | |
| 397 | lo6.Name = "qRelativeCFrameWeldValue" | |
| 398 | lo6.Parent = lo4 | |
| 399 | lo6.Value = CFrame.new(0.240000725, 0.590003014, 0.494998932, 7.04079866e-07, -1.49011612e-08, -1.0000093, 1.32713467e-06, 1.00000334, -2.42888927e-06, 0.99999845, -1.17858872e-06, 1.86264515e-09) | |
| 400 | -----------------Knife-------------------------- | |
| 401 | kno1 = Instance.new("Tool")
| |
| 402 | kno2 = Instance.new("Part")
| |
| 403 | kno3 = Instance.new("SpecialMesh")
| |
| 404 | local attun = Instance.new("Attachment", kno2)
| |
| 405 | attun.Position = Vector3.new(0.143, 0.36, 0.01) | |
| 406 | local atdos = Instance.new("Attachment", kno2)
| |
| 407 | atdos.Position = Vector3.new(-1.714, 0.199, 0.011) | |
| 408 | trail = Instance.new("Trail", kno2)
| |
| 409 | trail.LightEmission = 0.5 | |
| 410 | trail.Attachment0 = attun | |
| 411 | trail.Attachment1 = atdos | |
| 412 | trail.Lifetime = 0.175 | |
| 413 | trail.MinLength = 0 | |
| 414 | trail.Enabled = false | |
| 415 | kno1.Name = "Your Knife" | |
| 416 | kno1.Parent = SPY.Backpack | |
| 417 | kno1.TextureId = "rbxassetid://207414025" | |
| 418 | kno1.GripForward = Vector3.new(0.709005952, 0.456599832, 0.537426531) | |
| 419 | kno1.GripPos = Vector3.new(-0.200000003, -0.5, 0.100000001) | |
| 420 | kno1.GripRight = Vector3.new(-0.677205563, 0.22823669, 0.699500203) | |
| 421 | kno1.GripUp = Vector3.new(-0.19673121, 0.859898031, -0.471033096) | |
| 422 | kno1.ToolTip = "This is your only self-defense weapon." | |
| 423 | kno2.Name = "Handle" | |
| 424 | kno2.Parent = kno1 | |
| 425 | kno2.BrickColor = BrickColor.new("Really black")
| |
| 426 | kno2.Position = Vector3.new(21.1252537, 4.90351295, -17.4292831) | |
| 427 | kno2.Rotation = Vector3.new(-47.1599998, 72.2600021, 0.819999993) | |
| 428 | kno2.CanCollide = false | |
| 429 | kno2.Size = Vector3.new(0.570000052, 1.80999982, 0.100000009) | |
| 430 | kno2.CFrame = CFrame.new(21.1252537, 4.90351295, -17.4292831, 0.304745227, -0.00437635183, 0.952423692, -0.688487232, 0.689963102, 0.22346428, -0.658115208, -0.723831236, 0.207249701) | |
| 431 | kno2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 432 | kno2.Position = Vector3.new(21.1252537, 4.90351295, -17.4292831) | |
| 433 | kno2.Orientation = Vector3.new(-12.9099998, 77.7200012, -44.9399986) | |
| 434 | kno2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 435 | kno3.Parent = kno2 | |
| 436 | kno3.MeshId = "rbxassetid://501815151" | |
| 437 | kno3.Scale = Vector3.new(0.00999999978, 0.00999999978, 0.00999999978) | |
| 438 | kno3.MeshType = Enum.MeshType.FileMesh | |
| 439 | kno3.Scale = Vector3.new(0.00999999978, 0.00999999978, 0.00999999978) | |
| 440 | ------------------------------------------------ | |
| 441 | Device = o1 | |
| 442 | KNIFE = kno1 | |
| 443 | Druaw = Instance.new("Sound")
| |
| 444 | Druaw.Parent = o2 | |
| 445 | Druaw.Name = "DRAWEPON" | |
| 446 | Druaw.SoundId = "rbxassetid://169799883" | |
| 447 | oo1 = Instance.new("Tool")
| |
| 448 | oo1.Parent = SPY.Backpack | |
| 449 | oo1.Name = "Place Relay" | |
| 450 | oo1.ToolTip = "A relay for your device to work" | |
| 451 | oo1.RequiresHandle = true | |
| 452 | oo1.CanBeDropped = false | |
| 453 | oo2 = Instance.new("Part")
| |
| 454 | oo2.Name = "Handle" | |
| 455 | oo2.Parent = oo1 | |
| 456 | oo2.Transparency = 1 | |
| 457 | Relay = oo1 | |
| 458 | GUEI = o7 | |
| 459 | Device.Equipped:connect(function() | |
| 460 | Loading = true | |
| 461 | Druaw:Play() | |
| 462 | EQUOPIED = true | |
| 463 | SPY.CameraMode = "LockFirstPerson" | |
| 464 | o13 = Instance.new("Weld")
| |
| 465 | o14 = Instance.new("CFrameValue")
| |
| 466 | o16 = Instance.new("Weld")
| |
| 467 | o17 = Instance.new("CFrameValue")
| |
| 468 | o13.Name = "qCFrameWeldThingy" | |
| 469 | o13.Parent = SPY.Character["Left Arm"] | |
| 470 | o13.C1 = CFrame.new(1.45322418, 0.181987762, 0.490144253, 0.975119293, 0.0437981263, 0.217311174, -0.221680894, 0.192657098, 0.955897927, 0, -0.980288148, 0.197572872) | |
| 471 | o13.Part0 = SPY.Character["Torso"] | |
| 472 | o13.Part1 = SPY.Character["Left Arm"] | |
| 473 | o14.Name = "qRelativeCFrameWeldValue" | |
| 474 | o14.Parent = SPY.Character["Left Arm"] | |
| 475 | o14.Value = CFrame.new(1.45322418, 0.181987762, 0.490144253, 0.975119293, 0.0437981263, 0.217311174, -0.221680894, 0.192657098, 0.955897927, 0, -0.980288148, 0.197572872) | |
| 476 | o16.Name = "qCFrameWeldThingy" | |
| 477 | o16.Parent = SPY.Character["Right Arm"] | |
| 478 | o16.C1 = CFrame.new(-1.32045746, -0.0804958344, 0.489777565, 0.870040417, -0.0991763473, -0.482901335, 0.492980361, 0.175032184, 0.852252364, 0, -0.979554832, 0.20117709) | |
| 479 | o16.Part0 = SPY.Character["Torso"] | |
| 480 | o16.Part1 = SPY.Character["Right Arm"] | |
| 481 | o17.Name = "qRelativeCFrameWeldValue" | |
| 482 | o17.Parent = SPY.Character["Right Arm"] | |
| 483 | o17.Value = CFrame.new(-1.32045746, -0.0804958344, 0.489777565, 0.870040417, -0.0991763473, -0.482901335, 0.492980361, 0.175032184, 0.852252364, 0, -0.979554832, 0.20117709) | |
| 484 | local LOADING = Instance.new("ImageLabel")
| |
| 485 | LOADING.Name = "Please hold motherfucker" | |
| 486 | LOADING.Parent = Device.Screen.SurfaceGui | |
| 487 | LOADING.Size = UDim2.new(1,0 , 1,0) | |
| 488 | LOADING.Image = "http://www.roblox.com/asset/?id=267841629" | |
| 489 | LOADING.BackgroundTransparency = 1 | |
| 490 | LOADING.ImageTransparency = 0 | |
| 491 | local SNOUE = Instance.new("Sound")
| |
| 492 | SNOUE.Name = "SNOW" | |
| 493 | SNOUE.Parent = Device.Screen.SurfaceGui | |
| 494 | SNOUE.SoundId = "rbxassetid://154273834" | |
| 495 | SNOUE.MaxDistance = 5 | |
| 496 | SNOUE.Volume = 0.2 | |
| 497 | SNOUE:Play() | |
| 498 | wait(3) | |
| 499 | LOADING.ImageTransparency = .1 | |
| 500 | wait() | |
| 501 | LOADING.ImageTransparency = .2 | |
| 502 | wait() | |
| 503 | LOADING.ImageTransparency = .3 | |
| 504 | wait() | |
| 505 | LOADING.ImageTransparency = .4 | |
| 506 | wait() | |
| 507 | LOADING.ImageTransparency = .5 | |
| 508 | wait() | |
| 509 | LOADING.ImageTransparency = .6 | |
| 510 | wait() | |
| 511 | LOADING.ImageTransparency = .7 | |
| 512 | wait() | |
| 513 | LOADING.ImageTransparency = .8 | |
| 514 | wait() | |
| 515 | LOADING.ImageTransparency = .9 | |
| 516 | wait() | |
| 517 | LOADING:Destroy() | |
| 518 | SNOUE:Destroy() | |
| 519 | Loading = false | |
| 520 | if o307.Value == false | |
| 521 | then | |
| 522 | Device.Screen.SurfaceGui.BloxeFrame.Parent = Device.Hider | |
| 523 | Device.Hider.StandBy.Parent = Device.Screen.SurfaceGui | |
| 524 | GUEI.Nameee.Text = "Name: N/A" | |
| 525 | GUEI.Health.Text = "Health: N/A" | |
| 526 | GUEI.JumpPower.Text = "JumpPower: N/A" | |
| 527 | GUEI.WalkSpeed.Text = "WalkSpeed: N/A" | |
| 528 | GUEI.UserImage.Image = "http://www.roblox.com/asset/?id=52354919" | |
| 529 | GUEI.UserId.Text = "UserId: N/A" | |
| 530 | GUEI.Age.Text = "Age: N/A" | |
| 531 | GUEI.Health.Text = "Health: N/A" | |
| 532 | GUEI.JumpPower.Text = "JumpPower: N/A" | |
| 533 | GUEI.WalkSpeed.Text = "WalkSpeed: N/A" | |
| 534 | GUEI.Radar.Distance.Text = "?" | |
| 535 | elseif o307.Value == true | |
| 536 | then | |
| 537 | Device.Hider.BloxeFrame.Parent = Device.Screen.SurfaceGui | |
| 538 | Device.Screen.SurfaceGui.StandBy.Parent = Device.Hider | |
| 539 | end | |
| 540 | end) | |
| 541 | ||
| 542 | Device.Unequipped:connect(function() | |
| 543 | Druaw:Play() | |
| 544 | EQUOPIED = false | |
| 545 | SPY.CameraMode = "Classic" | |
| 546 | o13:Destroy() | |
| 547 | o14:Destroy() | |
| 548 | o16:Destroy() | |
| 549 | o17:Destroy() | |
| 550 | o7 = Instance.new("Motor6D")
| |
| 551 | o8 = Instance.new("Motor6D")
| |
| 552 | o7.Name = "Left Shoulder" | |
| 553 | o7.Parent = SPY.Character.Torso | |
| 554 | o7.C0 = CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08) | |
| 555 | o7.C1 = CFrame.new(0.5, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08) | |
| 556 | o7.Part0 = SPY.Character.Torso | |
| 557 | o7.Part1 = SPY.Character["Left Arm"] | |
| 558 | o7.MaxVelocity = 0.10000000149012 | |
| 559 | o8.Name = "Right Shoulder" | |
| 560 | o8.Parent = SPY.Character.Torso | |
| 561 | o8.C0 = CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08) | |
| 562 | o8.C1 = CFrame.new(-0.5, 0.5, 0, -4.37113883e-08, 0, 1, 0, 0.99999994, 0, -1, 0, -4.37113883e-08) | |
| 563 | o8.Part0 = SPY.Character.Torso | |
| 564 | o8.Part1 = SPY.Character["Right Arm"] | |
| 565 | o8.MaxVelocity = 0.10000000149012 | |
| 566 | end) | |
| 567 | ||
| 568 | Relay.Equipped:connect(function() | |
| 569 | wait(.1) | |
| 570 | Relay:Destroy() | |
| 571 | BLUID = Instance.new("Sound")
| |
| 572 | BLUID.Parent = SPY.Character.Head | |
| 573 | BLUID.Name = "Bobtehuilder is here" | |
| 574 | BLUID.SoundId = "rbxassetid://922634581" | |
| 575 | BLUID.Volume = 10 | |
| 576 | BLUID:Play() | |
| 577 | wait(2.2) | |
| 578 | BLUID:Destroy() | |
| 579 | ||
| 580 | local runDummyScript = function(f,scri) | |
| 581 | local oldenv = getfenv(f) | |
| 582 | local newenv = setmetatable({}, {
| |
| 583 | __index = function(_, k) | |
| 584 | if k:lower() == 'script' then | |
| 585 | return scri | |
| 586 | else | |
| 587 | return oldenv[k] | |
| 588 | end | |
| 589 | end | |
| 590 | }) | |
| 591 | setfenv(f, newenv) | |
| 592 | ypcall(function() f() end) | |
| 593 | end | |
| 594 | cors = {}
| |
| 595 | mas = Instance.new("Model",game:GetService("Lighting"))
| |
| 596 | mas.Name = "CompiledModel" | |
| 597 | o1 = Instance.new("Model")
| |
| 598 | o2 = Instance.new("WedgePart")
| |
| 599 | o3 = Instance.new("Part")
| |
| 600 | o4 = Instance.new("BlockMesh")
| |
| 601 | o5 = Instance.new("WedgePart")
| |
| 602 | o6 = Instance.new("WedgePart")
| |
| 603 | o7 = Instance.new("Model")
| |
| 604 | o8 = Instance.new("Part")
| |
| 605 | o9 = Instance.new("CylinderMesh")
| |
| 606 | o10 = Instance.new("Part")
| |
| 607 | o11 = Instance.new("CylinderMesh")
| |
| 608 | o12 = Instance.new("Part")
| |
| 609 | o13 = Instance.new("CylinderMesh")
| |
| 610 | o14 = Instance.new("Model")
| |
| 611 | o15 = Instance.new("Part")
| |
| 612 | o16 = Instance.new("CylinderMesh")
| |
| 613 | o17 = Instance.new("Part")
| |
| 614 | o18 = Instance.new("CylinderMesh")
| |
| 615 | o19 = Instance.new("Part")
| |
| 616 | o20 = Instance.new("CylinderMesh")
| |
| 617 | o21 = Instance.new("Model")
| |
| 618 | o22 = Instance.new("Part")
| |
| 619 | o23 = Instance.new("CylinderMesh")
| |
| 620 | o24 = Instance.new("Part")
| |
| 621 | o25 = Instance.new("CylinderMesh")
| |
| 622 | o26 = Instance.new("Part")
| |
| 623 | o27 = Instance.new("CylinderMesh")
| |
| 624 | o28 = Instance.new("Model")
| |
| 625 | o29 = Instance.new("Part")
| |
| 626 | o30 = Instance.new("CylinderMesh")
| |
| 627 | o31 = Instance.new("Part")
| |
| 628 | o32 = Instance.new("CylinderMesh")
| |
| 629 | o33 = Instance.new("Part")
| |
| 630 | o34 = Instance.new("CylinderMesh")
| |
| 631 | o35 = Instance.new("Model")
| |
| 632 | o36 = Instance.new("Part")
| |
| 633 | o37 = Instance.new("CylinderMesh")
| |
| 634 | o38 = Instance.new("Part")
| |
| 635 | o39 = Instance.new("CylinderMesh")
| |
| 636 | o40 = Instance.new("Part")
| |
| 637 | o41 = Instance.new("CylinderMesh")
| |
| 638 | o42 = Instance.new("Part")
| |
| 639 | o43 = Instance.new("BlockMesh")
| |
| 640 | o44 = Instance.new("Part")
| |
| 641 | o45 = Instance.new("CylinderMesh")
| |
| 642 | o46 = Instance.new("Part")
| |
| 643 | o47 = Instance.new("BlockMesh")
| |
| 644 | o48 = Instance.new("Part")
| |
| 645 | o49 = Instance.new("BlockMesh")
| |
| 646 | o50 = Instance.new("Part")
| |
| 647 | o51 = Instance.new("CylinderMesh")
| |
| 648 | o52 = Instance.new("WedgePart")
| |
| 649 | o53 = Instance.new("WedgePart")
| |
| 650 | o54 = Instance.new("WedgePart")
| |
| 651 | o55 = Instance.new("WedgePart")
| |
| 652 | o56 = Instance.new("Part")
| |
| 653 | o57 = Instance.new("CylinderMesh")
| |
| 654 | o58 = Instance.new("Part")
| |
| 655 | o59 = Instance.new("CylinderMesh")
| |
| 656 | o60 = Instance.new("Part")
| |
| 657 | o61 = Instance.new("CylinderMesh")
| |
| 658 | o62 = Instance.new("Part")
| |
| 659 | o63 = Instance.new("CylinderMesh")
| |
| 660 | o64 = Instance.new("Part")
| |
| 661 | o65 = Instance.new("CylinderMesh")
| |
| 662 | o66 = Instance.new("Part")
| |
| 663 | o67 = Instance.new("CylinderMesh")
| |
| 664 | o68 = Instance.new("Part")
| |
| 665 | o69 = Instance.new("CylinderMesh")
| |
| 666 | o70 = Instance.new("Part")
| |
| 667 | o71 = Instance.new("CylinderMesh")
| |
| 668 | o72 = Instance.new("Part")
| |
| 669 | o73 = Instance.new("CylinderMesh")
| |
| 670 | o74 = Instance.new("WedgePart")
| |
| 671 | o75 = Instance.new("WedgePart")
| |
| 672 | o76 = Instance.new("WedgePart")
| |
| 673 | o77 = Instance.new("WedgePart")
| |
| 674 | o78 = Instance.new("WedgePart")
| |
| 675 | o79 = Instance.new("CornerWedgePart")
| |
| 676 | o80 = Instance.new("CornerWedgePart")
| |
| 677 | o81 = Instance.new("CornerWedgePart")
| |
| 678 | o82 = Instance.new("Part")
| |
| 679 | o83 = Instance.new("BlockMesh")
| |
| 680 | o84 = Instance.new("Part")
| |
| 681 | o85 = Instance.new("CylinderMesh")
| |
| 682 | o86 = Instance.new("Part")
| |
| 683 | o87 = Instance.new("Part")
| |
| 684 | o88 = Instance.new("CylinderMesh")
| |
| 685 | o89 = Instance.new("Part")
| |
| 686 | o90 = Instance.new("BlockMesh")
| |
| 687 | o91 = Instance.new("Part")
| |
| 688 | o92 = Instance.new("BlockMesh")
| |
| 689 | o93 = Instance.new("Part")
| |
| 690 | o94 = Instance.new("BlockMesh")
| |
| 691 | o95 = Instance.new("Part")
| |
| 692 | o96 = Instance.new("BlockMesh")
| |
| 693 | o97 = Instance.new("Part")
| |
| 694 | o98 = Instance.new("Part")
| |
| 695 | o99 = Instance.new("BlockMesh")
| |
| 696 | o100 = Instance.new("Part")
| |
| 697 | o101 = Instance.new("CylinderMesh")
| |
| 698 | o102 = Instance.new("Part")
| |
| 699 | o103 = Instance.new("BlockMesh")
| |
| 700 | o104 = Instance.new("WedgePart")
| |
| 701 | o105 = Instance.new("WedgePart")
| |
| 702 | o106 = Instance.new("WedgePart")
| |
| 703 | o107 = Instance.new("CornerWedgePart")
| |
| 704 | o108 = Instance.new("CornerWedgePart")
| |
| 705 | o109 = Instance.new("CornerWedgePart")
| |
| 706 | o110 = Instance.new("Part")
| |
| 707 | o111 = Instance.new("CylinderMesh")
| |
| 708 | o112 = Instance.new("Part")
| |
| 709 | o113 = Instance.new("CylinderMesh")
| |
| 710 | o114 = Instance.new("Part")
| |
| 711 | o115 = Instance.new("CylinderMesh")
| |
| 712 | o116 = Instance.new("Part")
| |
| 713 | o117 = Instance.new("CylinderMesh")
| |
| 714 | o118 = Instance.new("Part")
| |
| 715 | o119 = Instance.new("CylinderMesh")
| |
| 716 | o120 = Instance.new("Part")
| |
| 717 | o121 = Instance.new("Part")
| |
| 718 | o122 = Instance.new("Part")
| |
| 719 | o123 = Instance.new("Part")
| |
| 720 | o124 = Instance.new("Part")
| |
| 721 | o125 = Instance.new("Part")
| |
| 722 | o126 = Instance.new("Part")
| |
| 723 | o127 = Instance.new("Part")
| |
| 724 | o128 = Instance.new("Part")
| |
| 725 | o129 = Instance.new("Part")
| |
| 726 | o130 = Instance.new("Part")
| |
| 727 | o131 = Instance.new("Part")
| |
| 728 | o132 = Instance.new("Part")
| |
| 729 | o133 = Instance.new("Part")
| |
| 730 | o134 = Instance.new("Part")
| |
| 731 | o135 = Instance.new("Part")
| |
| 732 | o136 = Instance.new("Part")
| |
| 733 | o137 = Instance.new("Part")
| |
| 734 | o138 = Instance.new("Part")
| |
| 735 | o139 = Instance.new("Part")
| |
| 736 | o140 = Instance.new("Part")
| |
| 737 | o141 = Instance.new("Part")
| |
| 738 | o142 = Instance.new("Part")
| |
| 739 | o143 = Instance.new("Part")
| |
| 740 | o144 = Instance.new("Part")
| |
| 741 | o145 = Instance.new("Part")
| |
| 742 | o146 = Instance.new("Part")
| |
| 743 | o147 = Instance.new("Part")
| |
| 744 | o148 = Instance.new("Part")
| |
| 745 | o149 = Instance.new("Part")
| |
| 746 | o150 = Instance.new("Part")
| |
| 747 | o151 = Instance.new("Part")
| |
| 748 | o152 = Instance.new("Part")
| |
| 749 | o153 = Instance.new("Part")
| |
| 750 | o154 = Instance.new("Part")
| |
| 751 | o155 = Instance.new("Part")
| |
| 752 | o156 = Instance.new("Part")
| |
| 753 | o157 = Instance.new("Part")
| |
| 754 | o158 = Instance.new("Part")
| |
| 755 | o159 = Instance.new("Part")
| |
| 756 | o160 = Instance.new("Part")
| |
| 757 | o161 = Instance.new("Part")
| |
| 758 | o162 = Instance.new("Part")
| |
| 759 | o163 = Instance.new("Part")
| |
| 760 | o164 = Instance.new("Part")
| |
| 761 | o165 = Instance.new("Part")
| |
| 762 | o166 = Instance.new("Part")
| |
| 763 | o167 = Instance.new("Part")
| |
| 764 | o168 = Instance.new("Part")
| |
| 765 | o169 = Instance.new("Part")
| |
| 766 | o170 = Instance.new("Part")
| |
| 767 | o171 = Instance.new("Part")
| |
| 768 | o172 = Instance.new("Part")
| |
| 769 | o173 = Instance.new("Part")
| |
| 770 | o174 = Instance.new("Part")
| |
| 771 | o175 = Instance.new("Part")
| |
| 772 | o176 = Instance.new("Part")
| |
| 773 | o177 = Instance.new("Part")
| |
| 774 | o178 = Instance.new("Part")
| |
| 775 | o179 = Instance.new("Part")
| |
| 776 | o180 = Instance.new("Part")
| |
| 777 | o181 = Instance.new("Part")
| |
| 778 | o182 = Instance.new("Part")
| |
| 779 | o183 = Instance.new("Part")
| |
| 780 | o184 = Instance.new("BlockMesh")
| |
| 781 | o185 = Instance.new("Part")
| |
| 782 | o186 = Instance.new("CylinderMesh")
| |
| 783 | o187 = Instance.new("Part")
| |
| 784 | o188 = Instance.new("CylinderMesh")
| |
| 785 | o189 = Instance.new("Part")
| |
| 786 | o190 = Instance.new("CylinderMesh")
| |
| 787 | o191 = Instance.new("Part")
| |
| 788 | o192 = Instance.new("BlockMesh")
| |
| 789 | o193 = Instance.new("Part")
| |
| 790 | o194 = Instance.new("BlockMesh")
| |
| 791 | o195 = Instance.new("Part")
| |
| 792 | o196 = Instance.new("BlockMesh")
| |
| 793 | o197 = Instance.new("Part")
| |
| 794 | o198 = Instance.new("CylinderMesh")
| |
| 795 | o199 = Instance.new("Part")
| |
| 796 | o200 = Instance.new("BlockMesh")
| |
| 797 | o201 = Instance.new("Part")
| |
| 798 | o202 = Instance.new("BlockMesh")
| |
| 799 | o203 = Instance.new("Part")
| |
| 800 | o204 = Instance.new("BlockMesh")
| |
| 801 | o205 = Instance.new("Part")
| |
| 802 | o206 = Instance.new("BlockMesh")
| |
| 803 | o207 = Instance.new("Part")
| |
| 804 | o208 = Instance.new("BlockMesh")
| |
| 805 | o209 = Instance.new("Part")
| |
| 806 | o210 = Instance.new("BlockMesh")
| |
| 807 | o211 = Instance.new("Part")
| |
| 808 | o212 = Instance.new("BlockMesh")
| |
| 809 | o213 = Instance.new("Part")
| |
| 810 | o214 = Instance.new("BlockMesh")
| |
| 811 | o215 = Instance.new("Part")
| |
| 812 | o216 = Instance.new("CylinderMesh")
| |
| 813 | o217 = Instance.new("Part")
| |
| 814 | o218 = Instance.new("CylinderMesh")
| |
| 815 | o219 = Instance.new("Part")
| |
| 816 | o220 = Instance.new("BlockMesh")
| |
| 817 | o221 = Instance.new("Part")
| |
| 818 | o222 = Instance.new("CylinderMesh")
| |
| 819 | o223 = Instance.new("Part")
| |
| 820 | o224 = Instance.new("CylinderMesh")
| |
| 821 | o225 = Instance.new("Part")
| |
| 822 | o226 = Instance.new("CylinderMesh")
| |
| 823 | o227 = Instance.new("Part")
| |
| 824 | o228 = Instance.new("BlockMesh")
| |
| 825 | o229 = Instance.new("Part")
| |
| 826 | o230 = Instance.new("BlockMesh")
| |
| 827 | o231 = Instance.new("Part")
| |
| 828 | o232 = Instance.new("BlockMesh")
| |
| 829 | o233 = Instance.new("Part")
| |
| 830 | o234 = Instance.new("CylinderMesh")
| |
| 831 | o235 = Instance.new("Part")
| |
| 832 | o236 = Instance.new("CylinderMesh")
| |
| 833 | o237 = Instance.new("Part")
| |
| 834 | o238 = Instance.new("BlockMesh")
| |
| 835 | o239 = Instance.new("Part")
| |
| 836 | o240 = Instance.new("BlockMesh")
| |
| 837 | o241 = Instance.new("Part")
| |
| 838 | o242 = Instance.new("BlockMesh")
| |
| 839 | o243 = Instance.new("Part")
| |
| 840 | o244 = Instance.new("BlockMesh")
| |
| 841 | o245 = Instance.new("Part")
| |
| 842 | o246 = Instance.new("BlockMesh")
| |
| 843 | o247 = Instance.new("Part")
| |
| 844 | o248 = Instance.new("BlockMesh")
| |
| 845 | o249 = Instance.new("Part")
| |
| 846 | o250 = Instance.new("BlockMesh")
| |
| 847 | o251 = Instance.new("Part")
| |
| 848 | o252 = Instance.new("BlockMesh")
| |
| 849 | o253 = Instance.new("Part")
| |
| 850 | o254 = Instance.new("BlockMesh")
| |
| 851 | o255 = Instance.new("Part")
| |
| 852 | o256 = Instance.new("Part")
| |
| 853 | o257 = Instance.new("WedgePart")
| |
| 854 | o258 = Instance.new("WedgePart")
| |
| 855 | o259 = Instance.new("WedgePart")
| |
| 856 | o260 = Instance.new("WedgePart")
| |
| 857 | o261 = Instance.new("WedgePart")
| |
| 858 | o262 = Instance.new("WedgePart")
| |
| 859 | o263 = Instance.new("CornerWedgePart")
| |
| 860 | o264 = Instance.new("CornerWedgePart")
| |
| 861 | o265 = Instance.new("Part")
| |
| 862 | o266 = Instance.new("Part")
| |
| 863 | o267 = Instance.new("Part")
| |
| 864 | o268 = Instance.new("Part")
| |
| 865 | o269 = Instance.new("Part")
| |
| 866 | o270 = Instance.new("Part")
| |
| 867 | o271 = Instance.new("Part")
| |
| 868 | o272 = Instance.new("Part")
| |
| 869 | o273 = Instance.new("Part")
| |
| 870 | o274 = Instance.new("Part")
| |
| 871 | o275 = Instance.new("Part")
| |
| 872 | o276 = Instance.new("Part")
| |
| 873 | o277 = Instance.new("Part")
| |
| 874 | o278 = Instance.new("Part")
| |
| 875 | o279 = Instance.new("Part")
| |
| 876 | o280 = Instance.new("Part")
| |
| 877 | o281 = Instance.new("Part")
| |
| 878 | o282 = Instance.new("CylinderMesh")
| |
| 879 | o283 = Instance.new("WedgePart")
| |
| 880 | o284 = Instance.new("Model")
| |
| 881 | o285 = Instance.new("Part")
| |
| 882 | o286 = Instance.new("CylinderMesh")
| |
| 883 | o287 = Instance.new("Part")
| |
| 884 | o288 = Instance.new("BlockMesh")
| |
| 885 | o289 = Instance.new("Part")
| |
| 886 | o290 = Instance.new("CylinderMesh")
| |
| 887 | o291 = Instance.new("Part")
| |
| 888 | o292 = Instance.new("CylinderMesh")
| |
| 889 | o293 = Instance.new("Part")
| |
| 890 | o294 = Instance.new("CylinderMesh")
| |
| 891 | o295 = Instance.new("Part")
| |
| 892 | o296 = Instance.new("CylinderMesh")
| |
| 893 | o297 = Instance.new("Part")
| |
| 894 | o298 = Instance.new("BlockMesh")
| |
| 895 | o299 = Instance.new("Part")
| |
| 896 | o300 = Instance.new("Part")
| |
| 897 | o301 = Instance.new("Part")
| |
| 898 | o302 = Instance.new("Part")
| |
| 899 | o303 = Instance.new("Part")
| |
| 900 | o304 = Instance.new("Part")
| |
| 901 | o305 = Instance.new("Part")
| |
| 902 | o306 = Instance.new("Part")
| |
| 903 | o307 = Instance.new("BoolValue")
| |
| 904 | o308 = Instance.new("Model")
| |
| 905 | o309 = Instance.new("Part")
| |
| 906 | o310 = Instance.new("ClickDetector")
| |
| 907 | o311 = Instance.new("Part")
| |
| 908 | o312 = Instance.new("Part")
| |
| 909 | o313 = Instance.new("Part")
| |
| 910 | o314 = Instance.new("Part")
| |
| 911 | o315 = Instance.new("SurfaceGui")
| |
| 912 | o316 = Instance.new("TextLabel")
| |
| 913 | o1.Name = "Radar" | |
| 914 | o1.Parent = mas | |
| 915 | o1.PrimaryPart = o44 | |
| 916 | o2.Parent = o1 | |
| 917 | o2.Material = Enum.Material.Metal | |
| 918 | o2.BrickColor = BrickColor.new("Mid gray")
| |
| 919 | o2.Position = Vector3.new(93.6978683, 1.24901903, -71.2939758) | |
| 920 | o2.Rotation = Vector3.new(0, -38.7000008, 0) | |
| 921 | o2.Anchored = true | |
| 922 | o2.FormFactor = Enum.FormFactor.Symmetric | |
| 923 | o2.Size = Vector3.new(1, 1.98000002, 1) | |
| 924 | o2.CFrame = CFrame.new(93.6978683, 1.24901903, -71.2939758, 0.78039813, 0, -0.625283062, 0, 1, 0, 0.625283062, 0, 0.78039813) | |
| 925 | o2.BottomSurface = Enum.SurfaceType.Smooth | |
| 926 | o2.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 927 | o2.Position = Vector3.new(93.6978683, 1.24901903, -71.2939758) | |
| 928 | o2.Orientation = Vector3.new(0, -38.7000008, 0) | |
| 929 | o2.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 930 | o3.Parent = o1 | |
| 931 | o3.Material = Enum.Material.Metal | |
| 932 | o3.BrickColor = BrickColor.new("Dark stone grey")
| |
| 933 | o3.Position = Vector3.new(92.6657944, 2.35902405, -68.6457977) | |
| 934 | o3.Rotation = Vector3.new(-180, 0, -180) | |
| 935 | o3.Anchored = true | |
| 936 | o3.FormFactor = Enum.FormFactor.Symmetric | |
| 937 | o3.Size = Vector3.new(4.88999939, 3, 1) | |
| 938 | o3.CFrame = CFrame.new(92.6657944, 2.35902405, -68.6457977, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 939 | o3.BottomSurface = Enum.SurfaceType.Smooth | |
| 940 | o3.TopSurface = Enum.SurfaceType.Smooth | |
| 941 | o3.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 942 | o3.Position = Vector3.new(92.6657944, 2.35902405, -68.6457977) | |
| 943 | o3.Orientation = Vector3.new(0, 180, 0) | |
| 944 | o3.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 945 | o4.Parent = o3 | |
| 946 | o4.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 947 | o4.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 948 | o5.Parent = o1 | |
| 949 | o5.Material = Enum.Material.Metal | |
| 950 | o5.BrickColor = BrickColor.new("Mid gray")
| |
| 951 | o5.Position = Vector3.new(95.0118866, 1.249017, -69.6328278) | |
| 952 | o5.Rotation = Vector3.new(0, -63.5800018, 0) | |
| 953 | o5.Anchored = true | |
| 954 | o5.FormFactor = Enum.FormFactor.Symmetric | |
| 955 | o5.Size = Vector3.new(1, 1.98000002, 1) | |
| 956 | o5.CFrame = CFrame.new(95.0118866, 1.249017, -69.6328278, 0.444902122, 0, -0.895579219, 0, 1, 0, 0.895579219, 0, 0.444902122) | |
| 957 | o5.BottomSurface = Enum.SurfaceType.Smooth | |
| 958 | o5.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 959 | o5.Position = Vector3.new(95.0118866, 1.249017, -69.6328278) | |
| 960 | o5.Orientation = Vector3.new(0, -63.5800018, 0) | |
| 961 | o5.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 962 | o6.Parent = o1 | |
| 963 | o6.Material = Enum.Material.Metal | |
| 964 | o6.BrickColor = BrickColor.new("Mid gray")
| |
| 965 | o6.Position = Vector3.new(91.3060837, 1.24901998, -72.335762) | |
| 966 | o6.Rotation = Vector3.new(0, -9.15999985, 0) | |
| 967 | o6.Anchored = true | |
| 968 | o6.FormFactor = Enum.FormFactor.Symmetric | |
| 969 | o6.Size = Vector3.new(1, 1.98000002, 1) | |
| 970 | o6.CFrame = CFrame.new(91.3060837, 1.24901998, -72.335762, 0.987240732, 0, -0.159234956, 0, 1, 0, 0.159234956, 0, 0.987240732) | |
| 971 | o6.BottomSurface = Enum.SurfaceType.Smooth | |
| 972 | o6.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 973 | o6.Position = Vector3.new(91.3060837, 1.24901998, -72.335762) | |
| 974 | o6.Orientation = Vector3.new(0, -9.15999985, 0) | |
| 975 | o6.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 976 | o7.Parent = o1 | |
| 977 | o8.Name = "part" | |
| 978 | o8.Parent = o7 | |
| 979 | o8.Material = Enum.Material.Metal | |
| 980 | o8.BrickColor = BrickColor.new("Dark stone grey")
| |
| 981 | o8.Position = Vector3.new(91.964798, 2.95901203, -66.6458359) | |
| 982 | o8.Rotation = Vector3.new(90, 0, 0) | |
| 983 | o8.Anchored = true | |
| 984 | o8.FormFactor = Enum.FormFactor.Symmetric | |
| 985 | o8.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 986 | o8.CFrame = CFrame.new(91.964798, 2.95901203, -66.6458359, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 987 | o8.BottomSurface = Enum.SurfaceType.Smooth | |
| 988 | o8.TopSurface = Enum.SurfaceType.Smooth | |
| 989 | o8.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 990 | o8.Position = Vector3.new(91.964798, 2.95901203, -66.6458359) | |
| 991 | o8.Orientation = Vector3.new(90, 0, 0) | |
| 992 | o8.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 993 | o9.Parent = o8 | |
| 994 | o9.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 995 | o9.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 996 | o10.Name = "part" | |
| 997 | o10.Parent = o7 | |
| 998 | o10.Material = Enum.Material.Metal | |
| 999 | o10.BrickColor = BrickColor.new("Mid gray")
| |
| 1000 | o10.Position = Vector3.new(91.9648132, 2.95901108, -66.0458374) | |
| 1001 | o10.Rotation = Vector3.new(90, 0, 0) | |
| 1002 | o10.Anchored = true | |
| 1003 | o10.FormFactor = Enum.FormFactor.Symmetric | |
| 1004 | o10.Size = Vector3.new(1.39999998, 1.98000002, 1.39999998) | |
| 1005 | o10.CFrame = CFrame.new(91.9648132, 2.95901108, -66.0458374, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1006 | o10.BottomSurface = Enum.SurfaceType.Smooth | |
| 1007 | o10.TopSurface = Enum.SurfaceType.Smooth | |
| 1008 | o10.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1009 | o10.Position = Vector3.new(91.9648132, 2.95901108, -66.0458374) | |
| 1010 | o10.Orientation = Vector3.new(90, 0, 0) | |
| 1011 | o10.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1012 | o11.Parent = o10 | |
| 1013 | o12.Name = "part" | |
| 1014 | o12.Parent = o7 | |
| 1015 | o12.Material = Enum.Material.Metal | |
| 1016 | o12.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1017 | o12.Position = Vector3.new(91.964798, 2.95901108, -65.445816) | |
| 1018 | o12.Rotation = Vector3.new(90, 0, 0) | |
| 1019 | o12.Anchored = true | |
| 1020 | o12.FormFactor = Enum.FormFactor.Symmetric | |
| 1021 | o12.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1022 | o12.CFrame = CFrame.new(91.964798, 2.95901108, -65.445816, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1023 | o12.BottomSurface = Enum.SurfaceType.Smooth | |
| 1024 | o12.TopSurface = Enum.SurfaceType.Smooth | |
| 1025 | o12.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1026 | o12.Position = Vector3.new(91.964798, 2.95901108, -65.445816) | |
| 1027 | o12.Orientation = Vector3.new(90, 0, 0) | |
| 1028 | o12.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1029 | o13.Parent = o12 | |
| 1030 | o13.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1031 | o13.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1032 | o14.Parent = o1 | |
| 1033 | o15.Name = "part" | |
| 1034 | o15.Parent = o14 | |
| 1035 | o15.Material = Enum.Material.Metal | |
| 1036 | o15.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1037 | o15.Position = Vector3.new(93.3647842, 2.95900297, -66.645813) | |
| 1038 | o15.Rotation = Vector3.new(90, 0, 0) | |
| 1039 | o15.Anchored = true | |
| 1040 | o15.FormFactor = Enum.FormFactor.Symmetric | |
| 1041 | o15.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1042 | o15.CFrame = CFrame.new(93.3647842, 2.95900297, -66.645813, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1043 | o15.BottomSurface = Enum.SurfaceType.Smooth | |
| 1044 | o15.TopSurface = Enum.SurfaceType.Smooth | |
| 1045 | o15.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1046 | o15.Position = Vector3.new(93.3647842, 2.95900297, -66.645813) | |
| 1047 | o15.Orientation = Vector3.new(90, 0, 0) | |
| 1048 | o15.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1049 | o16.Parent = o15 | |
| 1050 | o16.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1051 | o16.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1052 | o17.Name = "part" | |
| 1053 | o17.Parent = o14 | |
| 1054 | o17.Material = Enum.Material.Metal | |
| 1055 | o17.BrickColor = BrickColor.new("Mid gray")
| |
| 1056 | o17.Position = Vector3.new(93.3647995, 2.95900202, -66.045845) | |
| 1057 | o17.Rotation = Vector3.new(90, 0, 0) | |
| 1058 | o17.Anchored = true | |
| 1059 | o17.FormFactor = Enum.FormFactor.Symmetric | |
| 1060 | o17.Size = Vector3.new(1.39999998, 1.98000002, 1.39999998) | |
| 1061 | o17.CFrame = CFrame.new(93.3647995, 2.95900202, -66.045845, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1062 | o17.BottomSurface = Enum.SurfaceType.Smooth | |
| 1063 | o17.TopSurface = Enum.SurfaceType.Smooth | |
| 1064 | o17.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1065 | o17.Position = Vector3.new(93.3647995, 2.95900202, -66.045845) | |
| 1066 | o17.Orientation = Vector3.new(90, 0, 0) | |
| 1067 | o17.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1068 | o18.Parent = o17 | |
| 1069 | o19.Name = "part" | |
| 1070 | o19.Parent = o14 | |
| 1071 | o19.Material = Enum.Material.Metal | |
| 1072 | o19.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1073 | o19.Position = Vector3.new(93.3647842, 2.95900202, -65.4458313) | |
| 1074 | o19.Rotation = Vector3.new(90, 0, 0) | |
| 1075 | o19.Anchored = true | |
| 1076 | o19.FormFactor = Enum.FormFactor.Symmetric | |
| 1077 | o19.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1078 | o19.CFrame = CFrame.new(93.3647842, 2.95900202, -65.4458313, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1079 | o19.BottomSurface = Enum.SurfaceType.Smooth | |
| 1080 | o19.TopSurface = Enum.SurfaceType.Smooth | |
| 1081 | o19.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1082 | o19.Position = Vector3.new(93.3647842, 2.95900202, -65.4458313) | |
| 1083 | o19.Orientation = Vector3.new(90, 0, 0) | |
| 1084 | o19.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1085 | o20.Parent = o19 | |
| 1086 | o20.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1087 | o20.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1088 | o21.Parent = o1 | |
| 1089 | o22.Name = "part" | |
| 1090 | o22.Parent = o21 | |
| 1091 | o22.Material = Enum.Material.Metal | |
| 1092 | o22.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1093 | o22.Position = Vector3.new(93.3647842, 2.95900607, -68.6457977) | |
| 1094 | o22.Rotation = Vector3.new(90, 0, 0) | |
| 1095 | o22.Anchored = true | |
| 1096 | o22.FormFactor = Enum.FormFactor.Symmetric | |
| 1097 | o22.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1098 | o22.CFrame = CFrame.new(93.3647842, 2.95900607, -68.6457977, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1099 | o22.BottomSurface = Enum.SurfaceType.Smooth | |
| 1100 | o22.TopSurface = Enum.SurfaceType.Smooth | |
| 1101 | o22.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1102 | o22.Position = Vector3.new(93.3647842, 2.95900607, -68.6457977) | |
| 1103 | o22.Orientation = Vector3.new(90, 0, 0) | |
| 1104 | o22.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1105 | o23.Parent = o22 | |
| 1106 | o23.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1107 | o23.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1108 | o24.Name = "part" | |
| 1109 | o24.Parent = o21 | |
| 1110 | o24.Material = Enum.Material.Metal | |
| 1111 | o24.BrickColor = BrickColor.new("Mid gray")
| |
| 1112 | o24.Position = Vector3.new(93.3648071, 2.95900393, -68.0457993) | |
| 1113 | o24.Rotation = Vector3.new(90, 0, 0) | |
| 1114 | o24.Anchored = true | |
| 1115 | o24.FormFactor = Enum.FormFactor.Symmetric | |
| 1116 | o24.Size = Vector3.new(1.39999998, 1.98000002, 1.39999998) | |
| 1117 | o24.CFrame = CFrame.new(93.3648071, 2.95900393, -68.0457993, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1118 | o24.BottomSurface = Enum.SurfaceType.Smooth | |
| 1119 | o24.TopSurface = Enum.SurfaceType.Smooth | |
| 1120 | o24.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1121 | o24.Position = Vector3.new(93.3648071, 2.95900393, -68.0457993) | |
| 1122 | o24.Orientation = Vector3.new(90, 0, 0) | |
| 1123 | o24.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1124 | o25.Parent = o24 | |
| 1125 | o26.Name = "part" | |
| 1126 | o26.Parent = o21 | |
| 1127 | o26.Material = Enum.Material.Metal | |
| 1128 | o26.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1129 | o26.Position = Vector3.new(93.3647842, 2.95900297, -67.445816) | |
| 1130 | o26.Rotation = Vector3.new(90, 0, 0) | |
| 1131 | o26.Anchored = true | |
| 1132 | o26.FormFactor = Enum.FormFactor.Symmetric | |
| 1133 | o26.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1134 | o26.CFrame = CFrame.new(93.3647842, 2.95900297, -67.445816, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1135 | o26.BottomSurface = Enum.SurfaceType.Smooth | |
| 1136 | o26.TopSurface = Enum.SurfaceType.Smooth | |
| 1137 | o26.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1138 | o26.Position = Vector3.new(93.3647842, 2.95900297, -67.445816) | |
| 1139 | o26.Orientation = Vector3.new(90, 0, 0) | |
| 1140 | o26.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1141 | o27.Parent = o26 | |
| 1142 | o27.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1143 | o27.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1144 | o28.Parent = o1 | |
| 1145 | o29.Name = "part" | |
| 1146 | o29.Parent = o28 | |
| 1147 | o29.Material = Enum.Material.Metal | |
| 1148 | o29.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1149 | o29.Position = Vector3.new(91.964798, 2.95901608, -68.6457977) | |
| 1150 | o29.Rotation = Vector3.new(90, 0, 0) | |
| 1151 | o29.Anchored = true | |
| 1152 | o29.FormFactor = Enum.FormFactor.Symmetric | |
| 1153 | o29.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1154 | o29.CFrame = CFrame.new(91.964798, 2.95901608, -68.6457977, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1155 | o29.BottomSurface = Enum.SurfaceType.Smooth | |
| 1156 | o29.TopSurface = Enum.SurfaceType.Smooth | |
| 1157 | o29.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1158 | o29.Position = Vector3.new(91.964798, 2.95901608, -68.6457977) | |
| 1159 | o29.Orientation = Vector3.new(90, 0, 0) | |
| 1160 | o29.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1161 | o30.Parent = o29 | |
| 1162 | o30.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1163 | o30.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1164 | o31.Name = "part" | |
| 1165 | o31.Parent = o28 | |
| 1166 | o31.Material = Enum.Material.Metal | |
| 1167 | o31.BrickColor = BrickColor.new("Mid gray")
| |
| 1168 | o31.Position = Vector3.new(91.9648132, 2.95901489, -68.0458069) | |
| 1169 | o31.Rotation = Vector3.new(90, 0, 0) | |
| 1170 | o31.Anchored = true | |
| 1171 | o31.FormFactor = Enum.FormFactor.Symmetric | |
| 1172 | o31.Size = Vector3.new(1.39999998, 1.98000002, 1.39999998) | |
| 1173 | o31.CFrame = CFrame.new(91.9648132, 2.95901489, -68.0458069, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1174 | o31.BottomSurface = Enum.SurfaceType.Smooth | |
| 1175 | o31.TopSurface = Enum.SurfaceType.Smooth | |
| 1176 | o31.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1177 | o31.Position = Vector3.new(91.9648132, 2.95901489, -68.0458069) | |
| 1178 | o31.Orientation = Vector3.new(90, 0, 0) | |
| 1179 | o31.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1180 | o32.Parent = o31 | |
| 1181 | o33.Name = "part" | |
| 1182 | o33.Parent = o28 | |
| 1183 | o33.Material = Enum.Material.Metal | |
| 1184 | o33.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1185 | o33.Position = Vector3.new(91.964798, 2.95901394, -67.4457932) | |
| 1186 | o33.Rotation = Vector3.new(90, 0, 0) | |
| 1187 | o33.Anchored = true | |
| 1188 | o33.FormFactor = Enum.FormFactor.Symmetric | |
| 1189 | o33.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1190 | o33.CFrame = CFrame.new(91.964798, 2.95901394, -67.4457932, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 1191 | o33.BottomSurface = Enum.SurfaceType.Smooth | |
| 1192 | o33.TopSurface = Enum.SurfaceType.Smooth | |
| 1193 | o33.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1194 | o33.Position = Vector3.new(91.964798, 2.95901394, -67.4457932) | |
| 1195 | o33.Orientation = Vector3.new(90, 0, 0) | |
| 1196 | o33.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1197 | o34.Parent = o33 | |
| 1198 | o34.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1199 | o34.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1200 | o35.Parent = o1 | |
| 1201 | o36.Name = "part" | |
| 1202 | o36.Parent = o35 | |
| 1203 | o36.Material = Enum.Material.Metal | |
| 1204 | o36.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1205 | o36.Position = Vector3.new(93.8072968, 1.93642402, -63.3679886) | |
| 1206 | o36.Rotation = Vector3.new(144.740005, -30, -24.7399998) | |
| 1207 | o36.Anchored = true | |
| 1208 | o36.FormFactor = Enum.FormFactor.Symmetric | |
| 1209 | o36.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1210 | o36.CFrame = CFrame.new(93.8072968, 1.93642402, -63.3679886, 0.786566317, 0.362370908, -0.500000894, 0.0794600323, -0.862374425, -0.499996632, -0.61237222, 0.353550375, -0.707108617) | |
| 1211 | o36.BottomSurface = Enum.SurfaceType.Smooth | |
| 1212 | o36.TopSurface = Enum.SurfaceType.Smooth | |
| 1213 | o36.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1214 | o36.Position = Vector3.new(93.8072968, 1.93642402, -63.3679886) | |
| 1215 | o36.Orientation = Vector3.new(30, -144.740005, 174.740005) | |
| 1216 | o36.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1217 | o37.Parent = o36 | |
| 1218 | o37.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1219 | o37.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1220 | o38.Name = "part" | |
| 1221 | o38.Parent = o35 | |
| 1222 | o38.Material = Enum.Material.Metal | |
| 1223 | o38.BrickColor = BrickColor.new("Mid gray")
| |
| 1224 | o38.Position = Vector3.new(94.0247574, 1.41898, -63.1558762) | |
| 1225 | o38.Rotation = Vector3.new(144.740005, -30, -24.7399998) | |
| 1226 | o38.Anchored = true | |
| 1227 | o38.FormFactor = Enum.FormFactor.Symmetric | |
| 1228 | o38.Size = Vector3.new(1.39999998, 1.98000002, 1.39999998) | |
| 1229 | o38.CFrame = CFrame.new(94.0247574, 1.41898, -63.1558762, 0.786566317, 0.362370908, -0.500000894, 0.0794600323, -0.862374425, -0.499996632, -0.61237222, 0.353550375, -0.707108617) | |
| 1230 | o38.BottomSurface = Enum.SurfaceType.Smooth | |
| 1231 | o38.TopSurface = Enum.SurfaceType.Smooth | |
| 1232 | o38.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1233 | o38.Position = Vector3.new(94.0247574, 1.41898, -63.1558762) | |
| 1234 | o38.Orientation = Vector3.new(30, -144.740005, 174.740005) | |
| 1235 | o38.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1236 | o39.Parent = o38 | |
| 1237 | o40.Name = "part" | |
| 1238 | o40.Parent = o35 | |
| 1239 | o40.Material = Enum.Material.Metal | |
| 1240 | o40.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1241 | o40.Position = Vector3.new(94.2421722, 0.901575983, -62.943737) | |
| 1242 | o40.Rotation = Vector3.new(144.740005, -30, -24.7399998) | |
| 1243 | o40.Anchored = true | |
| 1244 | o40.FormFactor = Enum.FormFactor.Symmetric | |
| 1245 | o40.Size = Vector3.new(1.60000002, 1, 1.60000002) | |
| 1246 | o40.CFrame = CFrame.new(94.2421722, 0.901575983, -62.943737, 0.786566317, 0.362370908, -0.500000894, 0.0794600323, -0.862374425, -0.499996632, -0.61237222, 0.353550375, -0.707108617) | |
| 1247 | o40.BottomSurface = Enum.SurfaceType.Smooth | |
| 1248 | o40.TopSurface = Enum.SurfaceType.Smooth | |
| 1249 | o40.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1250 | o40.Position = Vector3.new(94.2421722, 0.901575983, -62.943737) | |
| 1251 | o40.Orientation = Vector3.new(30, -144.740005, 174.740005) | |
| 1252 | o40.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1253 | o41.Parent = o40 | |
| 1254 | o41.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1255 | o41.Scale = Vector3.new(1, 0.100000001, 0.899999976) | |
| 1256 | o42.Parent = o1 | |
| 1257 | o42.Material = Enum.Material.Metal | |
| 1258 | o42.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1259 | o42.Position = Vector3.new(92.665802, 2.35901999, -65.4458313) | |
| 1260 | o42.Rotation = Vector3.new(-180, 0, -180) | |
| 1261 | o42.Anchored = true | |
| 1262 | o42.FormFactor = Enum.FormFactor.Symmetric | |
| 1263 | o42.Size = Vector3.new(4.88999939, 3, 1) | |
| 1264 | o42.CFrame = CFrame.new(92.665802, 2.35901999, -65.4458313, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1265 | o42.BottomSurface = Enum.SurfaceType.Smooth | |
| 1266 | o42.TopSurface = Enum.SurfaceType.Smooth | |
| 1267 | o42.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1268 | o42.Position = Vector3.new(92.665802, 2.35901999, -65.4458313) | |
| 1269 | o42.Orientation = Vector3.new(0, 180, 0) | |
| 1270 | o42.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1271 | o43.Parent = o42 | |
| 1272 | o43.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 1273 | o43.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 1274 | o44.Name = "Base" | |
| 1275 | o44.Parent = o1 | |
| 1276 | o44.Material = Enum.Material.Metal | |
| 1277 | o44.BrickColor = BrickColor.new("Mid gray")
| |
| 1278 | o44.Position = Vector3.new(90.564415, 1.25901699, -67.4453583) | |
| 1279 | o44.Anchored = true | |
| 1280 | o44.FormFactor = Enum.FormFactor.Symmetric | |
| 1281 | o44.Size = Vector3.new(9, 2, 9) | |
| 1282 | o44.CFrame = CFrame.new(90.564415, 1.25901699, -67.4453583, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1283 | o44.BottomSurface = Enum.SurfaceType.Smooth | |
| 1284 | o44.TopSurface = Enum.SurfaceType.Smooth | |
| 1285 | o44.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1286 | o44.Position = Vector3.new(90.564415, 1.25901699, -67.4453583) | |
| 1287 | o44.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1288 | o45.Parent = o44 | |
| 1289 | o46.Parent = o1 | |
| 1290 | o46.Material = Enum.Material.Metal | |
| 1291 | o46.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1292 | o46.Position = Vector3.new(92.6657944, 2.3590219, -66.6458206) | |
| 1293 | o46.Rotation = Vector3.new(-180, 0, -180) | |
| 1294 | o46.Anchored = true | |
| 1295 | o46.FormFactor = Enum.FormFactor.Symmetric | |
| 1296 | o46.Size = Vector3.new(4.88999939, 3, 1) | |
| 1297 | o46.CFrame = CFrame.new(92.6657944, 2.3590219, -66.6458206, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1298 | o46.BottomSurface = Enum.SurfaceType.Smooth | |
| 1299 | o46.TopSurface = Enum.SurfaceType.Smooth | |
| 1300 | o46.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1301 | o46.Position = Vector3.new(92.6657944, 2.3590219, -66.6458206) | |
| 1302 | o46.Orientation = Vector3.new(0, 180, 0) | |
| 1303 | o46.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1304 | o47.Parent = o46 | |
| 1305 | o47.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 1306 | o47.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 1307 | o48.Parent = o1 | |
| 1308 | o48.Material = Enum.Material.Metal | |
| 1309 | o48.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1310 | o48.Position = Vector3.new(92.6657944, 2.3590219, -67.445816) | |
| 1311 | o48.Rotation = Vector3.new(-180, 0, -180) | |
| 1312 | o48.Anchored = true | |
| 1313 | o48.FormFactor = Enum.FormFactor.Symmetric | |
| 1314 | o48.Size = Vector3.new(4.88999939, 3, 1) | |
| 1315 | o48.CFrame = CFrame.new(92.6657944, 2.3590219, -67.445816, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1316 | o48.BottomSurface = Enum.SurfaceType.Smooth | |
| 1317 | o48.TopSurface = Enum.SurfaceType.Smooth | |
| 1318 | o48.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1319 | o48.Position = Vector3.new(92.6657944, 2.3590219, -67.445816) | |
| 1320 | o48.Orientation = Vector3.new(0, 180, 0) | |
| 1321 | o48.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1322 | o49.Parent = o48 | |
| 1323 | o49.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 1324 | o49.Scale = Vector3.new(0.550000012, 0.200000003, 0.100000001) | |
| 1325 | o50.Name = "part" | |
| 1326 | o50.Parent = o1 | |
| 1327 | o50.Material = Enum.Material.Metal | |
| 1328 | o50.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1329 | o50.Position = Vector3.new(89.9648056, 5.21898699, -68.5757904) | |
| 1330 | o50.Anchored = true | |
| 1331 | o50.FormFactor = Enum.FormFactor.Symmetric | |
| 1332 | o50.Size = Vector3.new(1, 6, 1) | |
| 1333 | o50.CFrame = CFrame.new(89.9648056, 5.21898699, -68.5757904, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1334 | o50.BottomSurface = Enum.SurfaceType.Smooth | |
| 1335 | o50.TopSurface = Enum.SurfaceType.Smooth | |
| 1336 | o50.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1337 | o50.Position = Vector3.new(89.9648056, 5.21898699, -68.5757904) | |
| 1338 | o50.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1339 | o51.Parent = o50 | |
| 1340 | o51.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1341 | o51.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1342 | o52.Parent = o1 | |
| 1343 | o52.Material = Enum.Material.Metal | |
| 1344 | o52.BrickColor = BrickColor.new("Mid gray")
| |
| 1345 | o52.Position = Vector3.new(88.378273, 1.25402296, -71.8945465) | |
| 1346 | o52.Rotation = Vector3.new(0, 26.1100006, 0) | |
| 1347 | o52.Anchored = true | |
| 1348 | o52.FormFactor = Enum.FormFactor.Symmetric | |
| 1349 | o52.Size = Vector3.new(1, 1.98999989, 1) | |
| 1350 | o52.CFrame = CFrame.new(88.378273, 1.25402296, -71.8945465, 0.897973776, 0, 0.440048873, 0, 1, 0, -0.440048873, 0, 0.897973776) | |
| 1351 | o52.BottomSurface = Enum.SurfaceType.Smooth | |
| 1352 | o52.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1353 | o52.Position = Vector3.new(88.378273, 1.25402296, -71.8945465) | |
| 1354 | o52.Orientation = Vector3.new(0, 26.1100006, 0) | |
| 1355 | o52.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1356 | o53.Parent = o1 | |
| 1357 | o53.Material = Enum.Material.Metal | |
| 1358 | o53.BrickColor = BrickColor.new("Mid gray")
| |
| 1359 | o53.Position = Vector3.new(95.4406891, 1.24902296, -66.6458359) | |
| 1360 | o53.Rotation = Vector3.new(-180, -80.25, -180) | |
| 1361 | o53.Anchored = true | |
| 1362 | o53.FormFactor = Enum.FormFactor.Symmetric | |
| 1363 | o53.Size = Vector3.new(1, 1.98000002, 1) | |
| 1364 | o53.CFrame = CFrame.new(95.4406891, 1.24902296, -66.6458359, -0.169277102, 0, -0.985568583, 0, 1, 0, 0.985568583, 0, -0.169277102) | |
| 1365 | o53.BottomSurface = Enum.SurfaceType.Smooth | |
| 1366 | o53.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1367 | o53.Position = Vector3.new(95.4406891, 1.24902296, -66.6458359) | |
| 1368 | o53.Orientation = Vector3.new(0, -99.75, 0) | |
| 1369 | o53.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1370 | o54.Parent = o1 | |
| 1371 | o54.Material = Enum.Material.Metal | |
| 1372 | o54.BrickColor = BrickColor.new("Mid gray")
| |
| 1373 | o54.Position = Vector3.new(94.3906937, 1.25901306, -64.2858429) | |
| 1374 | o54.Rotation = Vector3.new(-180, -50.4099998, -180) | |
| 1375 | o54.Anchored = true | |
| 1376 | o54.FormFactor = Enum.FormFactor.Symmetric | |
| 1377 | o54.Size = Vector3.new(1, 2, 1) | |
| 1378 | o54.CFrame = CFrame.new(94.3906937, 1.25901306, -64.2858429, -0.637272, 0, -0.770639002, 0, 1, 0, 0.770639002, 0, -0.637272) | |
| 1379 | o54.BottomSurface = Enum.SurfaceType.Smooth | |
| 1380 | o54.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1381 | o54.Position = Vector3.new(94.3906937, 1.25901306, -64.2858429) | |
| 1382 | o54.Orientation = Vector3.new(0, -129.589996, 0) | |
| 1383 | o54.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1384 | o55.Parent = o1 | |
| 1385 | o55.Material = Enum.Material.Metal | |
| 1386 | o55.BrickColor = BrickColor.new("Mid gray")
| |
| 1387 | o55.Position = Vector3.new(92.7406998, 1.24901199, -62.9958649) | |
| 1388 | o55.Rotation = Vector3.new(-180, -25.8899994, -180) | |
| 1389 | o55.Anchored = true | |
| 1390 | o55.FormFactor = Enum.FormFactor.Symmetric | |
| 1391 | o55.Size = Vector3.new(1, 1.98000002, 1) | |
| 1392 | o55.CFrame = CFrame.new(92.7406998, 1.24901199, -62.9958649, -0.899600387, 0, -0.436714202, 0, 1, 0, 0.436714202, 0, -0.899600387) | |
| 1393 | o55.BottomSurface = Enum.SurfaceType.Smooth | |
| 1394 | o55.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1395 | o55.Position = Vector3.new(92.7406998, 1.24901199, -62.9958649) | |
| 1396 | o55.Orientation = Vector3.new(0, -154.110001, 0) | |
| 1397 | o55.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1398 | o56.Name = "part" | |
| 1399 | o56.Parent = o1 | |
| 1400 | o56.Material = Enum.Material.Metal | |
| 1401 | o56.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1402 | o56.Position = Vector3.new(87.1648483, 5.20898724, -68.5758209) | |
| 1403 | o56.Anchored = true | |
| 1404 | o56.FormFactor = Enum.FormFactor.Symmetric | |
| 1405 | o56.Size = Vector3.new(1, 6, 1) | |
| 1406 | o56.CFrame = CFrame.new(87.1648483, 5.20898724, -68.5758209, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1407 | o56.BottomSurface = Enum.SurfaceType.Smooth | |
| 1408 | o56.TopSurface = Enum.SurfaceType.Smooth | |
| 1409 | o56.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1410 | o56.Position = Vector3.new(87.1648483, 5.20898724, -68.5758209) | |
| 1411 | o56.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1412 | o57.Parent = o56 | |
| 1413 | o57.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1414 | o57.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1415 | o58.Name = "part" | |
| 1416 | o58.Parent = o1 | |
| 1417 | o58.Material = Enum.Material.Metal | |
| 1418 | o58.Position = Vector3.new(88.5648346, 8.31897163, -67.0458069) | |
| 1419 | o58.Anchored = true | |
| 1420 | o58.FormFactor = Enum.FormFactor.Symmetric | |
| 1421 | o58.Size = Vector3.new(5.79999971, 1, 4.79999971) | |
| 1422 | o58.CFrame = CFrame.new(88.5648346, 8.31897163, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1423 | o58.BottomSurface = Enum.SurfaceType.Smooth | |
| 1424 | o58.TopSurface = Enum.SurfaceType.Smooth | |
| 1425 | o58.Position = Vector3.new(88.5648346, 8.31897163, -67.0458069) | |
| 1426 | o59.Parent = o58 | |
| 1427 | o59.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1428 | o59.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1429 | o60.Name = "part" | |
| 1430 | o60.Parent = o1 | |
| 1431 | o60.Material = Enum.Material.Metal | |
| 1432 | o60.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1433 | o60.Position = Vector3.new(90.0848312, 5.21898413, -65.6458435) | |
| 1434 | o60.Anchored = true | |
| 1435 | o60.FormFactor = Enum.FormFactor.Symmetric | |
| 1436 | o60.Size = Vector3.new(1, 6, 1) | |
| 1437 | o60.CFrame = CFrame.new(90.0848312, 5.21898413, -65.6458435, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1438 | o60.BottomSurface = Enum.SurfaceType.Smooth | |
| 1439 | o60.TopSurface = Enum.SurfaceType.Smooth | |
| 1440 | o60.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1441 | o60.Position = Vector3.new(90.0848312, 5.21898413, -65.6458435) | |
| 1442 | o60.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1443 | o61.Parent = o60 | |
| 1444 | o61.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1445 | o61.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1446 | o62.Name = "part" | |
| 1447 | o62.Parent = o1 | |
| 1448 | o62.Material = Enum.Material.Metal | |
| 1449 | o62.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1450 | o62.Position = Vector3.new(87.0348587, 5.21898508, -65.6458435) | |
| 1451 | o62.Anchored = true | |
| 1452 | o62.FormFactor = Enum.FormFactor.Symmetric | |
| 1453 | o62.Size = Vector3.new(1, 6, 1) | |
| 1454 | o62.CFrame = CFrame.new(87.0348587, 5.21898508, -65.6458435, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1455 | o62.BottomSurface = Enum.SurfaceType.Smooth | |
| 1456 | o62.TopSurface = Enum.SurfaceType.Smooth | |
| 1457 | o62.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1458 | o62.Position = Vector3.new(87.0348587, 5.21898508, -65.6458435) | |
| 1459 | o62.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1460 | o63.Parent = o62 | |
| 1461 | o63.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1462 | o63.Scale = Vector3.new(1, 1, 0.200000003) | |
| 1463 | o64.Name = "part" | |
| 1464 | o64.Parent = o1 | |
| 1465 | o64.Material = Enum.Material.Metal | |
| 1466 | o64.BrickColor = BrickColor.new("Mid gray")
| |
| 1467 | o64.Position = Vector3.new(88.5648193, 5.25900412, -67.0458374) | |
| 1468 | o64.Anchored = true | |
| 1469 | o64.FormFactor = Enum.FormFactor.Symmetric | |
| 1470 | o64.Size = Vector3.new(5, 6, 4) | |
| 1471 | o64.CFrame = CFrame.new(88.5648193, 5.25900412, -67.0458374, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1472 | o64.BottomSurface = Enum.SurfaceType.Smooth | |
| 1473 | o64.TopSurface = Enum.SurfaceType.Smooth | |
| 1474 | o64.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1475 | o64.Position = Vector3.new(88.5648193, 5.25900412, -67.0458374) | |
| 1476 | o64.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1477 | o65.Parent = o64 | |
| 1478 | o66.Name = "part" | |
| 1479 | o66.Parent = o1 | |
| 1480 | o66.Material = Enum.Material.Metal | |
| 1481 | o66.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1482 | o66.Position = Vector3.new(88.5648346, 2.30900407, -67.0458069) | |
| 1483 | o66.Anchored = true | |
| 1484 | o66.FormFactor = Enum.FormFactor.Symmetric | |
| 1485 | o66.Size = Vector3.new(5.39999962, 1, 4.39999962) | |
| 1486 | o66.CFrame = CFrame.new(88.5648346, 2.30900407, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1487 | o66.BottomSurface = Enum.SurfaceType.Smooth | |
| 1488 | o66.TopSurface = Enum.SurfaceType.Smooth | |
| 1489 | o66.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1490 | o66.Position = Vector3.new(88.5648346, 2.30900407, -67.0458069) | |
| 1491 | o66.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1492 | o67.Parent = o66 | |
| 1493 | o67.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1494 | o67.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1495 | o68.Name = "part" | |
| 1496 | o68.Parent = o1 | |
| 1497 | o68.Material = Enum.Material.Metal | |
| 1498 | o68.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1499 | o68.Position = Vector3.new(88.5648346, 4.21899605, -67.0458069) | |
| 1500 | o68.Anchored = true | |
| 1501 | o68.FormFactor = Enum.FormFactor.Symmetric | |
| 1502 | o68.Size = Vector3.new(5.39999962, 1, 4.39999962) | |
| 1503 | o68.CFrame = CFrame.new(88.5648346, 4.21899605, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1504 | o68.BottomSurface = Enum.SurfaceType.Smooth | |
| 1505 | o68.TopSurface = Enum.SurfaceType.Smooth | |
| 1506 | o68.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1507 | o68.Position = Vector3.new(88.5648346, 4.21899605, -67.0458069) | |
| 1508 | o68.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1509 | o69.Parent = o68 | |
| 1510 | o69.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1511 | o69.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1512 | o70.Name = "part" | |
| 1513 | o70.Parent = o1 | |
| 1514 | o70.Material = Enum.Material.Metal | |
| 1515 | o70.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1516 | o70.Position = Vector3.new(88.5648346, 8.21898365, -67.0458069) | |
| 1517 | o70.Anchored = true | |
| 1518 | o70.FormFactor = Enum.FormFactor.Symmetric | |
| 1519 | o70.Size = Vector3.new(5.39999962, 1, 4.39999962) | |
| 1520 | o70.CFrame = CFrame.new(88.5648346, 8.21898365, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1521 | o70.BottomSurface = Enum.SurfaceType.Smooth | |
| 1522 | o70.TopSurface = Enum.SurfaceType.Smooth | |
| 1523 | o70.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1524 | o70.Position = Vector3.new(88.5648346, 8.21898365, -67.0458069) | |
| 1525 | o70.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1526 | o71.Parent = o70 | |
| 1527 | o71.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1528 | o71.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1529 | o72.Name = "part" | |
| 1530 | o72.Parent = o1 | |
| 1531 | o72.Material = Enum.Material.Metal | |
| 1532 | o72.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1533 | o72.Position = Vector3.new(88.5648346, 6.21899223, -67.0458069) | |
| 1534 | o72.Anchored = true | |
| 1535 | o72.FormFactor = Enum.FormFactor.Symmetric | |
| 1536 | o72.Size = Vector3.new(5.39999962, 1, 4.39999962) | |
| 1537 | o72.CFrame = CFrame.new(88.5648346, 6.21899223, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1538 | o72.BottomSurface = Enum.SurfaceType.Smooth | |
| 1539 | o72.TopSurface = Enum.SurfaceType.Smooth | |
| 1540 | o72.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1541 | o72.Position = Vector3.new(88.5648346, 6.21899223, -67.0458069) | |
| 1542 | o72.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 1543 | o73.Parent = o72 | |
| 1544 | o73.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1545 | o73.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1546 | o74.Parent = o1 | |
| 1547 | o74.Material = Enum.Material.Metal | |
| 1548 | o74.BrickColor = BrickColor.new("Mid gray")
| |
| 1549 | o74.Position = Vector3.new(85.6908493, 1.25902295, -68.2457962) | |
| 1550 | o74.Rotation = Vector3.new(0, 80.25, 0) | |
| 1551 | o74.Anchored = true | |
| 1552 | o74.FormFactor = Enum.FormFactor.Symmetric | |
| 1553 | o74.Size = Vector3.new(1, 2, 1) | |
| 1554 | o74.CFrame = CFrame.new(85.6908493, 1.25902295, -68.2457962, 0.169277102, 0, 0.985568583, 0, 1, 0, -0.985568583, 0, 0.169277102) | |
| 1555 | o74.BottomSurface = Enum.SurfaceType.Smooth | |
| 1556 | o74.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1557 | o74.Position = Vector3.new(85.6908493, 1.25902295, -68.2457962) | |
| 1558 | o74.Orientation = Vector3.new(0, 80.25, 0) | |
| 1559 | o74.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1560 | o75.Parent = o1 | |
| 1561 | o75.Material = Enum.Material.Metal | |
| 1562 | o75.BrickColor = BrickColor.new("Mid gray")
| |
| 1563 | o75.Position = Vector3.new(86.7383194, 1.25402296, -70.604599) | |
| 1564 | o75.Rotation = Vector3.new(0, 50.4199982, 0) | |
| 1565 | o75.Anchored = true | |
| 1566 | o75.FormFactor = Enum.FormFactor.Symmetric | |
| 1567 | o75.Size = Vector3.new(1, 1.98999989, 1) | |
| 1568 | o75.CFrame = CFrame.new(86.7383194, 1.25402296, -70.604599, 0.637195945, 0, 0.770701885, 0, 1, 0, -0.770701885, 0, 0.637195945) | |
| 1569 | o75.BottomSurface = Enum.SurfaceType.Smooth | |
| 1570 | o75.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1571 | o75.Position = Vector3.new(86.7383194, 1.25402296, -70.604599) | |
| 1572 | o75.Orientation = Vector3.new(0, 50.4199982, 0) | |
| 1573 | o75.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1574 | o76.Parent = o1 | |
| 1575 | o76.Material = Enum.Material.Metal | |
| 1576 | o76.BrickColor = BrickColor.new("Mid gray")
| |
| 1577 | o76.Position = Vector3.new(86.1108551, 1.25901604, -65.2858276) | |
| 1578 | o76.Rotation = Vector3.new(-180, 63.9799995, -180) | |
| 1579 | o76.Anchored = true | |
| 1580 | o76.FormFactor = Enum.FormFactor.Symmetric | |
| 1581 | o76.Size = Vector3.new(1, 2, 1) | |
| 1582 | o76.CFrame = CFrame.new(86.1108551, 1.25901604, -65.2858276, -0.438622326, 0, 0.898671627, 0, 1, 0, -0.898671627, 0, -0.438622326) | |
| 1583 | o76.BottomSurface = Enum.SurfaceType.Smooth | |
| 1584 | o76.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1585 | o76.Position = Vector3.new(86.1108551, 1.25901604, -65.2858276) | |
| 1586 | o76.Orientation = Vector3.new(0, 116.019997, 0) | |
| 1587 | o76.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1588 | o77.Parent = o1 | |
| 1589 | o77.Material = Enum.Material.Metal | |
| 1590 | o77.BrickColor = BrickColor.new("Mid gray")
| |
| 1591 | o77.Position = Vector3.new(87.4103012, 1.24901199, -63.6184311) | |
| 1592 | o77.Rotation = Vector3.new(-180, 39.6100006, -180) | |
| 1593 | o77.Anchored = true | |
| 1594 | o77.FormFactor = Enum.FormFactor.Symmetric | |
| 1595 | o77.Size = Vector3.new(1, 1.98000002, 1) | |
| 1596 | o77.CFrame = CFrame.new(87.4103012, 1.24901199, -63.6184311, -0.770391822, 0, 0.637570798, 0, 1, 0, -0.637570798, 0, -0.770391822) | |
| 1597 | o77.BottomSurface = Enum.SurfaceType.Smooth | |
| 1598 | o77.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1599 | o77.Position = Vector3.new(87.4103012, 1.24901199, -63.6184311) | |
| 1600 | o77.Orientation = Vector3.new(0, 140.389999, 0) | |
| 1601 | o77.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1602 | o78.Parent = o1 | |
| 1603 | o78.Material = Enum.Material.Metal | |
| 1604 | o78.BrickColor = BrickColor.new("Mid gray")
| |
| 1605 | o78.Position = Vector3.new(89.7603607, 1.24901199, -62.5784302) | |
| 1606 | o78.Rotation = Vector3.new(-180, 9.43999958, -180) | |
| 1607 | o78.Anchored = true | |
| 1608 | o78.FormFactor = Enum.FormFactor.Symmetric | |
| 1609 | o78.Size = Vector3.new(1, 1.98000002, 1) | |
| 1610 | o78.CFrame = CFrame.new(89.7603607, 1.24901199, -62.5784302, -0.986469984, 0, 0.163941994, 0, 1, 0, -0.163941994, 0, -0.986469984) | |
| 1611 | o78.BottomSurface = Enum.SurfaceType.Smooth | |
| 1612 | o78.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1613 | o78.Position = Vector3.new(89.7603607, 1.24901199, -62.5784302) | |
| 1614 | o78.Orientation = Vector3.new(0, 170.559998, 0) | |
| 1615 | o78.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1616 | o79.Name = "Custom Blocks" | |
| 1617 | o79.Parent = o1 | |
| 1618 | o79.Material = Enum.Material.Metal | |
| 1619 | o79.Position = Vector3.new(85.720871, 9.94890404, -69.043808) | |
| 1620 | o79.Rotation = Vector3.new(-180, 0, 0) | |
| 1621 | o79.Anchored = true | |
| 1622 | o79.Size = Vector3.new(1, 1, 1) | |
| 1623 | o79.CFrame = CFrame.new(85.720871, 9.94890404, -69.043808, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 1624 | o79.Position = Vector3.new(85.720871, 9.94890404, -69.043808) | |
| 1625 | o79.Orientation = Vector3.new(0, 180, 180) | |
| 1626 | o80.Name = "Custom Blocks" | |
| 1627 | o80.Parent = o1 | |
| 1628 | o80.Material = Enum.Material.Metal | |
| 1629 | o80.Position = Vector3.new(85.720871, 9.94889832, -65.0448532) | |
| 1630 | o80.Rotation = Vector3.new(-180, -90, 0) | |
| 1631 | o80.Anchored = true | |
| 1632 | o80.Size = Vector3.new(1, 1, 1) | |
| 1633 | o80.CFrame = CFrame.new(85.720871, 9.94889832, -65.0448532, 0, 0, -1, 0, -1, -0, -1, 0, -0) | |
| 1634 | o80.Position = Vector3.new(85.720871, 9.94889832, -65.0448532) | |
| 1635 | o80.Orientation = Vector3.new(0, -90, 180) | |
| 1636 | o81.Name = "Custom Blocks" | |
| 1637 | o81.Parent = o1 | |
| 1638 | o81.Material = Enum.Material.Metal | |
| 1639 | o81.Position = Vector3.new(92.4107971, 9.94890404, -69.0438004) | |
| 1640 | o81.Rotation = Vector3.new(180, 90, 0) | |
| 1641 | o81.Anchored = true | |
| 1642 | o81.Size = Vector3.new(1, 1, 1) | |
| 1643 | o81.CFrame = CFrame.new(92.4107971, 9.94890404, -69.0438004, 0, 0, 1, 0, -1, 0, 1, 0, -0) | |
| 1644 | o81.Position = Vector3.new(92.4107971, 9.94890404, -69.0438004) | |
| 1645 | o81.Orientation = Vector3.new(0, 90, 180) | |
| 1646 | o82.Parent = o1 | |
| 1647 | o82.Material = Enum.Material.Metal | |
| 1648 | o82.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1649 | o82.Rotation = Vector3.new(-180, -65.7799988, -180) | |
| 1650 | o82.Anchored = true | |
| 1651 | o82.FormFactor = Enum.FormFactor.Symmetric | |
| 1652 | o82.Size = Vector3.new(4.68999958, 1, 1) | |
| 1653 | o82.CFrame = CFrame.new(88.5648346, 8.8689642, -67.0458069, -0.410239846, 0, -0.911977708, 0, 1, 0, 0.911977708, 0, -0.410239816) | |
| 1654 | o82.BottomSurface = Enum.SurfaceType.Smooth | |
| 1655 | o82.TopSurface = Enum.SurfaceType.Smooth | |
| 1656 | o82.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1657 | o82.Orientation = Vector3.new(0, -114.220001, 0) | |
| 1658 | o83.Parent = o82 | |
| 1659 | o83.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1660 | o83.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1661 | o84.Name = "part" | |
| 1662 | o84.Parent = o1 | |
| 1663 | o84.Material = Enum.Material.Metal | |
| 1664 | o84.BrickColor = BrickColor.new("Really black")
| |
| 1665 | o84.Position = Vector3.new(88.5648346, 8.86894608, -67.0458069) | |
| 1666 | o84.Anchored = true | |
| 1667 | o84.FormFactor = Enum.FormFactor.Symmetric | |
| 1668 | o84.Size = Vector3.new(3.79999971, 1.05999994, 3.79999971) | |
| 1669 | o84.CFrame = CFrame.new(88.5648346, 8.86894608, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1670 | o84.BottomSurface = Enum.SurfaceType.Smooth | |
| 1671 | o84.TopSurface = Enum.SurfaceType.Smooth | |
| 1672 | o84.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1673 | o84.Position = Vector3.new(88.5648346, 8.86894608, -67.0458069) | |
| 1674 | o84.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1675 | o85.Parent = o84 | |
| 1676 | o86.Name = "Brick" | |
| 1677 | o86.Parent = o1 | |
| 1678 | o86.Material = Enum.Material.Metal | |
| 1679 | o86.Position = Vector3.new(87.4419098, 18.2672749, -65.5021515) | |
| 1680 | o86.Rotation = Vector3.new(106.620003, -7.51999998, 99.4199982) | |
| 1681 | o86.Anchored = true | |
| 1682 | o86.FormFactor = Enum.FormFactor.Custom | |
| 1683 | o86.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 1684 | o86.CFrame = CFrame.new(87.4419098, 18.2672749, -65.5021515, -0.162211388, -0.978036106, -0.130892634, -0.261595249, 0.170526385, -0.949994087, 0.951449156, -0.119858958, -0.283510894) | |
| 1685 | o86.BottomSurface = Enum.SurfaceType.Smooth | |
| 1686 | o86.TopSurface = Enum.SurfaceType.Smooth | |
| 1687 | o86.Position = Vector3.new(87.4419098, 18.2672749, -65.5021515) | |
| 1688 | o86.Orientation = Vector3.new(71.8000031, -155.220001, -56.9000015) | |
| 1689 | o87.Name = "part" | |
| 1690 | o87.Parent = o1 | |
| 1691 | o87.Material = Enum.Material.Metal | |
| 1692 | o87.Position = Vector3.new(88.5648346, 9.41897011, -67.0458069) | |
| 1693 | o87.Anchored = true | |
| 1694 | o87.FormFactor = Enum.FormFactor.Symmetric | |
| 1695 | o87.Size = Vector3.new(5.79999971, 1, 4.79999971) | |
| 1696 | o87.CFrame = CFrame.new(88.5648346, 9.41897011, -67.0458069, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1697 | o87.BottomSurface = Enum.SurfaceType.Smooth | |
| 1698 | o87.TopSurface = Enum.SurfaceType.Smooth | |
| 1699 | o87.Position = Vector3.new(88.5648346, 9.41897011, -67.0458069) | |
| 1700 | o88.Parent = o87 | |
| 1701 | o88.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1702 | o88.Scale = Vector3.new(1, 0.100000001, 1) | |
| 1703 | o89.Parent = o1 | |
| 1704 | o89.Material = Enum.Material.Metal | |
| 1705 | o89.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1706 | o89.Rotation = Vector3.new(-180, -5.78000021, -180) | |
| 1707 | o89.Anchored = true | |
| 1708 | o89.FormFactor = Enum.FormFactor.Symmetric | |
| 1709 | o89.Size = Vector3.new(4.68999958, 1, 1) | |
| 1710 | o89.CFrame = CFrame.new(88.5648346, 8.8689642, -67.0458069, -0.994915783, 0, -0.100710981, 0, 1, 0, 0.100710981, 0, -0.994915783) | |
| 1711 | o89.BottomSurface = Enum.SurfaceType.Smooth | |
| 1712 | o89.TopSurface = Enum.SurfaceType.Smooth | |
| 1713 | o89.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1714 | o89.Orientation = Vector3.new(0, -174.220001, 0) | |
| 1715 | o90.Parent = o89 | |
| 1716 | o90.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1717 | o90.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1718 | o91.Parent = o1 | |
| 1719 | o91.Material = Enum.Material.Metal | |
| 1720 | o91.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1721 | o91.Rotation = Vector3.new(-180, 24.2199993, -180) | |
| 1722 | o91.Anchored = true | |
| 1723 | o91.FormFactor = Enum.FormFactor.Symmetric | |
| 1724 | o91.Size = Vector3.new(4.68999958, 1, 1) | |
| 1725 | o91.CFrame = CFrame.new(88.5648346, 8.8689642, -67.0458069, -0.911977708, 0, 0.410239816, 0, 1, 0, -0.410239846, 0, -0.911977708) | |
| 1726 | o91.BottomSurface = Enum.SurfaceType.Smooth | |
| 1727 | o91.TopSurface = Enum.SurfaceType.Smooth | |
| 1728 | o91.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1729 | o91.Orientation = Vector3.new(0, 155.779999, 0) | |
| 1730 | o92.Parent = o91 | |
| 1731 | o92.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1732 | o92.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1733 | o93.Parent = o1 | |
| 1734 | o93.Material = Enum.Material.Metal | |
| 1735 | o93.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1736 | o93.Rotation = Vector3.new(-180, -35.7799988, -180) | |
| 1737 | o93.Anchored = true | |
| 1738 | o93.FormFactor = Enum.FormFactor.Symmetric | |
| 1739 | o93.Size = Vector3.new(4.68999958, 1, 1) | |
| 1740 | o93.CFrame = CFrame.new(88.5648346, 8.8689642, -67.0458069, -0.811266899, 0, -0.584675968, 0, 1, 0, 0.584675968, 0, -0.811266899) | |
| 1741 | o93.BottomSurface = Enum.SurfaceType.Smooth | |
| 1742 | o93.TopSurface = Enum.SurfaceType.Smooth | |
| 1743 | o93.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1744 | o93.Orientation = Vector3.new(0, -144.220001, 0) | |
| 1745 | o94.Parent = o93 | |
| 1746 | o94.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1747 | o94.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1748 | o95.Parent = o1 | |
| 1749 | o95.Material = Enum.Material.Metal | |
| 1750 | o95.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1751 | o95.Rotation = Vector3.new(-180, 54.2200012, -180) | |
| 1752 | o95.Anchored = true | |
| 1753 | o95.FormFactor = Enum.FormFactor.Symmetric | |
| 1754 | o95.Size = Vector3.new(4.68999958, 1, 1) | |
| 1755 | o95.CFrame = CFrame.new(88.5648346, 8.8689642, -67.0458069, -0.584675968, 0, 0.811266899, 0, 1, 0, -0.811266899, 0, -0.584675968) | |
| 1756 | o95.BottomSurface = Enum.SurfaceType.Smooth | |
| 1757 | o95.TopSurface = Enum.SurfaceType.Smooth | |
| 1758 | o95.Position = Vector3.new(88.5648346, 8.8689642, -67.0458069) | |
| 1759 | o95.Orientation = Vector3.new(0, 125.779999, 0) | |
| 1760 | o96.Parent = o95 | |
| 1761 | o96.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1762 | o96.Scale = Vector3.new(1, 1, 0.600000024) | |
| 1763 | o97.Name = "Brick" | |
| 1764 | o97.Parent = o1 | |
| 1765 | o97.Material = Enum.Material.Metal | |
| 1766 | o97.Position = Vector3.new(83.3240356, 11.6269522, -71.1702728) | |
| 1767 | o97.Rotation = Vector3.new(-18.8899994, 38.0499992, 57.2200012) | |
| 1768 | o97.Anchored = true | |
| 1769 | o97.FormFactor = Enum.FormFactor.Custom | |
| 1770 | o97.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 1771 | o97.CFrame = CFrame.new(83.3240356, 11.6269522, -71.1702728, 0.426297933, -0.662110329, 0.616344213, 0.687462091, 0.679983199, 0.254987776, -0.58793366, 0.315012515, 0.745051146) | |
| 1772 | o97.BottomSurface = Enum.SurfaceType.Smooth | |
| 1773 | o97.TopSurface = Enum.SurfaceType.Smooth | |
| 1774 | o97.Position = Vector3.new(83.3240356, 11.6269522, -71.1702728) | |
| 1775 | o97.Orientation = Vector3.new(-14.7700005, 39.5999985, 45.3100014) | |
| 1776 | o98.Parent = o1 | |
| 1777 | o98.Material = Enum.Material.Metal | |
| 1778 | o98.Position = Vector3.new(89.0648346, 9.94890022, -67.0458069) | |
| 1779 | o98.Rotation = Vector3.new(-180, 0, -180) | |
| 1780 | o98.Anchored = true | |
| 1781 | o98.FormFactor = Enum.FormFactor.Symmetric | |
| 1782 | o98.Size = Vector3.new(5.68999958, 1, 3) | |
| 1783 | o98.CFrame = CFrame.new(89.0648346, 9.94890022, -67.0458069, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1784 | o98.BottomSurface = Enum.SurfaceType.Smooth | |
| 1785 | o98.TopSurface = Enum.SurfaceType.Smooth | |
| 1786 | o98.Position = Vector3.new(89.0648346, 9.94890022, -67.0458069) | |
| 1787 | o98.Orientation = Vector3.new(0, 180, 0) | |
| 1788 | o99.Parent = o98 | |
| 1789 | o100.Name = "part" | |
| 1790 | o100.Parent = o1 | |
| 1791 | o100.Material = Enum.Material.Metal | |
| 1792 | o100.Position = Vector3.new(90.9817429, 9.3989563, -70.0457764) | |
| 1793 | o100.Rotation = Vector3.new(-180, 0, 120) | |
| 1794 | o100.Anchored = true | |
| 1795 | o100.FormFactor = Enum.FormFactor.Symmetric | |
| 1796 | o100.Size = Vector3.new(1, 2.4000001, 1) | |
| 1797 | o100.CFrame = CFrame.new(90.9817429, 9.3989563, -70.0457764, -0.49999705, -0.866027176, 0, -0.866027117, 0.499997079, 0, 0, 0, -1) | |
| 1798 | o100.BottomSurface = Enum.SurfaceType.Smooth | |
| 1799 | o100.TopSurface = Enum.SurfaceType.Smooth | |
| 1800 | o100.Position = Vector3.new(90.9817429, 9.3989563, -70.0457764) | |
| 1801 | o100.Orientation = Vector3.new(0, 180, -60) | |
| 1802 | o101.Parent = o100 | |
| 1803 | o101.Scale = Vector3.new(1, 1, 0.300000012) | |
| 1804 | o101.Scale = Vector3.new(1, 1, 0.300000012) | |
| 1805 | o102.Parent = o1 | |
| 1806 | o102.BrickColor = BrickColor.new("Reddish brown")
| |
| 1807 | o102.Reflectance = 0.20000000298023 | |
| 1808 | o102.Position = Vector3.new(93.4327469, 9.14897633, -70.0458069) | |
| 1809 | o102.Rotation = Vector3.new(-180, 0, -150) | |
| 1810 | o102.Anchored = true | |
| 1811 | o102.FormFactor = Enum.FormFactor.Symmetric | |
| 1812 | o102.Size = Vector3.new(2.68999958, 3, 1) | |
| 1813 | o102.CFrame = CFrame.new(93.4327469, 9.14897633, -70.0458069, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 1814 | o102.BottomSurface = Enum.SurfaceType.Smooth | |
| 1815 | o102.TopSurface = Enum.SurfaceType.Smooth | |
| 1816 | o102.Color = Color3.new(0.411765, 0.25098, 0.156863) | |
| 1817 | o102.Position = Vector3.new(93.4327469, 9.14897633, -70.0458069) | |
| 1818 | o102.Orientation = Vector3.new(0, 180, 30) | |
| 1819 | o102.Color = Color3.new(0.411765, 0.25098, 0.156863) | |
| 1820 | o103.Parent = o102 | |
| 1821 | o104.Parent = o1 | |
| 1822 | o104.Material = Enum.Material.Metal | |
| 1823 | o104.Position = Vector3.new(89.0658417, 9.94890404, -69.0447998) | |
| 1824 | o104.Rotation = Vector3.new(0, 0, -180) | |
| 1825 | o104.Anchored = true | |
| 1826 | o104.FormFactor = Enum.FormFactor.Symmetric | |
| 1827 | o104.Size = Vector3.new(5.68999958, 1, 1) | |
| 1828 | o104.CFrame = CFrame.new(89.0658417, 9.94890404, -69.0447998, -1, 0, 0, 0, -1, 0, 0, 0, 1) | |
| 1829 | o104.BottomSurface = Enum.SurfaceType.Smooth | |
| 1830 | o104.Position = Vector3.new(89.0658417, 9.94890404, -69.0447998) | |
| 1831 | o104.Orientation = Vector3.new(0, 0, 180) | |
| 1832 | o105.Parent = o1 | |
| 1833 | o105.Material = Enum.Material.Metal | |
| 1834 | o105.Position = Vector3.new(85.7218552, 9.94890213, -67.0438232) | |
| 1835 | o105.Rotation = Vector3.new(180, 90, 0) | |
| 1836 | o105.Anchored = true | |
| 1837 | o105.FormFactor = Enum.FormFactor.Symmetric | |
| 1838 | o105.Size = Vector3.new(2.99999952, 1, 1) | |
| 1839 | o105.CFrame = CFrame.new(85.7218552, 9.94890213, -67.0438232, 0, 0, 1, 0, -1, 0, 1, 0, -0) | |
| 1840 | o105.BottomSurface = Enum.SurfaceType.Smooth | |
| 1841 | o105.Position = Vector3.new(85.7218552, 9.94890213, -67.0438232) | |
| 1842 | o105.Orientation = Vector3.new(0, 90, 180) | |
| 1843 | o106.Parent = o1 | |
| 1844 | o106.Material = Enum.Material.Metal | |
| 1845 | o106.Position = Vector3.new(92.4098053, 9.94890213, -67.046814) | |
| 1846 | o106.Rotation = Vector3.new(-180, -90, 0) | |
| 1847 | o106.Anchored = true | |
| 1848 | o106.FormFactor = Enum.FormFactor.Symmetric | |
| 1849 | o106.Size = Vector3.new(2.99999952, 1, 1) | |
| 1850 | o106.CFrame = CFrame.new(92.4098053, 9.94890213, -67.046814, 0, 0, -1, 0, -1, -0, -1, 0, -0) | |
| 1851 | o106.BottomSurface = Enum.SurfaceType.Smooth | |
| 1852 | o106.Position = Vector3.new(92.4098053, 9.94890213, -67.046814) | |
| 1853 | o106.Orientation = Vector3.new(0, -90, 180) | |
| 1854 | o107.Name = "Custom Blocks" | |
| 1855 | o107.Parent = o1 | |
| 1856 | o107.Material = Enum.Material.Metal | |
| 1857 | o107.Position = Vector3.new(86.7198257, 13.9489555, -69.0457993) | |
| 1858 | o107.Rotation = Vector3.new(0, -90, 0) | |
| 1859 | o107.Anchored = true | |
| 1860 | o107.Size = Vector3.new(1, 1, 1) | |
| 1861 | o107.CFrame = CFrame.new(86.7198257, 13.9489555, -69.0457993, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 1862 | o107.Position = Vector3.new(86.7198257, 13.9489555, -69.0457993) | |
| 1863 | o107.Orientation = Vector3.new(0, -90, 0) | |
| 1864 | o108.Name = "Custom Blocks" | |
| 1865 | o108.Parent = o1 | |
| 1866 | o108.Material = Enum.Material.Metal | |
| 1867 | o108.Position = Vector3.new(90.4098053, 13.9489555, -69.0457993) | |
| 1868 | o108.Rotation = Vector3.new(-180, 0, -180) | |
| 1869 | o108.Anchored = true | |
| 1870 | o108.Size = Vector3.new(1, 1, 1) | |
| 1871 | o108.CFrame = CFrame.new(90.4098053, 13.9489555, -69.0457993, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1872 | o108.Position = Vector3.new(90.4098053, 13.9489555, -69.0457993) | |
| 1873 | o108.Orientation = Vector3.new(0, 180, 0) | |
| 1874 | o109.Name = "Custom Blocks" | |
| 1875 | o109.Parent = o1 | |
| 1876 | o109.Material = Enum.Material.Metal | |
| 1877 | o109.Position = Vector3.new(92.4107895, 9.94889832, -65.0468369) | |
| 1878 | o109.Rotation = Vector3.new(0, 0, -180) | |
| 1879 | o109.Anchored = true | |
| 1880 | o109.Size = Vector3.new(1, 1, 1) | |
| 1881 | o109.CFrame = CFrame.new(92.4107895, 9.94889832, -65.0468369, -1, 0, 0, 0, -1, 0, 0, 0, 1) | |
| 1882 | o109.Position = Vector3.new(92.4107895, 9.94889832, -65.0468369) | |
| 1883 | o109.Orientation = Vector3.new(0, 0, 180) | |
| 1884 | o110.Name = "part" | |
| 1885 | o110.Parent = o1 | |
| 1886 | o110.Material = Enum.Material.Metal | |
| 1887 | o110.Position = Vector3.new(81.0729141, 9.58197021, -70.9247971) | |
| 1888 | o110.Rotation = Vector3.new(-114.879997, -41.4700012, -70.3000031) | |
| 1889 | o110.Anchored = true | |
| 1890 | o110.FormFactor = Enum.FormFactor.Symmetric | |
| 1891 | o110.Size = Vector3.new(1, 1, 1) | |
| 1892 | o110.CFrame = CFrame.new(81.0729141, 9.58197021, -70.9247971, 0.252617985, 0.705396175, -0.662269175, 0.598638713, 0.4237881, 0.679731846, 0.760141969, -0.568172455, -0.315220982) | |
| 1893 | o110.BottomSurface = Enum.SurfaceType.Smooth | |
| 1894 | o110.TopSurface = Enum.SurfaceType.Smooth | |
| 1895 | o110.Position = Vector3.new(81.0729141, 9.58197021, -70.9247971) | |
| 1896 | o110.Orientation = Vector3.new(-42.8199997, -115.449997, 54.7000008) | |
| 1897 | o111.Parent = o110 | |
| 1898 | o111.Scale = Vector3.new(1, 0.200000003, 0.5) | |
| 1899 | o111.Scale = Vector3.new(1, 0.200000003, 0.5) | |
| 1900 | o112.Name = "part" | |
| 1901 | o112.Parent = o1 | |
| 1902 | o112.Material = Enum.Material.Metal | |
| 1903 | o112.BrickColor = BrickColor.new("Mid gray")
| |
| 1904 | o112.Position = Vector3.new(80.5299149, 10.5789661, -67.0458374) | |
| 1905 | o112.Anchored = true | |
| 1906 | o112.FormFactor = Enum.FormFactor.Symmetric | |
| 1907 | o112.Size = Vector3.new(1, 4, 1) | |
| 1908 | o112.CFrame = CFrame.new(80.5299149, 10.5789661, -67.0458374, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1909 | o112.BottomSurface = Enum.SurfaceType.Smooth | |
| 1910 | o112.TopSurface = Enum.SurfaceType.Smooth | |
| 1911 | o112.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1912 | o112.Position = Vector3.new(80.5299149, 10.5789661, -67.0458374) | |
| 1913 | o112.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1914 | o113.Parent = o112 | |
| 1915 | o113.Scale = Vector3.new(1, 1, 0.300000012) | |
| 1916 | o113.Scale = Vector3.new(1, 1, 0.300000012) | |
| 1917 | o114.Name = "part" | |
| 1918 | o114.Parent = o1 | |
| 1919 | o114.Material = Enum.Material.Metal | |
| 1920 | o114.Position = Vector3.new(80.5299149, 8.57896614, -67.0458374) | |
| 1921 | o114.Rotation = Vector3.new(-90, 0, 0) | |
| 1922 | o114.Anchored = true | |
| 1923 | o114.FormFactor = Enum.FormFactor.Symmetric | |
| 1924 | o114.Size = Vector3.new(1, 1, 1) | |
| 1925 | o114.CFrame = CFrame.new(80.5299149, 8.57896614, -67.0458374, 1, 0, -0, 0, 0, 1, 0, -1, 0) | |
| 1926 | o114.BottomSurface = Enum.SurfaceType.Smooth | |
| 1927 | o114.TopSurface = Enum.SurfaceType.Smooth | |
| 1928 | o114.Position = Vector3.new(80.5299149, 8.57896614, -67.0458374) | |
| 1929 | o114.Orientation = Vector3.new(-90, 0, 0) | |
| 1930 | o115.Parent = o114 | |
| 1931 | o115.Scale = Vector3.new(1, 0.300000012, 1) | |
| 1932 | o115.Scale = Vector3.new(1, 0.300000012, 1) | |
| 1933 | o116.Name = "part" | |
| 1934 | o116.Parent = o1 | |
| 1935 | o116.Material = Enum.Material.Metal | |
| 1936 | o116.BrickColor = BrickColor.new("Really black")
| |
| 1937 | o116.Position = Vector3.new(80.5299149, 8.57896614, -67.0458374) | |
| 1938 | o116.Rotation = Vector3.new(-90, 0, 0) | |
| 1939 | o116.Anchored = true | |
| 1940 | o116.FormFactor = Enum.FormFactor.Symmetric | |
| 1941 | o116.Size = Vector3.new(1, 1.01999998, 1) | |
| 1942 | o116.CFrame = CFrame.new(80.5299149, 8.57896614, -67.0458374, 1, 0, -0, 0, 0, 1, 0, -1, 0) | |
| 1943 | o116.BottomSurface = Enum.SurfaceType.Smooth | |
| 1944 | o116.TopSurface = Enum.SurfaceType.Smooth | |
| 1945 | o116.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1946 | o116.Position = Vector3.new(80.5299149, 8.57896614, -67.0458374) | |
| 1947 | o116.Orientation = Vector3.new(-90, 0, 0) | |
| 1948 | o116.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1949 | o117.Parent = o116 | |
| 1950 | o117.Scale = Vector3.new(1, 0.300000012, 0.5) | |
| 1951 | o117.Scale = Vector3.new(1, 0.300000012, 0.5) | |
| 1952 | o118.Name = "part" | |
| 1953 | o118.Parent = o1 | |
| 1954 | o118.Material = Enum.Material.Metal | |
| 1955 | o118.BrickColor = BrickColor.new("Mid gray")
| |
| 1956 | o118.Position = Vector3.new(80.7649155, 13.1859465, -65.0728226) | |
| 1957 | o118.Rotation = Vector3.new(-32.4599991, 56.6599998, 4.71999979) | |
| 1958 | o118.Anchored = true | |
| 1959 | o118.FormFactor = Enum.FormFactor.Symmetric | |
| 1960 | o118.Size = Vector3.new(1, 8, 1) | |
| 1961 | o118.CFrame = CFrame.new(80.7649155, 13.1859465, -65.0728226, 0.54768616, -0.0451996364, 0.835462213, -0.377426535, 0.877824366, 0.294912994, -0.746719003, -0.476845324, 0.463712692) | |
| 1962 | o118.BottomSurface = Enum.SurfaceType.Smooth | |
| 1963 | o118.TopSurface = Enum.SurfaceType.Smooth | |
| 1964 | o118.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1965 | o118.Position = Vector3.new(80.7649155, 13.1859465, -65.0728226) | |
| 1966 | o118.Orientation = Vector3.new(-17.1499996, 60.9700012, -23.2700005) | |
| 1967 | o118.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 1968 | o119.Parent = o118 | |
| 1969 | o119.Scale = Vector3.new(1, 1, 0.100000001) | |
| 1970 | o119.Scale = Vector3.new(1, 1, 0.100000001) | |
| 1971 | o120.Name = "Brick" | |
| 1972 | o120.Parent = o1 | |
| 1973 | o120.Material = Enum.Material.Metal | |
| 1974 | o120.Position = Vector3.new(82.9101028, 10.9583683, -63.6649551) | |
| 1975 | o120.Rotation = Vector3.new(-148.619995, 43.75, 119.239998) | |
| 1976 | o120.Anchored = true | |
| 1977 | o120.FormFactor = Enum.FormFactor.Custom | |
| 1978 | o120.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 1979 | o120.CFrame = CFrame.new(82.9101028, 10.9583683, -63.6649551, -0.352903485, -0.630350173, 0.691460669, -0.569090962, 0.731204569, 0.37613228, -0.742694259, -0.260765612, -0.616771102) | |
| 1980 | o120.BottomSurface = Enum.SurfaceType.Smooth | |
| 1981 | o120.TopSurface = Enum.SurfaceType.Smooth | |
| 1982 | o120.Position = Vector3.new(82.9101028, 10.9583683, -63.6649551) | |
| 1983 | o120.Orientation = Vector3.new(-22.0900002, 131.729996, -37.8899994) | |
| 1984 | o121.Name = "Brick" | |
| 1985 | o121.Parent = o1 | |
| 1986 | o121.Material = Enum.Material.Metal | |
| 1987 | o121.Position = Vector3.new(82.5809555, 10.4277515, -64.5232925) | |
| 1988 | o121.Rotation = Vector3.new(-134.300003, 48.6899986, 113.550003) | |
| 1989 | o121.Anchored = true | |
| 1990 | o121.FormFactor = Enum.FormFactor.Custom | |
| 1991 | o121.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 1992 | o121.CFrame = CFrame.new(82.5809555, 10.4277515, -64.5232925, -0.263786912, -0.605100751, 0.751178861, -0.425378084, 0.771920919, 0.47243166, -0.865719318, -0.19491376, -0.461019218) | |
| 1993 | o121.BottomSurface = Enum.SurfaceType.Smooth | |
| 1994 | o121.TopSurface = Enum.SurfaceType.Smooth | |
| 1995 | o121.Position = Vector3.new(82.5809555, 10.4277515, -64.5232925) | |
| 1996 | o121.Orientation = Vector3.new(-28.1900005, 121.540001, -28.8600006) | |
| 1997 | o122.Name = "Brick" | |
| 1998 | o122.Parent = o1 | |
| 1999 | o122.Material = Enum.Material.Metal | |
| 2000 | o122.Position = Vector3.new(82.2363358, 9.87277412, -67.5929337) | |
| 2001 | o122.Rotation = Vector3.new(-80.5100021, 54.4599991, 84.5800018) | |
| 2002 | o122.Anchored = true | |
| 2003 | o122.FormFactor = Enum.FormFactor.Custom | |
| 2004 | o122.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2005 | o122.CFrame = CFrame.new(82.2363358, 9.87277412, -67.5929337, 0.0548584759, -0.57865566, 0.813724935, 0.0884757638, 0.814563572, 0.573287308, -0.994566619, 0.0405452624, 0.0958827063) | |
| 2006 | o122.BottomSurface = Enum.SurfaceType.Smooth | |
| 2007 | o122.TopSurface = Enum.SurfaceType.Smooth | |
| 2008 | o122.Position = Vector3.new(82.2363358, 9.87277412, -67.5929337) | |
| 2009 | o122.Orientation = Vector3.new(-34.9799995, 83.2799988, 6.19999981) | |
| 2010 | o123.Name = "Brick" | |
| 2011 | o123.Parent = o1 | |
| 2012 | o123.Material = Enum.Material.Metal | |
| 2013 | o123.Position = Vector3.new(82.2366028, 9.87322807, -66.5314713) | |
| 2014 | o123.Rotation = Vector3.new(-99.5800018, 54.4599991, 95.4599991) | |
| 2015 | o123.Anchored = true | |
| 2016 | o123.FormFactor = Enum.FormFactor.Custom | |
| 2017 | o123.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2018 | o123.CFrame = CFrame.new(82.2366028, 9.87322807, -66.5314713, -0.055348482, -0.57867533, 0.813677728, -0.0892447755, 0.81453228, 0.573212504, -0.994470656, -0.0408900492, -0.096726872) | |
| 2019 | o123.BottomSurface = Enum.SurfaceType.Smooth | |
| 2020 | o123.TopSurface = Enum.SurfaceType.Smooth | |
| 2021 | o123.Position = Vector3.new(82.2366028, 9.87322807, -66.5314713) | |
| 2022 | o123.Orientation = Vector3.new(-34.9700012, 96.7799988, -6.25) | |
| 2023 | o124.Name = "Brick" | |
| 2024 | o124.Parent = o1 | |
| 2025 | o124.Material = Enum.Material.Metal | |
| 2026 | o124.Position = Vector3.new(82.3532181, 10.0608482, -65.493103) | |
| 2027 | o124.Rotation = Vector3.new(-117.870003, 52.4199982, 105.519997) | |
| 2028 | o124.Anchored = true | |
| 2029 | o124.FormFactor = Enum.FormFactor.Custom | |
| 2030 | o124.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2031 | o124.CFrame = CFrame.new(82.3532181, 10.0608482, -65.493103, -0.163134396, -0.587621033, 0.792520523, -0.263064265, 0.800107598, 0.539096653, -0.95088619, -0.120538607, -0.285107106) | |
| 2032 | o124.BottomSurface = Enum.SurfaceType.Smooth | |
| 2033 | o124.TopSurface = Enum.SurfaceType.Smooth | |
| 2034 | o124.Position = Vector3.new(82.3532181, 10.0608482, -65.493103) | |
| 2035 | o124.Orientation = Vector3.new(-32.6199989, 109.790001, -18.2000008) | |
| 2036 | o125.Name = "Brick" | |
| 2037 | o125.Parent = o1 | |
| 2038 | o125.Material = Enum.Material.Metal | |
| 2039 | o125.Position = Vector3.new(84.5859222, 11.6889381, -68.3721466) | |
| 2040 | o125.Rotation = Vector3.new(-51.5499992, 38.0400009, 70.4599991) | |
| 2041 | o125.Anchored = true | |
| 2042 | o125.FormFactor = Enum.FormFactor.Custom | |
| 2043 | o125.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2044 | o125.CFrame = CFrame.new(84.5859222, 11.6889381, -68.3721466, 0.263360947, -0.742226183, 0.61623162, 0.424709141, 0.662753046, 0.616750062, -0.86617738, 0.0992912799, 0.489773482) | |
| 2045 | o125.BottomSurface = Enum.SurfaceType.Smooth | |
| 2046 | o125.TopSurface = Enum.SurfaceType.Smooth | |
| 2047 | o125.Position = Vector3.new(84.5859222, 11.6889381, -68.3721466) | |
| 2048 | o125.Orientation = Vector3.new(-38.0800018, 51.5200005, 32.6500015) | |
| 2049 | o126.Name = "Brick" | |
| 2050 | o126.Parent = o1 | |
| 2051 | o126.Material = Enum.Material.Metal | |
| 2052 | o126.Position = Vector3.new(83.8106537, 12.4112415, -62.4256134) | |
| 2053 | o126.Rotation = Vector3.new(-172.380005, 31.8700008, 124.550003) | |
| 2054 | o126.Anchored = true | |
| 2055 | o126.FormFactor = Enum.FormFactor.Custom | |
| 2056 | o126.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2057 | o126.CFrame = CFrame.new(83.8106537, 12.4112415, -62.4256134, -0.481617004, -0.69944936, 0.528030038, -0.776659191, 0.619777501, 0.112589471, -0.406011701, -0.355874389, -0.841729164) | |
| 2058 | o126.BottomSurface = Enum.SurfaceType.Smooth | |
| 2059 | o126.TopSurface = Enum.SurfaceType.Smooth | |
| 2060 | o126.Position = Vector3.new(83.8106537, 12.4112415, -62.4256134) | |
| 2061 | o126.Orientation = Vector3.new(-6.46000004, 147.899994, -51.4099998) | |
| 2062 | o127.Name = "Brick" | |
| 2063 | o127.Parent = o1 | |
| 2064 | o127.Material = Enum.Material.Metal | |
| 2065 | o127.Position = Vector3.new(85.2205048, 12.7122517, -64.6732712) | |
| 2066 | o127.Rotation = Vector3.new(-165.389999, 22.2399998, 121.360001) | |
| 2067 | o127.Anchored = true | |
| 2068 | o127.FormFactor = Enum.FormFactor.Custom | |
| 2069 | o127.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2070 | o127.CFrame = CFrame.new(85.2205048, 12.7122517, -64.6732712, -0.481617004, -0.790410101, 0.37854591, -0.776659191, 0.585055232, 0.23347564, -0.406011701, -0.181555301, -0.895651817) | |
| 2071 | o127.BottomSurface = Enum.SurfaceType.Smooth | |
| 2072 | o127.TopSurface = Enum.SurfaceType.Smooth | |
| 2073 | o127.Position = Vector3.new(85.2205048, 12.7122517, -64.6732712) | |
| 2074 | o127.Orientation = Vector3.new(-13.5, 157.089996, -53.0099983) | |
| 2075 | o128.Name = "Brick" | |
| 2076 | o128.Parent = o1 | |
| 2077 | o128.Material = Enum.Material.Metal | |
| 2078 | o128.Position = Vector3.new(83.3259811, 11.6292744, -62.9553032) | |
| 2079 | o128.Rotation = Vector3.new(-161.160004, 38.0200005, 122.790001) | |
| 2080 | o128.Anchored = true | |
| 2081 | o128.FormFactor = Enum.FormFactor.Custom | |
| 2082 | o128.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2083 | o128.CFrame = CFrame.new(83.3259811, 11.6292744, -62.9553032, -0.426587373, -0.66226536, 0.615977168, -0.687916875, 0.679739356, 0.254410714, -0.587191284, -0.315212667, -0.745551705) | |
| 2084 | o128.BottomSurface = Enum.SurfaceType.Smooth | |
| 2085 | o128.TopSurface = Enum.SurfaceType.Smooth | |
| 2086 | o128.Position = Vector3.new(83.3259811, 11.6292744, -62.9553032) | |
| 2087 | o128.Orientation = Vector3.new(-14.7399998, 140.440002, -45.3400002) | |
| 2088 | o129.Name = "Brick" | |
| 2089 | o129.Parent = o1 | |
| 2090 | o129.Material = Enum.Material.Metal | |
| 2091 | o129.Position = Vector3.new(84.9707184, 12.3093863, -64.9464874) | |
| 2092 | o129.Rotation = Vector3.new(-154.149994, 28.1700001, 118.940002) | |
| 2093 | o129.Anchored = true | |
| 2094 | o129.FormFactor = Enum.FormFactor.Custom | |
| 2095 | o129.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2096 | o129.CFrame = CFrame.new(84.9707184, 12.3093863, -64.9464874, -0.426587373, -0.771439731, 0.472127169, -0.687916875, 0.615646422, 0.384382516, -0.587191284, -0.160811514, -0.793313324) | |
| 2097 | o129.BottomSurface = Enum.SurfaceType.Smooth | |
| 2098 | o129.TopSurface = Enum.SurfaceType.Smooth | |
| 2099 | o129.Position = Vector3.new(84.9707184, 12.3093863, -64.9464874) | |
| 2100 | o129.Orientation = Vector3.new(-22.6100006, 149.240005, -48.1699982) | |
| 2101 | o130.Name = "Brick" | |
| 2102 | o130.Parent = o1 | |
| 2103 | o130.Material = Enum.Material.Metal | |
| 2104 | o130.Position = Vector3.new(84.7561646, 11.9635563, -65.3123322) | |
| 2105 | o130.Rotation = Vector3.new(-141.940002, 33.5299988, 115.050003) | |
| 2106 | o130.Anchored = true | |
| 2107 | o130.FormFactor = Enum.FormFactor.Custom | |
| 2108 | o130.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2109 | o130.CFrame = CFrame.new(84.7561646, 11.9635563, -65.3123322, -0.352903485, -0.75515753, 0.55244571, -0.569090962, 0.641902745, 0.513903081, -0.742694259, -0.133033663, -0.656282961) | |
| 2110 | o130.BottomSurface = Enum.SurfaceType.Smooth | |
| 2111 | o130.TopSurface = Enum.SurfaceType.Smooth | |
| 2112 | o130.Position = Vector3.new(84.7561646, 11.9635563, -65.3123322) | |
| 2113 | o130.Orientation = Vector3.new(-30.9200001, 139.910004, -41.5600014) | |
| 2114 | o131.Name = "Brick" | |
| 2115 | o131.Parent = o1 | |
| 2116 | o131.Material = Enum.Material.Metal | |
| 2117 | o131.Position = Vector3.new(84.5865097, 11.6899242, -65.7547913) | |
| 2118 | o131.Rotation = Vector3.new(-128.520004, 38.0200005, 109.559998) | |
| 2119 | o131.Anchored = true | |
| 2120 | o131.FormFactor = Enum.FormFactor.Custom | |
| 2121 | o131.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2122 | o131.CFrame = CFrame.new(84.5865097, 11.6899242, -65.7547913, -0.263786912, -0.74227488, 0.615990758, -0.425378084, 0.662676513, 0.616371214, -0.865719318, -0.0994382948, -0.490552872) | |
| 2123 | o131.BottomSurface = Enum.SurfaceType.Smooth | |
| 2124 | o131.TopSurface = Enum.SurfaceType.Smooth | |
| 2125 | o131.Position = Vector3.new(84.5865097, 11.6899242, -65.7547913) | |
| 2126 | o131.Orientation = Vector3.new(-38.0499992, 128.529999, -32.7000008) | |
| 2127 | o132.Name = "Brick" | |
| 2128 | o132.Parent = o1 | |
| 2129 | o132.Material = Enum.Material.Metal | |
| 2130 | o132.Position = Vector3.new(84.4686966, 11.4999342, -67.8721848) | |
| 2131 | o132.Rotation = Vector3.new(-66.25, 41.3100014, 77.4899979) | |
| 2132 | o132.Anchored = true | |
| 2133 | o132.FormFactor = Enum.FormFactor.Custom | |
| 2134 | o132.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2135 | o132.CFrame = CFrame.new(84.4686966, 11.4999342, -67.8721848, 0.162666455, -0.733327091, 0.660129607, 0.262328357, 0.677104175, 0.687541902, -0.95116955, 0.0613307282, 0.302514613) | |
| 2136 | o132.BottomSurface = Enum.SurfaceType.Smooth | |
| 2137 | o132.TopSurface = Enum.SurfaceType.Smooth | |
| 2138 | o132.Position = Vector3.new(84.4686966, 11.4999342, -67.8721848) | |
| 2139 | o132.Orientation = Vector3.new(-43.4399986, 65.3799973, 21.1800003) | |
| 2140 | o133.Name = "Brick" | |
| 2141 | o133.Parent = o1 | |
| 2142 | o133.Material = Enum.Material.Metal | |
| 2143 | o133.Position = Vector3.new(84.4088821, 11.4034462, -67.3369293) | |
| 2144 | o133.Rotation = Vector3.new(-81.9800034, 43.0400009, 85.6999969) | |
| 2145 | o133.Anchored = true | |
| 2146 | o133.FormFactor = Enum.FormFactor.Custom | |
| 2147 | o133.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2148 | o133.CFrame = CFrame.new(84.4088821, 11.4034462, -67.3369293, 0.0548584759, -0.728782833, 0.682543933, 0.0884757638, 0.684432328, 0.723688126, -0.994566619, 0.020688165, 0.10202653) | |
| 2149 | o133.BottomSurface = Enum.SurfaceType.Smooth | |
| 2150 | o133.TopSurface = Enum.SurfaceType.Smooth | |
| 2151 | o133.Position = Vector3.new(84.4088821, 11.4034462, -67.3369293) | |
| 2152 | o133.Orientation = Vector3.new(-46.3600006, 81.5, 7.36999989) | |
| 2153 | o134.Name = "Brick" | |
| 2154 | o134.Parent = o1 | |
| 2155 | o134.Material = Enum.Material.Metal | |
| 2156 | o134.Position = Vector3.new(82.3523636, 10.059988, -68.6312408) | |
| 2157 | o134.Rotation = Vector3.new(-62.2000008, 52.4300003, 74.5299988) | |
| 2158 | o134.Anchored = true | |
| 2159 | o134.FormFactor = Enum.FormFactor.Custom | |
| 2160 | o134.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2161 | o134.CFrame = CFrame.new(82.3523636, 10.059988, -68.6312408, 0.162666455, -0.587561548, 0.792660773, 0.262328357, 0.80020082, 0.539316773, -0.95116955, 0.120208643, 0.28429988) | |
| 2162 | o134.BottomSurface = Enum.SurfaceType.Smooth | |
| 2163 | o134.TopSurface = Enum.SurfaceType.Smooth | |
| 2164 | o134.Position = Vector3.new(82.3523636, 10.059988, -68.6312408) | |
| 2165 | o134.Orientation = Vector3.new(-32.6399994, 70.2699966, 18.1499996) | |
| 2166 | o135.Name = "Brick" | |
| 2167 | o135.Parent = o1 | |
| 2168 | o135.Material = Enum.Material.Metal | |
| 2169 | o135.Position = Vector3.new(82.5797653, 10.426652, -69.6010437) | |
| 2170 | o135.Rotation = Vector3.new(-45.7700005, 48.7099991, 66.4800034) | |
| 2171 | o135.Anchored = true | |
| 2172 | o135.FormFactor = Enum.FormFactor.Custom | |
| 2173 | o135.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2174 | o135.CFrame = CFrame.new(82.5797653, 10.426652, -69.6010437, 0.263360947, -0.605005026, 0.751405358, 0.424709141, 0.772071242, 0.472787708, -0.86617738, 0.194614887, 0.460284531) | |
| 2175 | o135.BottomSurface = Enum.SurfaceType.Smooth | |
| 2176 | o135.TopSurface = Enum.SurfaceType.Smooth | |
| 2177 | o135.Position = Vector3.new(82.5797653, 10.426652, -69.6010437) | |
| 2178 | o135.Orientation = Vector3.new(-28.2199993, 58.5099983, 28.8099995) | |
| 2179 | o136.Name = "Brick" | |
| 2180 | o136.Parent = o1 | |
| 2181 | o136.Material = Enum.Material.Metal | |
| 2182 | o136.Position = Vector3.new(84.4089737, 11.4036102, -66.7897644) | |
| 2183 | o136.Rotation = Vector3.new(-98.0999985, 43.0400009, 94.3399963) | |
| 2184 | o136.Anchored = true | |
| 2185 | o136.FormFactor = Enum.FormFactor.Custom | |
| 2186 | o136.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2187 | o136.CFrame = CFrame.new(84.4089737, 11.4036102, -66.7897644, -0.055348482, -0.728793323, 0.68249321, -0.0892447755, 0.684416056, 0.72360909, -0.994470656, -0.0208582859, -0.102922395) | |
| 2188 | o136.BottomSurface = Enum.SurfaceType.Smooth | |
| 2189 | o136.TopSurface = Enum.SurfaceType.Smooth | |
| 2190 | o136.Position = Vector3.new(84.4089737, 11.4036102, -66.7897644) | |
| 2191 | o136.Orientation = Vector3.new(-46.3499985, 98.5800018, -7.42999983) | |
| 2192 | o137.Name = "Brick" | |
| 2193 | o137.Parent = o1 | |
| 2194 | o137.Material = Enum.Material.Metal | |
| 2195 | o137.Position = Vector3.new(84.4690704, 11.5005703, -66.254509) | |
| 2196 | o137.Rotation = Vector3.new(-113.82, 41.2999992, 102.540001) | |
| 2197 | o137.Anchored = true | |
| 2198 | o137.FormFactor = Enum.FormFactor.Custom | |
| 2199 | o137.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2200 | o137.CFrame = CFrame.new(84.4690704, 11.5005703, -66.254509, -0.163134396, -0.73335743, 0.659980357, -0.263064265, 0.677056432, 0.687307656, -0.95088619, -0.0614937432, -0.30337128) | |
| 2201 | o137.BottomSurface = Enum.SurfaceType.Smooth | |
| 2202 | o137.TopSurface = Enum.SurfaceType.Smooth | |
| 2203 | o137.Position = Vector3.new(84.4690704, 11.5005703, -66.254509) | |
| 2204 | o137.Orientation = Vector3.new(-43.4199982, 114.690002, -21.2299995) | |
| 2205 | o138.Name = "Brick" | |
| 2206 | o138.Parent = o1 | |
| 2207 | o138.Material = Enum.Material.Metal | |
| 2208 | o138.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2209 | o138.Rotation = Vector3.new(-55.8300018, 27.1599998, 72.7799988) | |
| 2210 | o138.Anchored = true | |
| 2211 | o138.FormFactor = Enum.FormFactor.Custom | |
| 2212 | o138.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2213 | o138.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.263360947, -0.849859238, 0.45648703, 0.424709141, 0.527009904, 0.736126959, -0.86617738, 7.13765758e-06, 0.499736786) | |
| 2214 | o138.BottomSurface = Enum.SurfaceType.Smooth | |
| 2215 | o138.TopSurface = Enum.SurfaceType.Smooth | |
| 2216 | o138.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2217 | o138.Orientation = Vector3.new(-47.4000015, 42.4099998, 38.8600006) | |
| 2218 | o139.Name = "Brick" | |
| 2219 | o139.Parent = o1 | |
| 2220 | o139.Material = Enum.Material.Metal | |
| 2221 | o139.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2222 | o139.Rotation = Vector3.new(43.25, -23.0200005, 67.4300003) | |
| 2223 | o139.Anchored = true | |
| 2224 | o139.FormFactor = Enum.FormFactor.Custom | |
| 2225 | o139.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2226 | o139.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.353259027, -0.849857152, -0.39108938, 0.569663286, 0.527013063, -0.63066721, 0.742086232, -3.75973286e-07, 0.670304537) | |
| 2227 | o139.BottomSurface = Enum.SurfaceType.Smooth | |
| 2228 | o139.TopSurface = Enum.SurfaceType.Smooth | |
| 2229 | o139.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2230 | o139.Orientation = Vector3.new(39.0999985, -30.2600002, 47.2299995) | |
| 2231 | o140.Name = "Brick" | |
| 2232 | o140.Parent = o1 | |
| 2233 | o140.Material = Enum.Material.Metal | |
| 2234 | o140.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2235 | o140.Rotation = Vector3.new(-20.7299995, 12.3800001, 60.4700012) | |
| 2236 | o140.Anchored = true | |
| 2237 | o140.FormFactor = Enum.FormFactor.Custom | |
| 2238 | o140.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2239 | o140.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.481416792, -0.849861145, 0.214415133, 0.776344836, 0.527006626, 0.345763922, -0.406849504, 3.52842153e-06, 0.913495243) | |
| 2240 | o140.BottomSurface = Enum.SurfaceType.Smooth | |
| 2241 | o140.TopSurface = Enum.SurfaceType.Smooth | |
| 2242 | o140.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2243 | o140.Orientation = Vector3.new(-20.2299995, 13.21, 55.8300018) | |
| 2244 | o141.Name = "Brick" | |
| 2245 | o141.Parent = o1 | |
| 2246 | o141.Material = Enum.Material.Metal | |
| 2247 | o141.Position = Vector3.new(82.9083557, 10.956624, -70.4599609) | |
| 2248 | o141.Rotation = Vector3.new(-31.4400005, 43.7700005, 60.7799988) | |
| 2249 | o141.Anchored = true | |
| 2250 | o141.FormFactor = Enum.FormFactor.Custom | |
| 2251 | o141.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2252 | o141.CFrame = CFrame.new(82.9083557, 10.956624, -70.4599609, 0.352536976, -0.630222321, 0.691764116, 0.568516135, 0.731405795, 0.376609921, -0.743308187, 0.260510176, 0.616139114) | |
| 2253 | o141.BottomSurface = Enum.SurfaceType.Smooth | |
| 2254 | o141.TopSurface = Enum.SurfaceType.Smooth | |
| 2255 | o141.Position = Vector3.new(82.9083557, 10.956624, -70.4599609) | |
| 2256 | o141.Orientation = Vector3.new(-22.1200008, 48.3100014, 37.8600006) | |
| 2257 | o142.Name = "Brick" | |
| 2258 | o142.Parent = o1 | |
| 2259 | o142.Material = Enum.Material.Metal | |
| 2260 | o142.Position = Vector3.new(84.7553177, 11.9621744, -68.8149261) | |
| 2261 | o142.Rotation = Vector3.new(-38.1199989, 33.5600014, 64.9700012) | |
| 2262 | o142.Anchored = true | |
| 2263 | o142.FormFactor = Enum.FormFactor.Custom | |
| 2264 | o142.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2265 | o142.CFrame = CFrame.new(84.7553177, 11.9621744, -68.8149261, 0.352536976, -0.755092025, 0.552769125, 0.568516135, 0.642005503, 0.514410615, -0.743308187, 0.132909387, 0.655612707) | |
| 2266 | o142.BottomSurface = Enum.SurfaceType.Smooth | |
| 2267 | o142.TopSurface = Enum.SurfaceType.Smooth | |
| 2268 | o142.Position = Vector3.new(84.7553177, 11.9621744, -68.8149261) | |
| 2269 | o142.Orientation = Vector3.new(-30.9599991, 40.1399994, 41.5299988) | |
| 2270 | o143.Name = "Brick" | |
| 2271 | o143.Parent = o1 | |
| 2272 | o143.Material = Enum.Material.Metal | |
| 2273 | o143.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2274 | o143.Rotation = Vector3.new(-43.3600006, 23.0599995, 67.4700012) | |
| 2275 | o143.Anchored = true | |
| 2276 | o143.FormFactor = Enum.FormFactor.Custom | |
| 2277 | o143.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2278 | o143.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.352536976, -0.84986037, 0.391733378, 0.568516135, 0.527007937, 0.631705701, -0.743308187, 7.11095026e-06, 0.668949187) | |
| 2279 | o143.BottomSurface = Enum.SurfaceType.Smooth | |
| 2280 | o143.TopSurface = Enum.SurfaceType.Smooth | |
| 2281 | o143.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2282 | o143.Orientation = Vector3.new(-39.1800003, 30.3500004, 47.1699982) | |
| 2283 | o144.Name = "Brick" | |
| 2284 | o144.Parent = o1 | |
| 2285 | o144.Material = Enum.Material.Metal | |
| 2286 | o144.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2287 | o144.Rotation = Vector3.new(-10.2399998, 6.28999996, 58.7599983) | |
| 2288 | o144.Anchored = true | |
| 2289 | o144.FormFactor = Enum.FormFactor.Custom | |
| 2290 | o144.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2291 | o144.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.515482664, -0.849861324, 0.109605432, 0.831278682, 0.527006328, 0.176748723, -0.207974672, 1.75408468e-06, 0.978134215) | |
| 2292 | o144.BottomSurface = Enum.SurfaceType.Smooth | |
| 2293 | o144.TopSurface = Enum.SurfaceType.Smooth | |
| 2294 | o144.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2295 | o144.Orientation = Vector3.new(-10.1800003, 6.38999987, 57.6300011) | |
| 2296 | o145.Name = "Brick" | |
| 2297 | o145.Parent = o1 | |
| 2298 | o145.Material = Enum.Material.Metal | |
| 2299 | o145.Position = Vector3.new(84.969574, 12.3076782, -69.1811295) | |
| 2300 | o145.Rotation = Vector3.new(-25.8999996, 28.2000008, 61.0699997) | |
| 2301 | o145.Anchored = true | |
| 2302 | o145.FormFactor = Enum.FormFactor.Custom | |
| 2303 | o145.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2304 | o145.CFrame = CFrame.new(84.969574, 12.3076782, -69.1811295, 0.426297933, -0.771360636, 0.472517669, 0.687462091, 0.615770757, 0.384996533, -0.58793366, 0.160714731, 0.792783022) | |
| 2305 | o145.BottomSurface = Enum.SurfaceType.Smooth | |
| 2306 | o145.TopSurface = Enum.SurfaceType.Smooth | |
| 2307 | o145.Position = Vector3.new(84.969574, 12.3076782, -69.1811295) | |
| 2308 | o145.Orientation = Vector3.new(-22.6399994, 30.7999992, 48.1500015) | |
| 2309 | o146.Name = "Brick" | |
| 2310 | o146.Parent = o1 | |
| 2311 | o146.Material = Enum.Material.Metal | |
| 2312 | o146.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2313 | o146.Rotation = Vector3.new(-31.7000008, 18.0499992, 63.3600006) | |
| 2314 | o146.Anchored = true | |
| 2315 | o146.FormFactor = Enum.FormFactor.Custom | |
| 2316 | o146.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2317 | o146.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.426297933, -0.849861085, 0.309848845, 0.687462091, 0.527006924, 0.499659538, -0.58793366, 5.53693144e-06, 0.808909178) | |
| 2318 | o146.BottomSurface = Enum.SurfaceType.Smooth | |
| 2319 | o146.TopSurface = Enum.SurfaceType.Smooth | |
| 2320 | o146.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2321 | o146.Orientation = Vector3.new(-29.9799995, 20.9599991, 52.5299988) | |
| 2322 | o147.Name = "Brick" | |
| 2323 | o147.Parent = o1 | |
| 2324 | o147.Material = Enum.Material.Metal | |
| 2325 | o147.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2326 | o147.Rotation = Vector3.new(124.120003, -27.1800003, 107.190002) | |
| 2327 | o147.Anchored = true | |
| 2328 | o147.FormFactor = Enum.FormFactor.Custom | |
| 2329 | o147.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2330 | o147.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.262945771, -0.849859297, -0.456726015, -0.424040824, 0.527009606, -0.736512244, 0.866630793, 7.69669168e-06, -0.498950005) | |
| 2331 | o147.BottomSurface = Enum.SurfaceType.Smooth | |
| 2332 | o147.TopSurface = Enum.SurfaceType.Smooth | |
| 2333 | o147.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2334 | o147.Orientation = Vector3.new(47.4399986, -137.529999, -38.8199997) | |
| 2335 | o148.Name = "Brick" | |
| 2336 | o148.Parent = o1 | |
| 2337 | o148.Material = Enum.Material.Metal | |
| 2338 | o148.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2339 | o148.Rotation = Vector3.new(10.1499996, -6.23999977, 58.75) | |
| 2340 | o148.Anchored = true | |
| 2341 | o148.FormFactor = Enum.FormFactor.Custom | |
| 2342 | o148.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2343 | o148.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.515683651, -0.849860191, -0.108664714, 0.831598699, 0.527008176, -0.17523171, 0.206189677, -1.29044611e-06, 0.978512049) | |
| 2344 | o148.BottomSurface = Enum.SurfaceType.Smooth | |
| 2345 | o148.TopSurface = Enum.SurfaceType.Smooth | |
| 2346 | o148.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2347 | o148.Orientation = Vector3.new(10.0900002, -6.34000015, 57.6399994) | |
| 2348 | o149.Name = "Brick" | |
| 2349 | o149.Parent = o1 | |
| 2350 | o149.Material = Enum.Material.Metal | |
| 2351 | o149.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2352 | o149.Rotation = Vector3.new(136.589996, -23.0799999, 112.510002) | |
| 2353 | o149.Anchored = true | |
| 2354 | o149.FormFactor = Enum.FormFactor.Custom | |
| 2355 | o149.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2356 | o149.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.352182239, -0.849860072, -0.392052978, -0.56794256, 0.527008414, -0.632221103, 0.743914723, 6.51814707e-06, -0.668274641) | |
| 2357 | o149.BottomSurface = Enum.SurfaceType.Smooth | |
| 2358 | o149.TopSurface = Enum.SurfaceType.Smooth | |
| 2359 | o149.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2360 | o149.Orientation = Vector3.new(39.2099991, -149.600006, -47.1399994) | |
| 2361 | o150.Name = "Brick" | |
| 2362 | o150.Parent = o1 | |
| 2363 | o150.Material = Enum.Material.Metal | |
| 2364 | o150.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2365 | o150.Rotation = Vector3.new(148.25, -18.0699997, 116.620003) | |
| 2366 | o150.Anchored = true | |
| 2367 | o150.FormFactor = Enum.FormFactor.Custom | |
| 2368 | o150.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2369 | o150.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.426016927, -0.849860907, -0.310235739, -0.687008083, 0.527007282, -0.50028336, 0.588667691, 5.28068722e-06, -0.80837518) | |
| 2370 | o150.BottomSurface = Enum.SurfaceType.Smooth | |
| 2371 | o150.TopSurface = Enum.SurfaceType.Smooth | |
| 2372 | o150.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2373 | o150.Orientation = Vector3.new(30.0200005, -159, -52.5099983) | |
| 2374 | o151.Name = "Brick" | |
| 2375 | o151.Parent = o1 | |
| 2376 | o151.Material = Enum.Material.Metal | |
| 2377 | o151.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2378 | o151.Rotation = Vector3.new(159.220001, -12.4099998, 119.519997) | |
| 2379 | o151.Anchored = true | |
| 2380 | o151.FormFactor = Enum.FormFactor.Custom | |
| 2381 | o151.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2382 | o151.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.481221795, -0.849861264, -0.214852035, -0.776030838, 0.527006447, -0.346468419, 0.407678515, 3.63280992e-06, -0.913125515) | |
| 2383 | o151.BottomSurface = Enum.SurfaceType.Smooth | |
| 2384 | o151.TopSurface = Enum.SurfaceType.Smooth | |
| 2385 | o151.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2386 | o151.Orientation = Vector3.new(20.2700005, -166.759995, -55.8199997) | |
| 2387 | o152.Name = "Brick" | |
| 2388 | o152.Parent = o1 | |
| 2389 | o152.Material = Enum.Material.Metal | |
| 2390 | o152.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2391 | o152.Rotation = Vector3.new(169.710007, -6.32000017, 121.230003) | |
| 2392 | o152.Anchored = true | |
| 2393 | o152.FormFactor = Enum.FormFactor.Custom | |
| 2394 | o152.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2395 | o152.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.515383124, -0.849861324, -0.110073306, -0.831117809, 0.527006567, -0.177503243, 0.208862454, 1.71800014e-06, -0.977945149) | |
| 2396 | o152.BottomSurface = Enum.SurfaceType.Smooth | |
| 2397 | o152.TopSurface = Enum.SurfaceType.Smooth | |
| 2398 | o152.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2399 | o152.Orientation = Vector3.new(10.2200003, -173.580002, -57.6199989) | |
| 2400 | o153.Name = "Brick" | |
| 2401 | o153.Parent = o1 | |
| 2402 | o153.Material = Enum.Material.Metal | |
| 2403 | o153.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2404 | o153.Rotation = Vector3.new(68.9800034, -30.0599995, 79.0999985) | |
| 2405 | o153.Anchored = true | |
| 2406 | o153.FormFactor = Enum.FormFactor.Custom | |
| 2407 | o153.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2408 | o153.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.163589373, -0.849856496, -0.50098145, 0.263797194, 0.527014136, -0.807878196, 0.950604916, 2.79055098e-06, 0.310403615) | |
| 2409 | o153.BottomSurface = Enum.SurfaceType.Smooth | |
| 2410 | o153.TopSurface = Enum.SurfaceType.Smooth | |
| 2411 | o153.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2412 | o153.Orientation = Vector3.new(53.8899994, -58.2200012, 26.5900002) | |
| 2413 | o154.Name = "Brick" | |
| 2414 | o154.Parent = o1 | |
| 2415 | o154.Material = Enum.Material.Metal | |
| 2416 | o154.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2417 | o154.Rotation = Vector3.new(82.8600006, -31.6000004, 86.2399979) | |
| 2418 | o154.Anchored = true | |
| 2419 | o154.FormFactor = Enum.FormFactor.Custom | |
| 2420 | o154.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2421 | o154.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.0558235049, -0.849856734, -0.524048924, 0.0900118127, 0.527013779, -0.845076501, 0.99437499, 4.54525707e-06, 0.105916895) | |
| 2422 | o154.BottomSurface = Enum.SurfaceType.Smooth | |
| 2423 | o154.TopSurface = Enum.SurfaceType.Smooth | |
| 2424 | o154.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2425 | o154.Orientation = Vector3.new(57.6800003, -78.5699997, 9.68999958) | |
| 2426 | o155.Name = "Brick" | |
| 2427 | o155.Parent = o1 | |
| 2428 | o155.Material = Enum.Material.Metal | |
| 2429 | o155.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2430 | o155.Rotation = Vector3.new(96.9599991, -31.6100006, 93.6600037) | |
| 2431 | o155.Anchored = true | |
| 2432 | o155.FormFactor = Enum.FormFactor.Custom | |
| 2433 | o155.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2434 | o155.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.0543824658, -0.84985745, -0.524199426, -0.0877097547, 0.527012825, -0.845319211, 0.994660497, 6.85504574e-06, -0.103201039) | |
| 2435 | o155.BottomSurface = Enum.SurfaceType.Smooth | |
| 2436 | o155.TopSurface = Enum.SurfaceType.Smooth | |
| 2437 | o155.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2438 | o155.Orientation = Vector3.new(57.7099991, -101.139999, -9.44999981) | |
| 2439 | o156.Name = "Brick" | |
| 2440 | o156.Parent = o1 | |
| 2441 | o156.Material = Enum.Material.Metal | |
| 2442 | o156.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2443 | o156.Rotation = Vector3.new(55.7200012, -27.1299992, 72.7300034) | |
| 2444 | o156.Anchored = true | |
| 2445 | o156.FormFactor = Enum.FormFactor.Custom | |
| 2446 | o156.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2447 | o156.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.264200985, -0.849856794, -0.456005961, 0.426046193, 0.527013838, -0.735351145, 0.865264475, 8.89655155e-07, 0.501315773) | |
| 2448 | o156.BottomSurface = Enum.SurfaceType.Smooth | |
| 2449 | o156.TopSurface = Enum.SurfaceType.Smooth | |
| 2450 | o156.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2451 | o156.Orientation = Vector3.new(47.3400002, -42.2900009, 38.9500008) | |
| 2452 | o157.Name = "Brick" | |
| 2453 | o157.Parent = o1 | |
| 2454 | o157.Material = Enum.Material.Metal | |
| 2455 | o157.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2456 | o157.Rotation = Vector3.new(110.839996, -30.0900002, 100.809998) | |
| 2457 | o157.Anchored = true | |
| 2458 | o157.FormFactor = Enum.FormFactor.Custom | |
| 2459 | o157.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2460 | o157.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.162211388, -0.849858344, -0.501426399, -0.261595249, 0.527011395, -0.808595777, 0.951449156, 7.32993067e-06, -0.307806104) | |
| 2461 | o157.BottomSurface = Enum.SurfaceType.Smooth | |
| 2462 | o157.TopSurface = Enum.SurfaceType.Smooth | |
| 2463 | o157.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2464 | o157.Orientation = Vector3.new(53.9599991, -121.540001, -26.3999996) | |
| 2465 | o158.Name = "Brick" | |
| 2466 | o158.Parent = o1 | |
| 2467 | o158.Material = Enum.Material.Metal | |
| 2468 | o158.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2469 | o158.Rotation = Vector3.new(-0.0900000036, 0.0500000007, 58.2000008) | |
| 2470 | o158.Anchored = true | |
| 2471 | o158.FormFactor = Enum.FormFactor.Custom | |
| 2472 | o158.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2473 | o158.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.52700603, -0.849860966, 0.000959166209, 0.849859595, 0.527006924, 0.00154674263, -0.0018200035, 1.38313982e-08, 0.999998331) | |
| 2474 | o158.BottomSurface = Enum.SurfaceType.Smooth | |
| 2475 | o158.TopSurface = Enum.SurfaceType.Smooth | |
| 2476 | o158.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2477 | o158.Orientation = Vector3.new(-0.0900000036, 0.0500000007, 58.2000008) | |
| 2478 | o159.Name = "Brick" | |
| 2479 | o159.Parent = o1 | |
| 2480 | o159.Material = Enum.Material.Metal | |
| 2481 | o159.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2482 | o159.Rotation = Vector3.new(179.960007, -0.0299999993, 121.800003) | |
| 2483 | o159.Anchored = true | |
| 2484 | o159.FormFactor = Enum.FormFactor.Custom | |
| 2485 | o159.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2486 | o159.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.527006686, -0.849861085, -0.000481164694, -0.849860728, 0.527006924, -0.000775921857, 0.000913002936, 6.96571778e-09, -0.999999583) | |
| 2487 | o159.BottomSurface = Enum.SurfaceType.Smooth | |
| 2488 | o159.TopSurface = Enum.SurfaceType.Smooth | |
| 2489 | o159.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2490 | o159.Orientation = Vector3.new(0.0399999991, -179.970001, -58.2000008) | |
| 2491 | o160.Name = "Brick" | |
| 2492 | o160.Parent = o1 | |
| 2493 | o160.Material = Enum.Material.Metal | |
| 2494 | o160.Position = Vector3.new(85.4948654, 13.1546516, -64.5045395) | |
| 2495 | o160.Rotation = Vector3.new(-175.960007, 16.0100002, 122.440002) | |
| 2496 | o160.Anchored = true | |
| 2497 | o160.FormFactor = Enum.FormFactor.Custom | |
| 2498 | o160.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2499 | o160.CFrame = CFrame.new(85.4948654, 13.1546516, -64.5045395, -0.515584648, -0.811240077, 0.275793672, -0.831439674, 0.551465392, 0.0677801892, -0.207076669, -0.194359362, -0.958824158) | |
| 2500 | o160.BottomSurface = Enum.SurfaceType.Smooth | |
| 2501 | o160.TopSurface = Enum.SurfaceType.Smooth | |
| 2502 | o160.Position = Vector3.new(85.4948654, 13.1546516, -64.5045395) | |
| 2503 | o160.Orientation = Vector3.new(-3.8900001, 163.949997, -56.4500008) | |
| 2504 | o161.Name = "Brick" | |
| 2505 | o161.Parent = o1 | |
| 2506 | o161.Material = Enum.Material.Metal | |
| 2507 | o161.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2508 | o161.Rotation = Vector3.new(-169.800003, 6.26999998, 121.239998) | |
| 2509 | o161.Anchored = true | |
| 2510 | o161.FormFactor = Enum.FormFactor.Custom | |
| 2511 | o161.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2512 | o161.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.515584648, -0.84986037, 0.109132163, -0.831439674, 0.527007878, 0.175985545, -0.207076669, -1.36388303e-06, -0.978324711) | |
| 2513 | o161.BottomSurface = Enum.SurfaceType.Smooth | |
| 2514 | o161.TopSurface = Enum.SurfaceType.Smooth | |
| 2515 | o161.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2516 | o161.Orientation = Vector3.new(-10.1400003, 173.630005, -57.6300011) | |
| 2517 | o162.Name = "Brick" | |
| 2518 | o162.Parent = o1 | |
| 2519 | o162.Material = Enum.Material.Metal | |
| 2520 | o162.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2521 | o162.Rotation = Vector3.new(-159.309998, 12.3599997, 119.540001) | |
| 2522 | o162.Anchored = true | |
| 2523 | o162.FormFactor = Enum.FormFactor.Custom | |
| 2524 | o162.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2525 | o162.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.481617004, -0.849858999, 0.213973612, -0.776659191, 0.527010143, 0.345051914, -0.406011701, -1.69402676e-06, -0.913867891) | |
| 2526 | o162.BottomSurface = Enum.SurfaceType.Smooth | |
| 2527 | o162.TopSurface = Enum.SurfaceType.Smooth | |
| 2528 | o162.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2529 | o162.Orientation = Vector3.new(-20.1800003, 166.820007, -55.8400002) | |
| 2530 | o163.Name = "Brick" | |
| 2531 | o163.Parent = o1 | |
| 2532 | o163.Material = Enum.Material.Metal | |
| 2533 | o163.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2534 | o163.Rotation = Vector3.new(20.6399994, -12.3299999, 60.4500008) | |
| 2535 | o163.Anchored = true | |
| 2536 | o163.FormFactor = Enum.FormFactor.Custom | |
| 2537 | o163.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2538 | o163.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.48181048, -0.849859297, -0.213536471, 0.776972353, 0.527009606, -0.344347, 0.405182242, -1.94415088e-06, 0.91423595) | |
| 2539 | o163.BottomSurface = Enum.SurfaceType.Smooth | |
| 2540 | o163.TopSurface = Enum.SurfaceType.Smooth | |
| 2541 | o163.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2542 | o163.Orientation = Vector3.new(20.1399994, -13.1499996, 55.8499985) | |
| 2543 | o164.Name = "Brick" | |
| 2544 | o164.Parent = o1 | |
| 2545 | o164.Material = Enum.Material.Metal | |
| 2546 | o164.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2547 | o164.Rotation = Vector3.new(-148.350006, 18.0300007, 116.650002) | |
| 2548 | o164.Anchored = true | |
| 2549 | o164.FormFactor = Enum.FormFactor.Custom | |
| 2550 | o164.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2551 | o164.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.426587373, -0.849858403, 0.30945766, -0.687916875, 0.527011275, 0.499028653, -0.587191284, -1.83748011e-06, -0.809448302) | |
| 2552 | o164.BottomSurface = Enum.SurfaceType.Smooth | |
| 2553 | o164.TopSurface = Enum.SurfaceType.Smooth | |
| 2554 | o164.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2555 | o164.Orientation = Vector3.new(-29.9400005, 159.080002, -52.5400009) | |
| 2556 | o165.Name = "Brick" | |
| 2557 | o165.Parent = o1 | |
| 2558 | o165.Material = Enum.Material.Metal | |
| 2559 | o165.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2560 | o165.Rotation = Vector3.new(-136.690002, 23.0400009, 112.550003) | |
| 2561 | o165.Anchored = true | |
| 2562 | o165.FormFactor = Enum.FormFactor.Custom | |
| 2563 | o165.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2564 | o165.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.352903485, -0.84985745, 0.391409814, -0.569090962, 0.527012825, 0.631183863, -0.742694259, -7.74696957e-07, -0.669630766) | |
| 2565 | o165.BottomSurface = Enum.SurfaceType.Smooth | |
| 2566 | o165.TopSurface = Enum.SurfaceType.Smooth | |
| 2567 | o165.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2568 | o165.Orientation = Vector3.new(-39.1399994, 149.690002, -47.2000008) | |
| 2569 | o166.Name = "Brick" | |
| 2570 | o166.Parent = o1 | |
| 2571 | o166.Material = Enum.Material.Metal | |
| 2572 | o166.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2573 | o166.Rotation = Vector3.new(-69.0999985, 30.0799999, 79.1600037) | |
| 2574 | o166.Anchored = true | |
| 2575 | o166.FormFactor = Enum.FormFactor.Custom | |
| 2576 | o166.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2577 | o166.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.162666455, -0.849858165, 0.501279056, 0.262328357, 0.527011454, 0.808358073, -0.95116955, 6.97343467e-06, 0.308669001) | |
| 2578 | o166.BottomSurface = Enum.SurfaceType.Smooth | |
| 2579 | o166.TopSurface = Enum.SurfaceType.Smooth | |
| 2580 | o166.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2581 | o166.Orientation = Vector3.new(-53.9399986, 58.3800011, 26.4599991) | |
| 2582 | o167.Name = "Brick" | |
| 2583 | o167.Parent = o1 | |
| 2584 | o167.Material = Enum.Material.Metal | |
| 2585 | o167.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2586 | o167.Rotation = Vector3.new(-82.9800034, 31.6100006, 86.3099976) | |
| 2587 | o167.Anchored = true | |
| 2588 | o167.FormFactor = Enum.FormFactor.Custom | |
| 2589 | o167.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2590 | o167.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.0548584759, -0.84985733, 0.524149895, 0.0884757638, 0.527012825, 0.845239401, -0.994566619, 6.0170496e-06, 0.104102902) | |
| 2591 | o167.BottomSurface = Enum.SurfaceType.Smooth | |
| 2592 | o167.TopSurface = Enum.SurfaceType.Smooth | |
| 2593 | o167.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2594 | o167.Orientation = Vector3.new(-57.7000008, 78.7699966, 9.52999973) | |
| 2595 | o168.Name = "Brick" | |
| 2596 | o168.Parent = o1 | |
| 2597 | o168.Material = Enum.Material.Metal | |
| 2598 | o168.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2599 | o168.Rotation = Vector3.new(-97.0800018, 31.6100006, 93.7300034) | |
| 2600 | o168.Anchored = true | |
| 2601 | o168.FormFactor = Enum.FormFactor.Custom | |
| 2602 | o168.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2603 | o168.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.055348482, -0.849856794, 0.52409935, -0.0892447755, 0.527013898, 0.845157862, -0.994470656, 5.07917503e-06, -0.105014697) | |
| 2604 | o168.BottomSurface = Enum.SurfaceType.Smooth | |
| 2605 | o168.TopSurface = Enum.SurfaceType.Smooth | |
| 2606 | o168.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2607 | o168.Orientation = Vector3.new(-57.6899986, 101.330002, -9.60999966) | |
| 2608 | o169.Name = "Brick" | |
| 2609 | o169.Parent = o1 | |
| 2610 | o169.Material = Enum.Material.Metal | |
| 2611 | o169.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2612 | o169.Rotation = Vector3.new(-110.959999, 30.0699997, 100.870003) | |
| 2613 | o169.Anchored = true | |
| 2614 | o169.FormFactor = Enum.FormFactor.Custom | |
| 2615 | o169.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2616 | o169.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.163134396, -0.849856555, 0.501129687, -0.263064265, 0.527014017, 0.808117211, -0.95088619, 2.39463293e-06, -0.309541017) | |
| 2617 | o169.BottomSurface = Enum.SurfaceType.Smooth | |
| 2618 | o169.TopSurface = Enum.SurfaceType.Smooth | |
| 2619 | o169.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2620 | o169.Orientation = Vector3.new(-53.9099998, 121.699997, -26.5300007) | |
| 2621 | o170.Name = "Brick" | |
| 2622 | o170.Parent = o1 | |
| 2623 | o170.Material = Enum.Material.Metal | |
| 2624 | o170.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2625 | o170.Rotation = Vector3.new(31.6100006, -18, 63.3300018) | |
| 2626 | o170.Anchored = true | |
| 2627 | o170.FormFactor = Enum.FormFactor.Custom | |
| 2628 | o170.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2629 | o170.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, 0.426868021, -0.849858284, -0.309070557, 0.688369274, 0.527011275, -0.498404413, 0.586456776, -1.78274763e-06, 0.809980571) | |
| 2630 | o170.BottomSurface = Enum.SurfaceType.Smooth | |
| 2631 | o170.TopSurface = Enum.SurfaceType.Smooth | |
| 2632 | o170.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2633 | o170.Orientation = Vector3.new(29.8899994, -20.8899994, 52.5600014) | |
| 2634 | o171.Name = "Brick" | |
| 2635 | o171.Parent = o1 | |
| 2636 | o171.Material = Enum.Material.Metal | |
| 2637 | o171.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2638 | o171.Rotation = Vector3.new(-124.230003, 27.1499996, 107.239998) | |
| 2639 | o171.Anchored = true | |
| 2640 | o171.FormFactor = Enum.FormFactor.Custom | |
| 2641 | o171.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2642 | o171.CFrame = CFrame.new(86.2311554, 13.3355904, -67.0644836, -0.263786912, -0.849856675, 0.456245691, -0.425378084, 0.527013898, 0.735737681, -0.865719318, 1.07072731e-06, -0.500529826) | |
| 2643 | o171.BottomSurface = Enum.SurfaceType.Smooth | |
| 2644 | o171.TopSurface = Enum.SurfaceType.Smooth | |
| 2645 | o171.Position = Vector3.new(86.2311554, 13.3355904, -67.0644836) | |
| 2646 | o171.Orientation = Vector3.new(-47.3699989, 137.649994, -38.9099998) | |
| 2647 | o172.Name = "Brick" | |
| 2648 | o172.Parent = o1 | |
| 2649 | o172.Material = Enum.Material.Metal | |
| 2650 | o172.Position = Vector3.new(83.8084564, 12.408082, -71.7012177) | |
| 2651 | o172.Rotation = Vector3.new(-7.67000008, 31.8999996, 55.4500008) | |
| 2652 | o172.Anchored = true | |
| 2653 | o172.FormFactor = Enum.FormFactor.Custom | |
| 2654 | o172.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2655 | o172.CFrame = CFrame.new(83.8084564, 12.408082, -71.7012177, 0.481416792, -0.69927454, 0.528443992, 0.776344836, 0.620052576, 0.113240913, -0.406849504, 0.355738699, 0.841381967) | |
| 2656 | o172.BottomSurface = Enum.SurfaceType.Smooth | |
| 2657 | o172.TopSurface = Enum.SurfaceType.Smooth | |
| 2658 | o172.Position = Vector3.new(83.8084564, 12.408082, -71.7012177) | |
| 2659 | o172.Orientation = Vector3.new(-6.5, 32.1300011, 51.3899994) | |
| 2660 | o173.Name = "Brick" | |
| 2661 | o173.Parent = o1 | |
| 2662 | o173.Material = Enum.Material.Metal | |
| 2663 | o173.Position = Vector3.new(85.2193146, 12.7104082, -69.4548035) | |
| 2664 | o173.Rotation = Vector3.new(-14.6599998, 22.2700005, 58.6500015) | |
| 2665 | o173.Anchored = true | |
| 2666 | o173.FormFactor = Enum.FormFactor.Custom | |
| 2667 | o173.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2668 | o173.CFrame = CFrame.new(85.2193146, 12.7104082, -69.4548035, 0.481416792, -0.790320933, 0.378986567, 0.776344836, 0.585195482, 0.234168589, -0.406849504, 0.181491598, 0.895284474) | |
| 2669 | o173.BottomSurface = Enum.SurfaceType.Smooth | |
| 2670 | o173.TopSurface = Enum.SurfaceType.Smooth | |
| 2671 | o173.Position = Vector3.new(85.2193146, 12.7104082, -69.4548035) | |
| 2672 | o173.Orientation = Vector3.new(-13.54, 22.9400005, 52.9900017) | |
| 2673 | o174.Name = "Brick" | |
| 2674 | o174.Parent = o1 | |
| 2675 | o174.Material = Enum.Material.Metal | |
| 2676 | o174.Position = Vector3.new(85.4934998, 13.1526775, -69.6239624) | |
| 2677 | o174.Rotation = Vector3.new(-4.09000015, 16.0400009, 57.5600014) | |
| 2678 | o174.Anchored = true | |
| 2679 | o174.FormFactor = Enum.FormFactor.Custom | |
| 2680 | o174.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2681 | o174.CFrame = CFrame.new(85.4934998, 13.1526775, -69.6239624, 0.515482664, -0.811144233, 0.27626577, 0.831278682, 0.551616192, 0.0685229674, -0.207974672, 0.194331422, 0.958635509) | |
| 2682 | o174.BottomSurface = Enum.SurfaceType.Smooth | |
| 2683 | o174.TopSurface = Enum.SurfaceType.Smooth | |
| 2684 | o174.Position = Vector3.new(85.4934998, 13.1526775, -69.6239624) | |
| 2685 | o174.Orientation = Vector3.new(-3.93000007, 16.0799999, 56.4300003) | |
| 2686 | o175.Name = "Brick" | |
| 2687 | o175.Parent = o1 | |
| 2688 | o175.Material = Enum.Material.Metal | |
| 2689 | o175.Position = Vector3.new(85.7778702, 13.6111002, -69.6811523) | |
| 2690 | o175.Rotation = Vector3.new(6.01000023, 9.77999973, 57.6699982) | |
| 2691 | o175.Anchored = true | |
| 2692 | o175.FormFactor = Enum.FormFactor.Custom | |
| 2693 | o175.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2694 | o175.CFrame = CFrame.new(85.7778702, 13.6111002, -69.6811523, 0.52700603, -0.832729101, 0.169785321, 0.849859595, 0.516808689, -0.103186645, -0.0018200035, 0.198673666, 0.980064094) | |
| 2695 | o175.BottomSurface = Enum.SurfaceType.Smooth | |
| 2696 | o175.TopSurface = Enum.SurfaceType.Smooth | |
| 2697 | o175.Position = Vector3.new(85.7778702, 13.6111002, -69.6811523) | |
| 2698 | o175.Orientation = Vector3.new(5.92000008, 9.82999992, 58.7000008) | |
| 2699 | o176.Name = "Brick" | |
| 2700 | o176.Parent = o1 | |
| 2701 | o176.Material = Enum.Material.Metal | |
| 2702 | o176.Position = Vector3.new(85.7816238, 13.6171684, -64.4478912) | |
| 2703 | o176.Rotation = Vector3.new(173.860001, 9.68999958, 122.32) | |
| 2704 | o176.Anchored = true | |
| 2705 | o176.FormFactor = Enum.FormFactor.Custom | |
| 2706 | o176.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2707 | o176.CFrame = CFrame.new(85.7816238, 13.6171684, -64.4478912, -0.527006686, -0.833016992, 0.168364957, -0.849860728, 0.516348302, -0.105457582, 0.000913002936, -0.198663607, -0.980067313) | |
| 2708 | o176.BottomSurface = Enum.SurfaceType.Smooth | |
| 2709 | o176.TopSurface = Enum.SurfaceType.Smooth | |
| 2710 | o176.Position = Vector3.new(85.7816238, 13.6171684, -64.4478912) | |
| 2711 | o176.Orientation = Vector3.new(6.05000019, 170.25, -58.7200012) | |
| 2712 | o177.Name = "Brick" | |
| 2713 | o177.Parent = o1 | |
| 2714 | o177.Material = Enum.Material.Metal | |
| 2715 | o177.Position = Vector3.new(84.3428955, 13.2698097, -62.0987587) | |
| 2716 | o177.Rotation = Vector3.new(177.259995, 25.5599995, 124.860001) | |
| 2717 | o177.Anchored = true | |
| 2718 | o177.FormFactor = Enum.FormFactor.Custom | |
| 2719 | o177.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2720 | o177.CFrame = CFrame.new(84.3428955, 13.2698097, -62.0987587, -0.515584648, -0.740277588, 0.431464553, -0.831439674, 0.553938627, -0.0431300811, -0.207076669, -0.380973935, -0.901098311) | |
| 2721 | o177.BottomSurface = Enum.SurfaceType.Smooth | |
| 2722 | o177.TopSurface = Enum.SurfaceType.Smooth | |
| 2723 | o177.Position = Vector3.new(84.3428955, 13.2698097, -62.0987587) | |
| 2724 | o177.Orientation = Vector3.new(2.47000003, 154.410004, -56.3300018) | |
| 2725 | o178.Name = "Brick" | |
| 2726 | o178.Parent = o1 | |
| 2727 | o178.Material = Enum.Material.Metal | |
| 2728 | o178.Position = Vector3.new(84.3404541, 13.265954, -72.0292511) | |
| 2729 | o178.Rotation = Vector3.new(2.70000005, 25.5900002, 55.1399994) | |
| 2730 | o178.Anchored = true | |
| 2731 | o178.FormFactor = Enum.FormFactor.Custom | |
| 2732 | o178.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2733 | o178.CFrame = CFrame.new(84.3404541, 13.265954, -72.0292511, 0.515482664, -0.740089715, 0.431908607, 0.831278682, 0.554234028, -0.0424323827, -0.207974672, 0.380909592, 0.900918722) | |
| 2734 | o178.BottomSurface = Enum.SurfaceType.Smooth | |
| 2735 | o178.TopSurface = Enum.SurfaceType.Smooth | |
| 2736 | o178.Position = Vector3.new(84.3404541, 13.265954, -72.0292511) | |
| 2737 | o178.Orientation = Vector3.new(2.43000007, 25.6100006, 56.3100014) | |
| 2738 | o179.Name = "Brick" | |
| 2739 | o179.Parent = o1 | |
| 2740 | o179.Material = Enum.Material.Metal | |
| 2741 | o179.Position = Vector3.new(86.0646973, 14.0736742, -69.624939) | |
| 2742 | o179.Rotation = Vector3.new(16.0799999, 3.56999993, 58.8899994) | |
| 2743 | o179.Anchored = true | |
| 2744 | o179.FormFactor = Enum.FormFactor.Custom | |
| 2745 | o179.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2746 | o179.CFrame = CFrame.new(86.0646973, 14.0736742, -69.624939, 0.515683651, -0.854507625, 0.0623471439, 0.831598699, 0.48168841, -0.276441693, 0.206189677, 0.194404244, 0.959006131) | |
| 2747 | o179.BottomSurface = Enum.SurfaceType.Smooth | |
| 2748 | o179.TopSurface = Enum.SurfaceType.Smooth | |
| 2749 | o179.Position = Vector3.new(86.0646973, 14.0736742, -69.624939) | |
| 2750 | o179.Orientation = Vector3.new(16.0499992, 3.72000003, 59.9199982) | |
| 2751 | o180.Name = "Brick" | |
| 2752 | o180.Parent = o1 | |
| 2753 | o180.Material = Enum.Material.Metal | |
| 2754 | o180.Position = Vector3.new(84.8918304, 14.1552763, -72.1402512) | |
| 2755 | o180.Rotation = Vector3.new(12.4799995, 19.3799992, 56.0400009) | |
| 2756 | o180.Anchored = true | |
| 2757 | o180.FormFactor = Enum.FormFactor.Custom | |
| 2758 | o180.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2759 | o180.CFrame = CFrame.new(84.8918304, 14.1552763, -72.1402512, 0.52700603, -0.782398701, 0.331838906, 0.849859595, 0.486006856, -0.203803986, -0.0018200035, 0.389422387, 0.921057582) | |
| 2760 | o180.BottomSurface = Enum.SurfaceType.Smooth | |
| 2761 | o180.TopSurface = Enum.SurfaceType.Smooth | |
| 2762 | o180.Position = Vector3.new(84.8918304, 14.1552763, -72.1402512) | |
| 2763 | o180.Orientation = Vector3.new(11.7600002, 19.8099995, 60.2400017) | |
| 2764 | o181.Name = "Brick" | |
| 2765 | o181.Parent = o1 | |
| 2766 | o181.Material = Enum.Material.Metal | |
| 2767 | o181.Position = Vector3.new(85.448288, 15.0524483, -72.0312271) | |
| 2768 | o181.Rotation = Vector3.new(22.1399994, 13.3500004, 57.9900017) | |
| 2769 | o181.Anchored = true | |
| 2770 | o181.FormFactor = Enum.FormFactor.Custom | |
| 2771 | o181.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 2772 | o181.CFrame = CFrame.new(85.448288, 15.0524483, -72.0312271, 0.515683651, -0.825087965, 0.230868503, 0.831598699, 0.417166352, -0.366627872, 0.206189677, 0.381053865, 0.901267886) | |
| 2773 | o181.BottomSurface = Enum.SurfaceType.Smooth | |
| 2774 | o181.TopSurface = Enum.SurfaceType.Smooth | |
| 2775 | o181.Position = Vector3.new(85.448288, 15.0524483, -72.0312271) | |
| 2776 | o181.Orientation = Vector3.new(21.5100002, 14.3699999, 63.3600006) | |
| 2777 | o182.Name = "Brick" | |
| 2778 | o182.Parent = o1 | |
| 2779 | o182.Material = Enum.Material.Metal | |
| 2780 | o182.Position = Vector3.new(86.3391495, 14.5162163, -69.4567566) | |
| 2781 | o182.Rotation = Vector3.new(26.2700005, -2.31999993, 61.1699982) | |
| 2782 | o182.Anchored = true | |
| 2783 | o182.FormFactor = Enum.FormFactor.Custom | |
| 2784 | o182.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 2785 | o182.CFrame = CFrame.new(86.3391495, 14.5162163, -69.4567566, 0.48181048, -0.875342071, -0.0404347144, 0.776972353, 0.448091209, -0.442185789, 0.405182242, 0.181633085, 0.896011651) | |
| 2786 | o182.BottomSurface = Enum.SurfaceType.Smooth | |
| 2787 | o182.TopSurface = Enum.SurfaceType.Smooth | |
| 2788 | o182.Position = Vector3.new(86.3391495, 14.5162163, -69.4567566) | |
| 2789 | o182.Orientation = Vector3.new(26.2399998, -2.57999992, 60.0299988) | |
| 2790 | o183.Parent = o1 | |
| 2791 | o183.Material = Enum.Material.Metal | |
| 2792 | o183.BrickColor = BrickColor.new("Really black")
| |
| 2793 | o183.Position = Vector3.new(86.3510666, 13.2280636, -64.0358582) | |
| 2794 | o183.Rotation = Vector3.new(-180, 0, -150) | |
| 2795 | o183.Anchored = true | |
| 2796 | o183.FormFactor = Enum.FormFactor.Symmetric | |
| 2797 | o183.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2798 | o183.CFrame = CFrame.new(86.3510666, 13.2280636, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2799 | o183.BottomSurface = Enum.SurfaceType.Smooth | |
| 2800 | o183.TopSurface = Enum.SurfaceType.Smooth | |
| 2801 | o183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2802 | o183.Position = Vector3.new(86.3510666, 13.2280636, -64.0358582) | |
| 2803 | o183.Orientation = Vector3.new(0, 180, 30) | |
| 2804 | o183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2805 | o184.Parent = o183 | |
| 2806 | o184.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2807 | o184.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2808 | o185.Name = "part" | |
| 2809 | o185.Parent = o1 | |
| 2810 | o185.Material = Enum.Material.Metal | |
| 2811 | o185.BrickColor = BrickColor.new("Mid gray")
| |
| 2812 | o185.Position = Vector3.new(80.5299149, 13.0789623, -67.0458374) | |
| 2813 | o185.Anchored = true | |
| 2814 | o185.FormFactor = Enum.FormFactor.Symmetric | |
| 2815 | o185.Size = Vector3.new(1, 1, 1) | |
| 2816 | o185.CFrame = CFrame.new(80.5299149, 13.0789623, -67.0458374, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 2817 | o185.BottomSurface = Enum.SurfaceType.Smooth | |
| 2818 | o185.TopSurface = Enum.SurfaceType.Smooth | |
| 2819 | o185.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 2820 | o185.Position = Vector3.new(80.5299149, 13.0789623, -67.0458374) | |
| 2821 | o185.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 2822 | o186.Parent = o185 | |
| 2823 | o186.Scale = Vector3.new(1, 0.200000003, 0.300000012) | |
| 2824 | o186.Scale = Vector3.new(1, 0.200000003, 0.300000012) | |
| 2825 | o187.Name = "part" | |
| 2826 | o187.Parent = o1 | |
| 2827 | o187.Material = Enum.Material.Metal | |
| 2828 | o187.BrickColor = BrickColor.new("Mid gray")
| |
| 2829 | o187.Position = Vector3.new(80.5299149, 13.3489504, -67.0458374) | |
| 2830 | o187.Anchored = true | |
| 2831 | o187.FormFactor = Enum.FormFactor.Symmetric | |
| 2832 | o187.Size = Vector3.new(1, 1, 1) | |
| 2833 | o187.CFrame = CFrame.new(80.5299149, 13.3489504, -67.0458374, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 2834 | o187.BottomSurface = Enum.SurfaceType.Smooth | |
| 2835 | o187.TopSurface = Enum.SurfaceType.Smooth | |
| 2836 | o187.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 2837 | o187.Position = Vector3.new(80.5299149, 13.3489504, -67.0458374) | |
| 2838 | o187.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 2839 | o188.Parent = o187 | |
| 2840 | o188.Scale = Vector3.new(1, 0.200000003, 0.300000012) | |
| 2841 | o188.Scale = Vector3.new(1, 0.200000003, 0.300000012) | |
| 2842 | o189.Name = "part" | |
| 2843 | o189.Parent = o1 | |
| 2844 | o189.Material = Enum.Material.Metal | |
| 2845 | o189.Position = Vector3.new(81.0731964, 9.58151627, -63.1245956) | |
| 2846 | o189.Rotation = Vector3.new(-114.879997, -41.4700012, 19.7000008) | |
| 2847 | o189.Anchored = true | |
| 2848 | o189.FormFactor = Enum.FormFactor.Symmetric | |
| 2849 | o189.Size = Vector3.new(1, 1, 1) | |
| 2850 | o189.CFrame = CFrame.new(81.0731964, 9.58151627, -63.1245956, 0.705395341, -0.252620906, -0.662268996, 0.423792779, -0.598630786, 0.679735959, -0.568170071, -0.760147333, -0.315212429) | |
| 2851 | o189.BottomSurface = Enum.SurfaceType.Smooth | |
| 2852 | o189.TopSurface = Enum.SurfaceType.Smooth | |
| 2853 | o189.Position = Vector3.new(81.0731964, 9.58151627, -63.1245956) | |
| 2854 | o189.Orientation = Vector3.new(-42.8199997, -115.449997, 144.699997) | |
| 2855 | o190.Parent = o189 | |
| 2856 | o190.Scale = Vector3.new(1, 0.200000003, 0.5) | |
| 2857 | o190.Scale = Vector3.new(1, 0.200000003, 0.5) | |
| 2858 | o191.Parent = o1 | |
| 2859 | o191.Material = Enum.Material.Metal | |
| 2860 | o191.BrickColor = BrickColor.new("Really black")
| |
| 2861 | o191.Position = Vector3.new(86.8309784, 12.9780664, -64.0358429) | |
| 2862 | o191.Rotation = Vector3.new(-180, 0, -150) | |
| 2863 | o191.Anchored = true | |
| 2864 | o191.FormFactor = Enum.FormFactor.Symmetric | |
| 2865 | o191.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2866 | o191.CFrame = CFrame.new(86.8309784, 12.9780664, -64.0358429, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2867 | o191.BottomSurface = Enum.SurfaceType.Smooth | |
| 2868 | o191.TopSurface = Enum.SurfaceType.Smooth | |
| 2869 | o191.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2870 | o191.Position = Vector3.new(86.8309784, 12.9780664, -64.0358429) | |
| 2871 | o191.Orientation = Vector3.new(0, 180, 30) | |
| 2872 | o191.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2873 | o192.Parent = o191 | |
| 2874 | o192.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2875 | o192.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2876 | o193.Parent = o1 | |
| 2877 | o193.Material = Enum.Material.Metal | |
| 2878 | o193.BrickColor = BrickColor.new("Really black")
| |
| 2879 | o193.Position = Vector3.new(86.4308853, 13.1879444, -64.0358429) | |
| 2880 | o193.Rotation = Vector3.new(-180, 0, -150) | |
| 2881 | o193.Anchored = true | |
| 2882 | o193.FormFactor = Enum.FormFactor.Symmetric | |
| 2883 | o193.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2884 | o193.CFrame = CFrame.new(86.4308853, 13.1879444, -64.0358429, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2885 | o193.BottomSurface = Enum.SurfaceType.Smooth | |
| 2886 | o193.TopSurface = Enum.SurfaceType.Smooth | |
| 2887 | o193.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2888 | o193.Position = Vector3.new(86.4308853, 13.1879444, -64.0358429) | |
| 2889 | o193.Orientation = Vector3.new(0, 180, 30) | |
| 2890 | o193.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2891 | o194.Parent = o193 | |
| 2892 | o194.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2893 | o194.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2894 | o195.Parent = o1 | |
| 2895 | o195.Material = Enum.Material.Metal | |
| 2896 | o195.BrickColor = BrickColor.new("Really black")
| |
| 2897 | o195.Position = Vector3.new(86.5110703, 13.1480904, -64.0358582) | |
| 2898 | o195.Rotation = Vector3.new(-180, 0, -150) | |
| 2899 | o195.Anchored = true | |
| 2900 | o195.FormFactor = Enum.FormFactor.Symmetric | |
| 2901 | o195.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2902 | o195.CFrame = CFrame.new(86.5110703, 13.1480904, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2903 | o195.BottomSurface = Enum.SurfaceType.Smooth | |
| 2904 | o195.TopSurface = Enum.SurfaceType.Smooth | |
| 2905 | o195.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2906 | o195.Position = Vector3.new(86.5110703, 13.1480904, -64.0358582) | |
| 2907 | o195.Orientation = Vector3.new(0, 180, 30) | |
| 2908 | o195.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2909 | o196.Parent = o195 | |
| 2910 | o196.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2911 | o196.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2912 | o197.Name = "part" | |
| 2913 | o197.Parent = o1 | |
| 2914 | o197.Material = Enum.Material.Metal | |
| 2915 | o197.BrickColor = BrickColor.new("Mid gray")
| |
| 2916 | o197.Position = Vector3.new(80.8047333, 13.1863022, -68.9424896) | |
| 2917 | o197.Rotation = Vector3.new(25.4500008, 44.5200005, 4.98000002) | |
| 2918 | o197.Anchored = true | |
| 2919 | o197.FormFactor = Enum.FormFactor.Symmetric | |
| 2920 | o197.Size = Vector3.new(1, 8, 1) | |
| 2921 | o197.CFrame = CFrame.new(80.8047333, 13.1863022, -68.9424896, 0.71029669, -0.0618678182, 0.701178372, 0.378563583, 0.873380601, -0.306424677, -0.593437612, 0.483093023, 0.643780291) | |
| 2922 | o197.BottomSurface = Enum.SurfaceType.Smooth | |
| 2923 | o197.TopSurface = Enum.SurfaceType.Smooth | |
| 2924 | o197.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 2925 | o197.Position = Vector3.new(80.8047333, 13.1863022, -68.9424896) | |
| 2926 | o197.Orientation = Vector3.new(17.8400002, 47.4399986, 23.4300003) | |
| 2927 | o197.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 2928 | o198.Parent = o197 | |
| 2929 | o198.Scale = Vector3.new(1, 1, 0.100000001) | |
| 2930 | o198.Scale = Vector3.new(1, 1, 0.100000001) | |
| 2931 | o199.Parent = o1 | |
| 2932 | o199.Material = Enum.Material.Metal | |
| 2933 | o199.BrickColor = BrickColor.new("Really black")
| |
| 2934 | o199.Position = Vector3.new(86.7507858, 13.0179443, -64.0358582) | |
| 2935 | o199.Rotation = Vector3.new(-180, 0, -150) | |
| 2936 | o199.Anchored = true | |
| 2937 | o199.FormFactor = Enum.FormFactor.Symmetric | |
| 2938 | o199.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2939 | o199.CFrame = CFrame.new(86.7507858, 13.0179443, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2940 | o199.BottomSurface = Enum.SurfaceType.Smooth | |
| 2941 | o199.TopSurface = Enum.SurfaceType.Smooth | |
| 2942 | o199.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2943 | o199.Position = Vector3.new(86.7507858, 13.0179443, -64.0358582) | |
| 2944 | o199.Orientation = Vector3.new(0, 180, 30) | |
| 2945 | o199.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2946 | o200.Parent = o199 | |
| 2947 | o200.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2948 | o200.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2949 | o201.Parent = o1 | |
| 2950 | o201.Material = Enum.Material.Metal | |
| 2951 | o201.BrickColor = BrickColor.new("Really black")
| |
| 2952 | o201.Position = Vector3.new(86.5909119, 13.1079617, -64.0358582) | |
| 2953 | o201.Rotation = Vector3.new(-180, 0, -150) | |
| 2954 | o201.Anchored = true | |
| 2955 | o201.FormFactor = Enum.FormFactor.Symmetric | |
| 2956 | o201.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2957 | o201.CFrame = CFrame.new(86.5909119, 13.1079617, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2958 | o201.BottomSurface = Enum.SurfaceType.Smooth | |
| 2959 | o201.TopSurface = Enum.SurfaceType.Smooth | |
| 2960 | o201.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2961 | o201.Position = Vector3.new(86.5909119, 13.1079617, -64.0358582) | |
| 2962 | o201.Orientation = Vector3.new(0, 180, 30) | |
| 2963 | o201.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2964 | o202.Parent = o201 | |
| 2965 | o202.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2966 | o202.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2967 | o203.Parent = o1 | |
| 2968 | o203.Material = Enum.Material.Metal | |
| 2969 | o203.BrickColor = BrickColor.new("Really black")
| |
| 2970 | o203.Position = Vector3.new(86.9108276, 12.9379644, -64.0358582) | |
| 2971 | o203.Rotation = Vector3.new(-180, 0, -150) | |
| 2972 | o203.Anchored = true | |
| 2973 | o203.FormFactor = Enum.FormFactor.Symmetric | |
| 2974 | o203.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2975 | o203.CFrame = CFrame.new(86.9108276, 12.9379644, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2976 | o203.BottomSurface = Enum.SurfaceType.Smooth | |
| 2977 | o203.TopSurface = Enum.SurfaceType.Smooth | |
| 2978 | o203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2979 | o203.Position = Vector3.new(86.9108276, 12.9379644, -64.0358582) | |
| 2980 | o203.Orientation = Vector3.new(0, 180, 30) | |
| 2981 | o203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2982 | o204.Parent = o203 | |
| 2983 | o204.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2984 | o204.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 2985 | o205.Parent = o1 | |
| 2986 | o205.Material = Enum.Material.Metal | |
| 2987 | o205.BrickColor = BrickColor.new("Really black")
| |
| 2988 | o205.Position = Vector3.new(86.6709671, 13.0580463, -64.0358582) | |
| 2989 | o205.Rotation = Vector3.new(-180, 0, -150) | |
| 2990 | o205.Anchored = true | |
| 2991 | o205.FormFactor = Enum.FormFactor.Symmetric | |
| 2992 | o205.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 2993 | o205.CFrame = CFrame.new(86.6709671, 13.0580463, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 2994 | o205.BottomSurface = Enum.SurfaceType.Smooth | |
| 2995 | o205.TopSurface = Enum.SurfaceType.Smooth | |
| 2996 | o205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 2997 | o205.Position = Vector3.new(86.6709671, 13.0580463, -64.0358582) | |
| 2998 | o205.Orientation = Vector3.new(0, 180, 30) | |
| 2999 | o205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3000 | o206.Parent = o205 | |
| 3001 | o206.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3002 | o206.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3003 | o207.Parent = o1 | |
| 3004 | o207.Material = Enum.Material.Metal | |
| 3005 | o207.BrickColor = BrickColor.new("Black")
| |
| 3006 | o207.Position = Vector3.new(86.6408615, 13.0779495, -64.0358582) | |
| 3007 | o207.Rotation = Vector3.new(-180, 0, -150) | |
| 3008 | o207.Anchored = true | |
| 3009 | o207.FormFactor = Enum.FormFactor.Symmetric | |
| 3010 | o207.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3011 | o207.CFrame = CFrame.new(86.6408615, 13.0779495, -64.0358582, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 3012 | o207.BottomSurface = Enum.SurfaceType.Smooth | |
| 3013 | o207.TopSurface = Enum.SurfaceType.Smooth | |
| 3014 | o207.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3015 | o207.Position = Vector3.new(86.6408615, 13.0779495, -64.0358582) | |
| 3016 | o207.Orientation = Vector3.new(0, 180, 30) | |
| 3017 | o207.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3018 | o208.Parent = o207 | |
| 3019 | o208.Scale = Vector3.new(0.649999976, 0.949999988, 0.910000026) | |
| 3020 | o208.Scale = Vector3.new(0.649999976, 0.949999988, 0.910000026) | |
| 3021 | o209.Parent = o1 | |
| 3022 | o209.Material = Enum.Material.Metal | |
| 3023 | o209.Position = Vector3.new(88.5648346, 11.9488964, -65.0458374) | |
| 3024 | o209.Rotation = Vector3.new(-180, 0, -180) | |
| 3025 | o209.Anchored = true | |
| 3026 | o209.FormFactor = Enum.FormFactor.Symmetric | |
| 3027 | o209.Size = Vector3.new(4.68999958, 3, 1) | |
| 3028 | o209.CFrame = CFrame.new(88.5648346, 11.9488964, -65.0458374, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 3029 | o209.BottomSurface = Enum.SurfaceType.Smooth | |
| 3030 | o209.TopSurface = Enum.SurfaceType.Smooth | |
| 3031 | o209.Position = Vector3.new(88.5648346, 11.9488964, -65.0458374) | |
| 3032 | o209.Orientation = Vector3.new(0, 180, 0) | |
| 3033 | o210.Parent = o209 | |
| 3034 | o211.Parent = o1 | |
| 3035 | o211.Material = Enum.Material.Metal | |
| 3036 | o211.Position = Vector3.new(88.5648346, 11.9488983, -67.0458069) | |
| 3037 | o211.Rotation = Vector3.new(-180, 0, -180) | |
| 3038 | o211.Anchored = true | |
| 3039 | o211.FormFactor = Enum.FormFactor.Symmetric | |
| 3040 | o211.Size = Vector3.new(4.68999958, 3, 3) | |
| 3041 | o211.CFrame = CFrame.new(88.5648346, 11.9488983, -67.0458069, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 3042 | o211.BottomSurface = Enum.SurfaceType.Smooth | |
| 3043 | o211.TopSurface = Enum.SurfaceType.Smooth | |
| 3044 | o211.Position = Vector3.new(88.5648346, 11.9488983, -67.0458069) | |
| 3045 | o211.Orientation = Vector3.new(0, 180, 0) | |
| 3046 | o212.Parent = o211 | |
| 3047 | o213.Parent = o1 | |
| 3048 | o213.Material = Enum.Material.Metal | |
| 3049 | o213.Position = Vector3.new(88.5648346, 11.9489002, -69.0457993) | |
| 3050 | o213.Rotation = Vector3.new(-180, 0, -180) | |
| 3051 | o213.Anchored = true | |
| 3052 | o213.FormFactor = Enum.FormFactor.Symmetric | |
| 3053 | o213.Size = Vector3.new(4.68999958, 3, 1) | |
| 3054 | o213.CFrame = CFrame.new(88.5648346, 11.9489002, -69.0457993, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 3055 | o213.BottomSurface = Enum.SurfaceType.Smooth | |
| 3056 | o213.TopSurface = Enum.SurfaceType.Smooth | |
| 3057 | o213.Position = Vector3.new(88.5648346, 11.9489002, -69.0457993) | |
| 3058 | o213.Orientation = Vector3.new(0, 180, 0) | |
| 3059 | o214.Parent = o213 | |
| 3060 | o215.Name = "part" | |
| 3061 | o215.Parent = o1 | |
| 3062 | o215.Material = Enum.Material.Metal | |
| 3063 | o215.Position = Vector3.new(91.9317474, 11.1589355, -64.0458527) | |
| 3064 | o215.Rotation = Vector3.new(-180, 0, 120) | |
| 3065 | o215.Anchored = true | |
| 3066 | o215.FormFactor = Enum.FormFactor.Symmetric | |
| 3067 | o215.Size = Vector3.new(1, 2.4000001, 1) | |
| 3068 | o215.CFrame = CFrame.new(91.9317474, 11.1589355, -64.0458527, -0.49999705, -0.866027176, 0, -0.866027117, 0.499997079, 0, 0, 0, -1) | |
| 3069 | o215.BottomSurface = Enum.SurfaceType.Smooth | |
| 3070 | o215.TopSurface = Enum.SurfaceType.Smooth | |
| 3071 | o215.Position = Vector3.new(91.9317474, 11.1589355, -64.0458527) | |
| 3072 | o215.Orientation = Vector3.new(0, 180, -60) | |
| 3073 | o216.Parent = o215 | |
| 3074 | o216.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3075 | o216.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3076 | o217.Name = "part" | |
| 3077 | o217.Parent = o1 | |
| 3078 | o217.Material = Enum.Material.Metal | |
| 3079 | o217.Position = Vector3.new(90.9817505, 9.39896011, -64.0458527) | |
| 3080 | o217.Rotation = Vector3.new(-180, 0, 120) | |
| 3081 | o217.Anchored = true | |
| 3082 | o217.FormFactor = Enum.FormFactor.Symmetric | |
| 3083 | o217.Size = Vector3.new(1, 2.4000001, 1) | |
| 3084 | o217.CFrame = CFrame.new(90.9817505, 9.39896011, -64.0458527, -0.49999705, -0.866027176, 0, -0.866027117, 0.499997079, 0, 0, 0, -1) | |
| 3085 | o217.BottomSurface = Enum.SurfaceType.Smooth | |
| 3086 | o217.TopSurface = Enum.SurfaceType.Smooth | |
| 3087 | o217.Position = Vector3.new(90.9817505, 9.39896011, -64.0458527) | |
| 3088 | o217.Orientation = Vector3.new(0, 180, -60) | |
| 3089 | o218.Parent = o217 | |
| 3090 | o218.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3091 | o218.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3092 | o219.Parent = o1 | |
| 3093 | o219.BrickColor = BrickColor.new("Reddish brown")
| |
| 3094 | o219.Reflectance = 0.20000000298023 | |
| 3095 | o219.Position = Vector3.new(93.4327545, 9.14897156, -64.0458527) | |
| 3096 | o219.Rotation = Vector3.new(-180, 0, -150) | |
| 3097 | o219.Anchored = true | |
| 3098 | o219.FormFactor = Enum.FormFactor.Symmetric | |
| 3099 | o219.Size = Vector3.new(2.68999958, 3, 1) | |
| 3100 | o219.CFrame = CFrame.new(93.4327545, 9.14897156, -64.0458527, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 3101 | o219.BottomSurface = Enum.SurfaceType.Smooth | |
| 3102 | o219.TopSurface = Enum.SurfaceType.Smooth | |
| 3103 | o219.Color = Color3.new(0.411765, 0.25098, 0.156863) | |
| 3104 | o219.Position = Vector3.new(93.4327545, 9.14897156, -64.0458527) | |
| 3105 | o219.Orientation = Vector3.new(0, 180, 30) | |
| 3106 | o219.Color = Color3.new(0.411765, 0.25098, 0.156863) | |
| 3107 | o220.Parent = o219 | |
| 3108 | o221.Name = "part" | |
| 3109 | o221.Parent = o1 | |
| 3110 | o221.Material = Enum.Material.Metal | |
| 3111 | o221.Position = Vector3.new(88.5648346, 11.9489555, -64.0458527) | |
| 3112 | o221.Rotation = Vector3.new(-180, 0, 30) | |
| 3113 | o221.Anchored = true | |
| 3114 | o221.FormFactor = Enum.FormFactor.Symmetric | |
| 3115 | o221.Size = Vector3.new(1, 3.4000001, 1) | |
| 3116 | o221.CFrame = CFrame.new(88.5648346, 11.9489555, -64.0458527, 0.866023123, -0.500004053, 0, -0.500004053, -0.866023123, 0, 0, 0, -1) | |
| 3117 | o221.BottomSurface = Enum.SurfaceType.Smooth | |
| 3118 | o221.TopSurface = Enum.SurfaceType.Smooth | |
| 3119 | o221.Position = Vector3.new(88.5648346, 11.9489555, -64.0458527) | |
| 3120 | o221.Orientation = Vector3.new(0, 180, -150) | |
| 3121 | o222.Parent = o221 | |
| 3122 | o222.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3123 | o222.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3124 | o223.Name = "part" | |
| 3125 | o223.Parent = o1 | |
| 3126 | o223.Material = Enum.Material.Metal | |
| 3127 | o223.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3128 | o223.Position = Vector3.new(88.5648346, 11.9489641, -70.6057968) | |
| 3129 | o223.Rotation = Vector3.new(-90, 0, 0) | |
| 3130 | o223.Anchored = true | |
| 3131 | o223.FormFactor = Enum.FormFactor.Symmetric | |
| 3132 | o223.Size = Vector3.new(1.99999952, 1, 1.99999952) | |
| 3133 | o223.CFrame = CFrame.new(88.5648346, 11.9489641, -70.6057968, 1, 0, -0, 0, 0, 1, 0, -1, 0) | |
| 3134 | o223.BottomSurface = Enum.SurfaceType.Smooth | |
| 3135 | o223.TopSurface = Enum.SurfaceType.Smooth | |
| 3136 | o223.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 3137 | o223.Position = Vector3.new(88.5648346, 11.9489641, -70.6057968) | |
| 3138 | o223.Orientation = Vector3.new(-90, 0, 0) | |
| 3139 | o223.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 3140 | o224.Parent = o223 | |
| 3141 | o224.Scale = Vector3.new(1, 0.300000012, 1) | |
| 3142 | o224.Scale = Vector3.new(1, 0.300000012, 1) | |
| 3143 | o225.Name = "part" | |
| 3144 | o225.Parent = o1 | |
| 3145 | o225.Material = Enum.Material.Metal | |
| 3146 | o225.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3147 | o225.Position = Vector3.new(88.5648346, 11.9489555, -63.4858627) | |
| 3148 | o225.Rotation = Vector3.new(-90, 0, 0) | |
| 3149 | o225.Anchored = true | |
| 3150 | o225.FormFactor = Enum.FormFactor.Symmetric | |
| 3151 | o225.Size = Vector3.new(1.99999952, 1, 1.99999952) | |
| 3152 | o225.CFrame = CFrame.new(88.5648346, 11.9489555, -63.4858627, 1, 0, -0, 0, 0, 1, 0, -1, 0) | |
| 3153 | o225.BottomSurface = Enum.SurfaceType.Smooth | |
| 3154 | o225.TopSurface = Enum.SurfaceType.Smooth | |
| 3155 | o225.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 3156 | o225.Position = Vector3.new(88.5648346, 11.9489555, -63.4858627) | |
| 3157 | o225.Orientation = Vector3.new(-90, 0, 0) | |
| 3158 | o225.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 3159 | o226.Parent = o225 | |
| 3160 | o226.Scale = Vector3.new(1, 0.300000012, 1) | |
| 3161 | o226.Scale = Vector3.new(1, 0.300000012, 1) | |
| 3162 | o227.Parent = o1 | |
| 3163 | o227.Material = Enum.Material.Metal | |
| 3164 | o227.Position = Vector3.new(88.5648346, 13.9488297, -67.0458221) | |
| 3165 | o227.Rotation = Vector3.new(-180, 0, -180) | |
| 3166 | o227.Anchored = true | |
| 3167 | o227.FormFactor = Enum.FormFactor.Symmetric | |
| 3168 | o227.Size = Vector3.new(2.69000006, 1, 3) | |
| 3169 | o227.CFrame = CFrame.new(88.5648346, 13.9488297, -67.0458221, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 3170 | o227.BottomSurface = Enum.SurfaceType.Smooth | |
| 3171 | o227.TopSurface = Enum.SurfaceType.Smooth | |
| 3172 | o227.Position = Vector3.new(88.5648346, 13.9488297, -67.0458221) | |
| 3173 | o227.Orientation = Vector3.new(0, 180, 0) | |
| 3174 | o228.Parent = o227 | |
| 3175 | o229.Parent = o1 | |
| 3176 | o229.Material = Enum.Material.Metal | |
| 3177 | o229.Position = Vector3.new(88.1318436, 12.1989622, -70.0457916) | |
| 3178 | o229.Rotation = Vector3.new(-180, 0, -150) | |
| 3179 | o229.Anchored = true | |
| 3180 | o229.FormFactor = Enum.FormFactor.Symmetric | |
| 3181 | o229.Size = Vector3.new(5.68999958, 3, 1) | |
| 3182 | o229.CFrame = CFrame.new(88.1318436, 12.1989622, -70.0457916, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 3183 | o229.BottomSurface = Enum.SurfaceType.Smooth | |
| 3184 | o229.TopSurface = Enum.SurfaceType.Smooth | |
| 3185 | o229.Position = Vector3.new(88.1318436, 12.1989622, -70.0457916) | |
| 3186 | o229.Orientation = Vector3.new(0, 180, 30) | |
| 3187 | o230.Parent = o229 | |
| 3188 | o231.Parent = o1 | |
| 3189 | o231.Material = Enum.Material.Metal | |
| 3190 | o231.Position = Vector3.new(88.1318283, 12.1988935, -64.0458527) | |
| 3191 | o231.Rotation = Vector3.new(-180, 0, -150) | |
| 3192 | o231.Anchored = true | |
| 3193 | o231.FormFactor = Enum.FormFactor.Symmetric | |
| 3194 | o231.Size = Vector3.new(5.68999958, 3, 1) | |
| 3195 | o231.CFrame = CFrame.new(88.1318283, 12.1988935, -64.0458527, -0.86602354, 0.500003278, 0, 0.500003278, 0.86602354, 0, 0, 0, -1) | |
| 3196 | o231.BottomSurface = Enum.SurfaceType.Smooth | |
| 3197 | o231.TopSurface = Enum.SurfaceType.Smooth | |
| 3198 | o231.Position = Vector3.new(88.1318283, 12.1988935, -64.0458527) | |
| 3199 | o231.Orientation = Vector3.new(0, 180, 30) | |
| 3200 | o232.Parent = o231 | |
| 3201 | o233.Name = "part" | |
| 3202 | o233.Parent = o1 | |
| 3203 | o233.Material = Enum.Material.Metal | |
| 3204 | o233.Position = Vector3.new(88.5648346, 11.9489622, -70.0457916) | |
| 3205 | o233.Rotation = Vector3.new(-180, 0, 30) | |
| 3206 | o233.Anchored = true | |
| 3207 | o233.FormFactor = Enum.FormFactor.Symmetric | |
| 3208 | o233.Size = Vector3.new(1, 3.4000001, 1) | |
| 3209 | o233.CFrame = CFrame.new(88.5648346, 11.9489622, -70.0457916, 0.866023123, -0.500004053, 0, -0.500004053, -0.866023123, 0, 0, 0, -1) | |
| 3210 | o233.BottomSurface = Enum.SurfaceType.Smooth | |
| 3211 | o233.TopSurface = Enum.SurfaceType.Smooth | |
| 3212 | o233.Position = Vector3.new(88.5648346, 11.9489622, -70.0457916) | |
| 3213 | o233.Orientation = Vector3.new(0, 180, -150) | |
| 3214 | o234.Parent = o233 | |
| 3215 | o234.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3216 | o234.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3217 | o235.Name = "part" | |
| 3218 | o235.Parent = o1 | |
| 3219 | o235.Material = Enum.Material.Metal | |
| 3220 | o235.Position = Vector3.new(91.9317398, 11.1589403, -70.0457764) | |
| 3221 | o235.Rotation = Vector3.new(-180, 0, 120) | |
| 3222 | o235.Anchored = true | |
| 3223 | o235.FormFactor = Enum.FormFactor.Symmetric | |
| 3224 | o235.Size = Vector3.new(1, 2.4000001, 1) | |
| 3225 | o235.CFrame = CFrame.new(91.9317398, 11.1589403, -70.0457764, -0.49999705, -0.866027176, 0, -0.866027117, 0.499997079, 0, 0, 0, -1) | |
| 3226 | o235.BottomSurface = Enum.SurfaceType.Smooth | |
| 3227 | o235.TopSurface = Enum.SurfaceType.Smooth | |
| 3228 | o235.Position = Vector3.new(91.9317398, 11.1589403, -70.0457764) | |
| 3229 | o235.Orientation = Vector3.new(0, 180, -60) | |
| 3230 | o236.Parent = o235 | |
| 3231 | o236.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3232 | o236.Scale = Vector3.new(1, 1, 0.300000012) | |
| 3233 | o237.Parent = o1 | |
| 3234 | o237.Material = Enum.Material.Metal | |
| 3235 | o237.BrickColor = BrickColor.new("Really black")
| |
| 3236 | o237.Position = Vector3.new(86.5146713, 13.1542702, -70.0657654) | |
| 3237 | o237.Rotation = Vector3.new(0, 0, -30) | |
| 3238 | o237.Anchored = true | |
| 3239 | o237.FormFactor = Enum.FormFactor.Symmetric | |
| 3240 | o237.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3241 | o237.CFrame = CFrame.new(86.5146713, 13.1542702, -70.0657654, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3242 | o237.BottomSurface = Enum.SurfaceType.Smooth | |
| 3243 | o237.TopSurface = Enum.SurfaceType.Smooth | |
| 3244 | o237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3245 | o237.Position = Vector3.new(86.5146713, 13.1542702, -70.0657654) | |
| 3246 | o237.Orientation = Vector3.new(0, 0, -30) | |
| 3247 | o237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3248 | o238.Parent = o237 | |
| 3249 | o238.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3250 | o238.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3251 | o239.Parent = o1 | |
| 3252 | o239.Material = Enum.Material.Metal | |
| 3253 | o239.BrickColor = BrickColor.new("Really black")
| |
| 3254 | o239.Position = Vector3.new(86.3653793, 13.2528782, -70.0657501) | |
| 3255 | o239.Rotation = Vector3.new(0, 0, -30) | |
| 3256 | o239.Anchored = true | |
| 3257 | o239.FormFactor = Enum.FormFactor.Symmetric | |
| 3258 | o239.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3259 | o239.CFrame = CFrame.new(86.3653793, 13.2528782, -70.0657501, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3260 | o239.BottomSurface = Enum.SurfaceType.Smooth | |
| 3261 | o239.TopSurface = Enum.SurfaceType.Smooth | |
| 3262 | o239.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3263 | o239.Position = Vector3.new(86.3653793, 13.2528782, -70.0657501) | |
| 3264 | o239.Orientation = Vector3.new(0, 0, -30) | |
| 3265 | o239.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3266 | o240.Parent = o239 | |
| 3267 | o240.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3268 | o240.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3269 | o241.Parent = o1 | |
| 3270 | o241.Material = Enum.Material.Metal | |
| 3271 | o241.BrickColor = BrickColor.new("Really black")
| |
| 3272 | o241.Position = Vector3.new(86.8964767, 12.9131641, -70.0657806) | |
| 3273 | o241.Rotation = Vector3.new(0, 0, -30) | |
| 3274 | o241.Anchored = true | |
| 3275 | o241.FormFactor = Enum.FormFactor.Symmetric | |
| 3276 | o241.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3277 | o241.CFrame = CFrame.new(86.8964767, 12.9131641, -70.0657806, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3278 | o241.BottomSurface = Enum.SurfaceType.Smooth | |
| 3279 | o241.TopSurface = Enum.SurfaceType.Smooth | |
| 3280 | o241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3281 | o241.Position = Vector3.new(86.8964767, 12.9131641, -70.0657806) | |
| 3282 | o241.Orientation = Vector3.new(0, 0, -30) | |
| 3283 | o241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3284 | o242.Parent = o241 | |
| 3285 | o242.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3286 | o242.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3287 | o243.Parent = o1 | |
| 3288 | o243.Material = Enum.Material.Metal | |
| 3289 | o243.BrickColor = BrickColor.new("Really black")
| |
| 3290 | o243.Position = Vector3.new(86.5893097, 13.1052055, -70.0657501) | |
| 3291 | o243.Rotation = Vector3.new(0, 0, -30) | |
| 3292 | o243.Anchored = true | |
| 3293 | o243.FormFactor = Enum.FormFactor.Symmetric | |
| 3294 | o243.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3295 | o243.CFrame = CFrame.new(86.5893097, 13.1052055, -70.0657501, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3296 | o243.BottomSurface = Enum.SurfaceType.Smooth | |
| 3297 | o243.TopSurface = Enum.SurfaceType.Smooth | |
| 3298 | o243.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3299 | o243.Position = Vector3.new(86.5893097, 13.1052055, -70.0657501) | |
| 3300 | o243.Orientation = Vector3.new(0, 0, -30) | |
| 3301 | o243.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3302 | o244.Parent = o243 | |
| 3303 | o244.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3304 | o244.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3305 | o245.Parent = o1 | |
| 3306 | o245.Material = Enum.Material.Metal | |
| 3307 | o245.BrickColor = BrickColor.new("Really black")
| |
| 3308 | o245.Position = Vector3.new(86.8218613, 12.9622202, -70.0657654) | |
| 3309 | o245.Rotation = Vector3.new(0, 0, -30) | |
| 3310 | o245.Anchored = true | |
| 3311 | o245.FormFactor = Enum.FormFactor.Symmetric | |
| 3312 | o245.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3313 | o245.CFrame = CFrame.new(86.8218613, 12.9622202, -70.0657654, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3314 | o245.BottomSurface = Enum.SurfaceType.Smooth | |
| 3315 | o245.TopSurface = Enum.SurfaceType.Smooth | |
| 3316 | o245.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3317 | o245.Position = Vector3.new(86.8218613, 12.9622202, -70.0657654) | |
| 3318 | o245.Orientation = Vector3.new(0, 0, -30) | |
| 3319 | o245.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3320 | o246.Parent = o245 | |
| 3321 | o246.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3322 | o246.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3323 | o247.Parent = o1 | |
| 3324 | o247.Material = Enum.Material.Metal | |
| 3325 | o247.BrickColor = BrickColor.new("Black")
| |
| 3326 | o247.Position = Vector3.new(86.621582, 13.0890942, -70.0657501) | |
| 3327 | o247.Rotation = Vector3.new(0, 0, -30) | |
| 3328 | o247.Anchored = true | |
| 3329 | o247.FormFactor = Enum.FormFactor.Symmetric | |
| 3330 | o247.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3331 | o247.CFrame = CFrame.new(86.621582, 13.0890942, -70.0657501, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3332 | o247.BottomSurface = Enum.SurfaceType.Smooth | |
| 3333 | o247.TopSurface = Enum.SurfaceType.Smooth | |
| 3334 | o247.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3335 | o247.Position = Vector3.new(86.621582, 13.0890942, -70.0657501) | |
| 3336 | o247.Orientation = Vector3.new(0, 0, -30) | |
| 3337 | o247.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3338 | o248.Parent = o247 | |
| 3339 | o248.Scale = Vector3.new(0.649999976, 0.949999988, 0.910000026) | |
| 3340 | o248.Scale = Vector3.new(0.649999976, 0.949999988, 0.910000026) | |
| 3341 | o249.Parent = o1 | |
| 3342 | o249.Material = Enum.Material.Metal | |
| 3343 | o249.BrickColor = BrickColor.new("Really black")
| |
| 3344 | o249.Position = Vector3.new(86.7472153, 13.0117302, -70.0657501) | |
| 3345 | o249.Rotation = Vector3.new(0, 0, -30) | |
| 3346 | o249.Anchored = true | |
| 3347 | o249.FormFactor = Enum.FormFactor.Symmetric | |
| 3348 | o249.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3349 | o249.CFrame = CFrame.new(86.7472153, 13.0117302, -70.0657501, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3350 | o249.BottomSurface = Enum.SurfaceType.Smooth | |
| 3351 | o249.TopSurface = Enum.SurfaceType.Smooth | |
| 3352 | o249.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3353 | o249.Position = Vector3.new(86.7472153, 13.0117302, -70.0657501) | |
| 3354 | o249.Orientation = Vector3.new(0, 0, -30) | |
| 3355 | o249.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3356 | o250.Parent = o249 | |
| 3357 | o250.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3358 | o250.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3359 | o251.Parent = o1 | |
| 3360 | o251.Material = Enum.Material.Metal | |
| 3361 | o251.BrickColor = BrickColor.new("Really black")
| |
| 3362 | o251.Position = Vector3.new(86.4400253, 13.2037601, -70.0657806) | |
| 3363 | o251.Rotation = Vector3.new(0, 0, -30) | |
| 3364 | o251.Anchored = true | |
| 3365 | o251.FormFactor = Enum.FormFactor.Symmetric | |
| 3366 | o251.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3367 | o251.CFrame = CFrame.new(86.4400253, 13.2037601, -70.0657806, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3368 | o251.BottomSurface = Enum.SurfaceType.Smooth | |
| 3369 | o251.TopSurface = Enum.SurfaceType.Smooth | |
| 3370 | o251.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3371 | o251.Position = Vector3.new(86.4400253, 13.2037601, -70.0657806) | |
| 3372 | o251.Orientation = Vector3.new(0, 0, -30) | |
| 3373 | o251.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3374 | o252.Parent = o251 | |
| 3375 | o252.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3376 | o252.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3377 | o253.Parent = o1 | |
| 3378 | o253.Material = Enum.Material.Metal | |
| 3379 | o253.BrickColor = BrickColor.new("Really black")
| |
| 3380 | o253.Position = Vector3.new(86.6725616, 13.0608215, -70.0657654) | |
| 3381 | o253.Rotation = Vector3.new(0, 0, -30) | |
| 3382 | o253.Anchored = true | |
| 3383 | o253.FormFactor = Enum.FormFactor.Symmetric | |
| 3384 | o253.Size = Vector3.new(1, 3.20000005, 1.20000005) | |
| 3385 | o253.CFrame = CFrame.new(86.6725616, 13.0608215, -70.0657654, 0.866023123, 0.500004053, 0, -0.500004053, 0.866023123, 0, 0, 0, 1) | |
| 3386 | o253.BottomSurface = Enum.SurfaceType.Smooth | |
| 3387 | o253.TopSurface = Enum.SurfaceType.Smooth | |
| 3388 | o253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3389 | o253.Position = Vector3.new(86.6725616, 13.0608215, -70.0657654) | |
| 3390 | o253.Orientation = Vector3.new(0, 0, -30) | |
| 3391 | o253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 3392 | o254.Parent = o253 | |
| 3393 | o254.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3394 | o254.Scale = Vector3.new(0.0500000007, 0.975000024, 0.939999998) | |
| 3395 | o255.Name = "Brick" | |
| 3396 | o255.Parent = o1 | |
| 3397 | o255.Material = Enum.Material.Metal | |
| 3398 | o255.Position = Vector3.new(87.5575333, 18.4537048, -66.5406494) | |
| 3399 | o255.Rotation = Vector3.new(95.5199966, -8.73999977, 93.1500015) | |
| 3400 | o255.Anchored = true | |
| 3401 | o255.FormFactor = Enum.FormFactor.Custom | |
| 3402 | o255.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3403 | o255.CFrame = CFrame.new(87.5575333, 18.4537048, -66.5406494, -0.0543824658, -0.986903846, -0.151866913, -0.0877097547, 0.156225458, -0.983819425, 0.994660497, -0.0401823223, -0.0950570181) | |
| 3404 | o255.BottomSurface = Enum.SurfaceType.Smooth | |
| 3405 | o255.TopSurface = Enum.SurfaceType.Smooth | |
| 3406 | o255.Position = Vector3.new(87.5575333, 18.4537048, -66.5406494) | |
| 3407 | o255.Orientation = Vector3.new(79.6800003, -122.040001, -29.3099995) | |
| 3408 | o256.Name = "Brick" | |
| 3409 | o256.Parent = o1 | |
| 3410 | o256.Material = Enum.Material.Metal | |
| 3411 | o256.Position = Vector3.new(87.2150955, 17.9014435, -64.5320053) | |
| 3412 | o256.Rotation = Vector3.new(117.480003, -5.1500001, 105.309998) | |
| 3413 | o256.Anchored = true | |
| 3414 | o256.FormFactor = Enum.FormFactor.Custom | |
| 3415 | o256.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3416 | o256.CFrame = CFrame.new(87.2150955, 17.9014435, -64.5320053, -0.262945771, -0.960629821, -0.0897221044, -0.424040824, 0.198597014, -0.883599818, 0.866630793, -0.194293007, -0.459566474) | |
| 3417 | o256.BottomSurface = Enum.SurfaceType.Smooth | |
| 3418 | o256.TopSurface = Enum.SurfaceType.Smooth | |
| 3419 | o256.Position = Vector3.new(87.2150955, 17.9014435, -64.5320053) | |
| 3420 | o256.Orientation = Vector3.new(62.0800018, -168.949997, -64.9000015) | |
| 3421 | o257.Parent = o1 | |
| 3422 | o257.Material = Enum.Material.Metal | |
| 3423 | o257.Position = Vector3.new(85.7199249, 11.9488983, -67.046814) | |
| 3424 | o257.Rotation = Vector3.new(0, 90, 0) | |
| 3425 | o257.Anchored = true | |
| 3426 | o257.FormFactor = Enum.FormFactor.Symmetric | |
| 3427 | o257.Size = Vector3.new(4.99999952, 3, 1) | |
| 3428 | o257.CFrame = CFrame.new(85.7199249, 11.9488983, -67.046814, 0, 0, 1, 0, 1, -0, -1, 0, 0) | |
| 3429 | o257.BottomSurface = Enum.SurfaceType.Smooth | |
| 3430 | o257.Position = Vector3.new(85.7199249, 11.9488983, -67.046814) | |
| 3431 | o257.Orientation = Vector3.new(0, 90, 0) | |
| 3432 | o258.Parent = o1 | |
| 3433 | o258.Material = Enum.Material.Metal | |
| 3434 | o258.Position = Vector3.new(89.0658264, 9.94889832, -65.0458755) | |
| 3435 | o258.Rotation = Vector3.new(-180, 0, 0) | |
| 3436 | o258.Anchored = true | |
| 3437 | o258.FormFactor = Enum.FormFactor.Symmetric | |
| 3438 | o258.Size = Vector3.new(5.68999958, 1, 1) | |
| 3439 | o258.CFrame = CFrame.new(89.0658264, 9.94889832, -65.0458755, 1, 0, 0, 0, -1, 0, 0, 0, -1) | |
| 3440 | o258.BottomSurface = Enum.SurfaceType.Smooth | |
| 3441 | o258.Position = Vector3.new(89.0658264, 9.94889832, -65.0458755) | |
| 3442 | o258.Orientation = Vector3.new(0, 180, 180) | |
| 3443 | o259.Parent = o1 | |
| 3444 | o259.Material = Enum.Material.Metal | |
| 3445 | o259.Position = Vector3.new(91.9098053, 11.9488983, -67.0468292) | |
| 3446 | o259.Rotation = Vector3.new(0, -90, 0) | |
| 3447 | o259.Anchored = true | |
| 3448 | o259.FormFactor = Enum.FormFactor.Symmetric | |
| 3449 | o259.Size = Vector3.new(4.99999952, 3, 2) | |
| 3450 | o259.CFrame = CFrame.new(91.9098053, 11.9488983, -67.0468292, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 3451 | o259.BottomSurface = Enum.SurfaceType.Smooth | |
| 3452 | o259.Position = Vector3.new(91.9098053, 11.9488983, -67.0468292) | |
| 3453 | o259.Orientation = Vector3.new(0, -90, 0) | |
| 3454 | o260.Parent = o1 | |
| 3455 | o260.Material = Enum.Material.Metal | |
| 3456 | o260.Position = Vector3.new(90.4098206, 13.9489536, -67.0458221) | |
| 3457 | o260.Rotation = Vector3.new(0, -90, 0) | |
| 3458 | o260.Anchored = true | |
| 3459 | o260.FormFactor = Enum.FormFactor.Symmetric | |
| 3460 | o260.Size = Vector3.new(2.99999952, 1, 1) | |
| 3461 | o260.CFrame = CFrame.new(90.4098206, 13.9489536, -67.0458221, 0, 0, -1, 0, 1, 0, 1, 0, 0) | |
| 3462 | o260.BottomSurface = Enum.SurfaceType.Smooth | |
| 3463 | o260.Position = Vector3.new(90.4098206, 13.9489536, -67.0458221) | |
| 3464 | o260.Orientation = Vector3.new(0, -90, 0) | |
| 3465 | o261.Parent = o1 | |
| 3466 | o261.Material = Enum.Material.Metal | |
| 3467 | o261.Position = Vector3.new(88.5648346, 13.9489555, -69.0457993) | |
| 3468 | o261.Anchored = true | |
| 3469 | o261.FormFactor = Enum.FormFactor.Symmetric | |
| 3470 | o261.Size = Vector3.new(2.69999933, 1, 1) | |
| 3471 | o261.CFrame = CFrame.new(88.5648346, 13.9489555, -69.0457993, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 3472 | o261.BottomSurface = Enum.SurfaceType.Smooth | |
| 3473 | o261.Position = Vector3.new(88.5648346, 13.9489555, -69.0457993) | |
| 3474 | o262.Parent = o1 | |
| 3475 | o262.Material = Enum.Material.Metal | |
| 3476 | o262.Position = Vector3.new(86.7198257, 13.9489536, -67.0458221) | |
| 3477 | o262.Rotation = Vector3.new(0, 90, 0) | |
| 3478 | o262.Anchored = true | |
| 3479 | o262.FormFactor = Enum.FormFactor.Symmetric | |
| 3480 | o262.Size = Vector3.new(2.99999952, 1, 1) | |
| 3481 | o262.CFrame = CFrame.new(86.7198257, 13.9489536, -67.0458221, 0, 0, 1, 0, 1, -0, -1, 0, 0) | |
| 3482 | o262.BottomSurface = Enum.SurfaceType.Smooth | |
| 3483 | o262.Position = Vector3.new(86.7198257, 13.9489536, -67.0458221) | |
| 3484 | o262.Orientation = Vector3.new(0, 90, 0) | |
| 3485 | o263.Name = "Custom Blocks" | |
| 3486 | o263.Parent = o1 | |
| 3487 | o263.Material = Enum.Material.Metal | |
| 3488 | o263.Position = Vector3.new(86.7198257, 13.9489536, -65.0458374) | |
| 3489 | o263.Anchored = true | |
| 3490 | o263.Size = Vector3.new(1, 1, 1) | |
| 3491 | o263.CFrame = CFrame.new(86.7198257, 13.9489536, -65.0458374, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 3492 | o263.Position = Vector3.new(86.7198257, 13.9489536, -65.0458374) | |
| 3493 | o264.Name = "Custom Blocks" | |
| 3494 | o264.Parent = o1 | |
| 3495 | o264.Material = Enum.Material.Metal | |
| 3496 | o264.Position = Vector3.new(90.4098129, 13.9489517, -65.0458374) | |
| 3497 | o264.Rotation = Vector3.new(0, 90, 0) | |
| 3498 | o264.Anchored = true | |
| 3499 | o264.Size = Vector3.new(1, 1, 1) | |
| 3500 | o264.CFrame = CFrame.new(90.4098129, 13.9489517, -65.0458374, 0, 0, 1, 0, 1, -0, -1, 0, 0) | |
| 3501 | o264.Position = Vector3.new(90.4098129, 13.9489517, -65.0458374) | |
| 3502 | o264.Orientation = Vector3.new(0, 90, 0) | |
| 3503 | o265.Name = "Brick" | |
| 3504 | o265.Parent = o1 | |
| 3505 | o265.Material = Enum.Material.Metal | |
| 3506 | o265.Position = Vector3.new(84.8991852, 14.1670256, -61.9887619) | |
| 3507 | o265.Rotation = Vector3.new(167.399994, 19.2999992, 123.940002) | |
| 3508 | o265.Anchored = true | |
| 3509 | o265.FormFactor = Enum.FormFactor.Custom | |
| 3510 | o265.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3511 | o265.CFrame = CFrame.new(84.8991852, 14.1670256, -61.9887619, -0.527006686, -0.782962978, 0.330504179, -0.849860728, 0.485104412, -0.20593828, 0.000913002936, -0.389413327, -0.921062768) | |
| 3512 | o265.BottomSurface = Enum.SurfaceType.Smooth | |
| 3513 | o265.TopSurface = Enum.SurfaceType.Smooth | |
| 3514 | o265.Position = Vector3.new(84.8991852, 14.1670256, -61.9887619) | |
| 3515 | o265.Orientation = Vector3.new(11.8800001, 160.259995, -60.2799988) | |
| 3516 | o266.Name = "Brick" | |
| 3517 | o266.Parent = o1 | |
| 3518 | o266.Material = Enum.Material.Metal | |
| 3519 | o266.Position = Vector3.new(86.5921631, 14.9242315, -64.9492722) | |
| 3520 | o266.Rotation = Vector3.new(143.089996, -7.76999998, 115.470001) | |
| 3521 | o266.Anchored = true | |
| 3522 | o266.FormFactor = Enum.FormFactor.Custom | |
| 3523 | o266.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3524 | o266.CFrame = CFrame.new(86.5921631, 14.9242315, -64.9492722, -0.426016927, -0.894554138, -0.13521345, -0.687008083, 0.417113274, -0.595009744, 0.588667691, -0.160591468, -0.79226315) | |
| 3525 | o266.BottomSurface = Enum.SurfaceType.Smooth | |
| 3526 | o266.TopSurface = Enum.SurfaceType.Smooth | |
| 3527 | o266.Position = Vector3.new(86.5921631, 14.9242315, -64.9492722) | |
| 3528 | o266.Orientation = Vector3.new(36.5099983, -170.309998, -58.7400017) | |
| 3529 | o267.Name = "Brick" | |
| 3530 | o267.Parent = o1 | |
| 3531 | o267.Material = Enum.Material.Metal | |
| 3532 | o267.Position = Vector3.new(86.3424911, 14.5217476, -64.6751938) | |
| 3533 | o267.Rotation = Vector3.new(153.600006, -2.3900001, 118.790001) | |
| 3534 | o267.Anchored = true | |
| 3535 | o267.FormFactor = Enum.FormFactor.Custom | |
| 3536 | o267.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3537 | o267.CFrame = CFrame.new(86.3424911, 14.5217476, -64.6751938, -0.481221795, -0.875604928, -0.0417323038, -0.776030838, 0.447670996, -0.444259942, 0.407678515, -0.181401983, -0.894925535) | |
| 3538 | o267.BottomSurface = Enum.SurfaceType.Smooth | |
| 3539 | o267.TopSurface = Enum.SurfaceType.Smooth | |
| 3540 | o267.Position = Vector3.new(86.3424911, 14.5217476, -64.6751938) | |
| 3541 | o267.Orientation = Vector3.new(26.3799992, -177.330002, -60.0200005) | |
| 3542 | o268.Name = "Brick" | |
| 3543 | o268.Parent = o1 | |
| 3544 | o268.Material = Enum.Material.Metal | |
| 3545 | o268.Position = Vector3.new(86.0683594, 14.0796318, -64.5055618) | |
| 3546 | o268.Rotation = Vector3.new(163.789993, 3.49000001, 121.089996) | |
| 3547 | o268.Anchored = true | |
| 3548 | o268.FormFactor = Enum.FormFactor.Custom | |
| 3549 | o268.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3550 | o268.CFrame = CFrame.new(86.0683594, 14.0796318, -64.5055618, -0.515383124, -0.854789197, 0.0609579682, -0.831117809, 0.481238425, -0.278662622, 0.208862454, -0.19428125, -0.958452582) | |
| 3551 | o268.BottomSurface = Enum.SurfaceType.Smooth | |
| 3552 | o268.TopSurface = Enum.SurfaceType.Smooth | |
| 3553 | o268.Position = Vector3.new(86.0683594, 14.0796318, -64.5055618) | |
| 3554 | o268.Orientation = Vector3.new(16.1800003, 176.360001, -59.9300003) | |
| 3555 | o269.Name = "Brick" | |
| 3556 | o269.Parent = o1 | |
| 3557 | o269.Material = Enum.Material.Metal | |
| 3558 | o269.Position = Vector3.new(86.8062897, 15.2695065, -65.3158569) | |
| 3559 | o269.Rotation = Vector3.new(132.119995, -12.4399996, 111.139999) | |
| 3560 | o269.Anchored = true | |
| 3561 | o269.FormFactor = Enum.FormFactor.Custom | |
| 3562 | o269.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3563 | o269.CFrame = CFrame.new(86.8062897, 15.2695065, -65.3158569, -0.352182239, -0.910807788, -0.215399489, -0.56794256, 0.390902489, -0.724317968, 0.743914723, -0.13275741, -0.654955328) | |
| 3564 | o269.BottomSurface = Enum.SurfaceType.Smooth | |
| 3565 | o269.TopSurface = Enum.SurfaceType.Smooth | |
| 3566 | o269.Position = Vector3.new(86.8062897, 15.2695065, -65.3158569) | |
| 3567 | o269.Orientation = Vector3.new(46.4099998, -161.800003, -55.4599991) | |
| 3568 | o270.Name = "Brick" | |
| 3569 | o270.Parent = o1 | |
| 3570 | o270.Material = Enum.Material.Metal | |
| 3571 | o270.Position = Vector3.new(85.4555511, 15.0639696, -62.1006813) | |
| 3572 | o270.Rotation = Vector3.new(157.740005, 13.2700005, 121.970001) | |
| 3573 | o270.Anchored = true | |
| 3574 | o270.FormFactor = Enum.FormFactor.Custom | |
| 3575 | o270.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3576 | o270.CFrame = CFrame.new(85.4555511, 15.0639696, -62.1006813, -0.515383124, -0.825639725, 0.22956343, -0.831117809, 0.416283935, -0.368715316, 0.208862454, -0.38082388, -0.900749505) | |
| 3577 | o270.BottomSurface = Enum.SurfaceType.Smooth | |
| 3578 | o270.TopSurface = Enum.SurfaceType.Smooth | |
| 3579 | o270.Position = Vector3.new(85.4555511, 15.0639696, -62.1006813) | |
| 3580 | o270.Orientation = Vector3.new(21.6399994, 165.699997, -63.3899994) | |
| 3581 | o271.Name = "Brick" | |
| 3582 | o271.Parent = o1 | |
| 3583 | o271.Material = Enum.Material.Metal | |
| 3584 | o271.Position = Vector3.new(86.4655533, 16.6927528, -71.175766) | |
| 3585 | o271.Rotation = Vector3.new(41.6800003, 2.6500001, 64.6999969) | |
| 3586 | o271.Anchored = true | |
| 3587 | o271.FormFactor = Enum.FormFactor.Custom | |
| 3588 | o271.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3589 | o271.CFrame = CFrame.new(86.4655533, 16.6927528, -71.175766, 0.426868021, -0.903128803, 0.0462825522, 0.688369274, 0.291318089, -0.664290309, 0.586456776, 0.315423757, 0.746040463) | |
| 3590 | o271.BottomSurface = Enum.SurfaceType.Smooth | |
| 3591 | o271.TopSurface = Enum.SurfaceType.Smooth | |
| 3592 | o271.Position = Vector3.new(86.4655533, 16.6927528, -71.175766) | |
| 3593 | o271.Orientation = Vector3.new(41.6300011, 3.54999995, 67.0599976) | |
| 3594 | o272.Name = "Brick" | |
| 3595 | o272.Parent = o1 | |
| 3596 | o272.Material = Enum.Material.Metal | |
| 3597 | o272.Position = Vector3.new(85.9807205, 15.9106684, -71.7050018) | |
| 3598 | o272.Rotation = Vector3.new(31.8099995, 7.71999979, 60.9099998) | |
| 3599 | o272.Anchored = true | |
| 3600 | o272.FormFactor = Enum.FormFactor.Custom | |
| 3601 | o272.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3602 | o272.CFrame = CFrame.new(85.9807205, 15.9106684, -71.7050018, 0.48181048, -0.865926504, 0.134275481, 0.776972353, 0.351310104, -0.522393703, 0.405182242, 0.356023133, 0.842065871) | |
| 3603 | o272.BottomSurface = Enum.SurfaceType.Smooth | |
| 3604 | o272.TopSurface = Enum.SurfaceType.Smooth | |
| 3605 | o272.Position = Vector3.new(85.9807205, 15.9106684, -71.7050018) | |
| 3606 | o272.Orientation = Vector3.new(31.4899998, 9.06000042, 65.6699982) | |
| 3607 | o273.Name = "Brick" | |
| 3608 | o273.Parent = o1 | |
| 3609 | o273.Material = Enum.Material.Metal | |
| 3610 | o273.Position = Vector3.new(86.9736633, 15.5391665, -68.376297) | |
| 3611 | o273.Rotation = Vector3.new(59.2400017, -16.1499996, 74.0400009) | |
| 3612 | o273.Anchored = true | |
| 3613 | o273.FormFactor = Enum.FormFactor.Custom | |
| 3614 | o273.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3615 | o273.CFrame = CFrame.new(86.9736633, 15.5391665, -68.376297, 0.264200985, -0.923511565, -0.278072774, 0.426046193, 0.370414317, -0.825395644, 0.865264475, 0.0995984823, 0.491322309) | |
| 3616 | o273.BottomSurface = Enum.SurfaceType.Smooth | |
| 3617 | o273.TopSurface = Enum.SurfaceType.Smooth | |
| 3618 | o273.Position = Vector3.new(86.9736633, 15.5391665, -68.376297) | |
| 3619 | o273.Orientation = Vector3.new(55.6300011, -29.5100002, 49) | |
| 3620 | o274.Name = "Brick" | |
| 3621 | o274.Parent = o1 | |
| 3622 | o274.Material = Enum.Material.Metal | |
| 3623 | o274.Position = Vector3.new(86.8037415, 15.2654324, -68.8184662) | |
| 3624 | o274.Rotation = Vector3.new(47.7299995, -12.3800001, 68.8000031) | |
| 3625 | o274.Anchored = true | |
| 3626 | o274.FormFactor = Enum.FormFactor.Custom | |
| 3627 | o274.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3628 | o274.CFrame = CFrame.new(86.8037415, 15.2654324, -68.8184662, 0.353259027, -0.910614908, -0.214449659, 0.569663286, 0.391211033, -0.722798586, 0.742086232, 0.133171007, 0.656942666) | |
| 3629 | o274.BottomSurface = Enum.SurfaceType.Smooth | |
| 3630 | o274.TopSurface = Enum.SurfaceType.Smooth | |
| 3631 | o274.Position = Vector3.new(86.8037415, 15.2654324, -68.8184662) | |
| 3632 | o274.Orientation = Vector3.new(46.2900009, -18.0799999, 55.5200005) | |
| 3633 | o275.Name = "Brick" | |
| 3634 | o275.Parent = o1 | |
| 3635 | o275.Material = Enum.Material.Metal | |
| 3636 | o275.Position = Vector3.new(87.0913773, 15.7288857, -67.8767548) | |
| 3637 | o275.Rotation = Vector3.new(71.2600021, -18.7900009, 80.0500031) | |
| 3638 | o275.Anchored = true | |
| 3639 | o275.FormFactor = Enum.FormFactor.Custom | |
| 3640 | o275.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3641 | o275.CFrame = CFrame.new(87.0913773, 15.7288857, -67.8767548, 0.163589373, -0.93244648, -0.322152406, 0.263797194, 0.356006116, -0.896476865, 0.950604916, 0.0616711713, 0.30421555) | |
| 3642 | o275.BottomSurface = Enum.SurfaceType.Smooth | |
| 3643 | o275.TopSurface = Enum.SurfaceType.Smooth | |
| 3644 | o275.Position = Vector3.new(87.0913773, 15.7288857, -67.8767548) | |
| 3645 | o275.Orientation = Vector3.new(63.7000008, -46.6399994, 36.5400009) | |
| 3646 | o276.Name = "Brick" | |
| 3647 | o276.Parent = o1 | |
| 3648 | o276.Material = Enum.Material.Metal | |
| 3649 | o276.Position = Vector3.new(87.1517105, 15.8261576, -67.3416672) | |
| 3650 | o276.Rotation = Vector3.new(83.6500015, -20.1700001, 86.5899963) | |
| 3651 | o276.Anchored = true | |
| 3652 | o276.FormFactor = Enum.FormFactor.Custom | |
| 3653 | o276.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3654 | o276.CFrame = CFrame.new(87.1517105, 15.8261576, -67.3416672, 0.0558235049, -0.937029183, -0.344760954, 0.0900118127, 0.348616391, -0.93293339, 0.99437499, 0.0210470483, 0.103804693) | |
| 3655 | o276.BottomSurface = Enum.SurfaceType.Smooth | |
| 3656 | o276.TopSurface = Enum.SurfaceType.Smooth | |
| 3657 | o276.Position = Vector3.new(87.1517105, 15.8261576, -67.3416672) | |
| 3658 | o276.Orientation = Vector3.new(68.9000015, -73.2399979, 14.4799995) | |
| 3659 | o277.Name = "Brick" | |
| 3660 | o277.Parent = o1 | |
| 3661 | o277.Material = Enum.Material.Metal | |
| 3662 | o277.Position = Vector3.new(87.1521225, 15.8267756, -66.7944641) | |
| 3663 | o277.Rotation = Vector3.new(96.1900024, -20.1800003, 93.3199997) | |
| 3664 | o277.Anchored = true | |
| 3665 | o277.FormFactor = Enum.FormFactor.Custom | |
| 3666 | o277.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3667 | o277.CFrame = CFrame.new(87.1521225, 15.8267756, -66.7944641, -0.0543824658, -0.937059343, -0.344909459, -0.0877097547, 0.34856838, -0.933170497, 0.994660497, -0.0204961877, -0.101145253) | |
| 3668 | o277.BottomSurface = Enum.SurfaceType.Smooth | |
| 3669 | o277.TopSurface = Enum.SurfaceType.Smooth | |
| 3670 | o277.Position = Vector3.new(87.1521225, 15.8267756, -66.7944641) | |
| 3671 | o277.Orientation = Vector3.new(68.9300003, -106.339996, -14.1199999) | |
| 3672 | o278.Name = "Brick" | |
| 3673 | o278.Parent = o1 | |
| 3674 | o278.Material = Enum.Material.Metal | |
| 3675 | o278.Position = Vector3.new(87.0925674, 15.7307396, -66.2590866) | |
| 3676 | o278.Rotation = Vector3.new(108.580002, -18.8199997, 99.8700027) | |
| 3677 | o278.Anchored = true | |
| 3678 | o278.FormFactor = Enum.FormFactor.Custom | |
| 3679 | o278.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3680 | o278.CFrame = CFrame.new(87.0925674, 15.7307396, -66.2590866, -0.162211388, -0.932535529, -0.322591275, -0.261595249, 0.355863839, -0.897178292, 0.951449156, -0.0611441992, -0.301671982) | |
| 3681 | o278.BottomSurface = Enum.SurfaceType.Smooth | |
| 3682 | o278.TopSurface = Enum.SurfaceType.Smooth | |
| 3683 | o278.Position = Vector3.new(87.0925674, 15.7307396, -66.2590866) | |
| 3684 | o278.Orientation = Vector3.new(63.7900009, -133.080002, -36.3199997) | |
| 3685 | o279.Name = "Brick" | |
| 3686 | o279.Parent = o1 | |
| 3687 | o279.Material = Enum.Material.Metal | |
| 3688 | o279.Position = Vector3.new(86.9755096, 15.5422516, -65.7589111) | |
| 3689 | o279.Rotation = Vector3.new(120.610001, -16.1900005, 105.889999) | |
| 3690 | o279.Anchored = true | |
| 3691 | o279.FormFactor = Enum.FormFactor.Custom | |
| 3692 | o279.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3693 | o279.CFrame = CFrame.new(86.9755096, 15.5422516, -65.7589111, -0.262945771, -0.923655689, -0.278782785, -0.424040824, 0.370183825, -0.826530933, 0.866630793, -0.0991175175, -0.489005953) | |
| 3694 | o279.BottomSurface = Enum.SurfaceType.Smooth | |
| 3695 | o279.TopSurface = Enum.SurfaceType.Smooth | |
| 3696 | o279.Position = Vector3.new(86.9755096, 15.5422516, -65.7589111) | |
| 3697 | o279.Orientation = Vector3.new(55.7400017, -150.309998, -48.8800011) | |
| 3698 | o280.Name = "Brick" | |
| 3699 | o280.Parent = o1 | |
| 3700 | o280.Material = Enum.Material.Metal | |
| 3701 | o280.Position = Vector3.new(86.5891113, 14.9193144, -69.1839981) | |
| 3702 | o280.Rotation = Vector3.new(36.7700005, -7.69999981, 64.4800034) | |
| 3703 | o280.Anchored = true | |
| 3704 | o280.FormFactor = Enum.FormFactor.Custom | |
| 3705 | o280.Size = Vector3.new(4.00484991, 0.266990006, 4.00484943) | |
| 3706 | o280.CFrame = CFrame.new(86.5891113, 14.9193144, -69.1839981, 0.426868021, -0.894321203, -0.134064898, 0.688369274, 0.417485803, -0.593172312, 0.586456776, 0.160920128, 0.793834507) | |
| 3707 | o280.BottomSurface = Enum.SurfaceType.Smooth | |
| 3708 | o280.TopSurface = Enum.SurfaceType.Smooth | |
| 3709 | o280.Position = Vector3.new(86.5891113, 14.9193144, -69.1839981) | |
| 3710 | o280.Orientation = Vector3.new(36.3800011, -9.59000015, 58.7599983) | |
| 3711 | o281.Name = "part" | |
| 3712 | o281.Parent = o1 | |
| 3713 | o281.Material = Enum.Material.Metal | |
| 3714 | o281.BrickColor = BrickColor.new("Mid gray")
| |
| 3715 | o281.Position = Vector3.new(80.5299149, 14.5789604, -67.0458374) | |
| 3716 | o281.Anchored = true | |
| 3717 | o281.FormFactor = Enum.FormFactor.Symmetric | |
| 3718 | o281.Size = Vector3.new(1, 4, 1) | |
| 3719 | o281.CFrame = CFrame.new(80.5299149, 14.5789604, -67.0458374, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 3720 | o281.BottomSurface = Enum.SurfaceType.Smooth | |
| 3721 | o281.TopSurface = Enum.SurfaceType.Smooth | |
| 3722 | o281.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 3723 | o281.Position = Vector3.new(80.5299149, 14.5789604, -67.0458374) | |
| 3724 | o281.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 3725 | o282.Parent = o281 | |
| 3726 | o282.Scale = Vector3.new(1, 1, 0.100000001) | |
| 3727 | o282.Scale = Vector3.new(1, 1, 0.100000001) | |
| 3728 | o283.Parent = o1 | |
| 3729 | o283.Material = Enum.Material.Metal | |
| 3730 | o283.Position = Vector3.new(88.5648346, 13.9489517, -65.0458374) | |
| 3731 | o283.Rotation = Vector3.new(-180, 0, -180) | |
| 3732 | o283.Anchored = true | |
| 3733 | o283.FormFactor = Enum.FormFactor.Symmetric | |
| 3734 | o283.Size = Vector3.new(2.69999933, 1, 1) | |
| 3735 | o283.CFrame = CFrame.new(88.5648346, 13.9489517, -65.0458374, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 3736 | o283.BottomSurface = Enum.SurfaceType.Smooth | |
| 3737 | o283.Position = Vector3.new(88.5648346, 13.9489517, -65.0458374) | |
| 3738 | o283.Orientation = Vector3.new(0, 180, 0) | |
| 3739 | o284.Parent = o1 | |
| 3740 | o285.Name = "part" | |
| 3741 | o285.Parent = o284 | |
| 3742 | o285.Material = Enum.Material.Metal | |
| 3743 | o285.BrickColor = BrickColor.new("Mid gray")
| |
| 3744 | o285.Position = Vector3.new(80.624054, 16.7023048, -67.0458069) | |
| 3745 | o285.Rotation = Vector3.new(0, 0, -120) | |
| 3746 | o285.Anchored = true | |
| 3747 | o285.FormFactor = Enum.FormFactor.Symmetric | |
| 3748 | o285.Size = Vector3.new(1, 1, 1) | |
| 3749 | o285.CFrame = CFrame.new(80.624054, 16.7023048, -67.0458069, -0.49999705, 0.866027176, 0, -0.866027117, -0.499997079, 0, 0, 0, 1) | |
| 3750 | o285.BottomSurface = Enum.SurfaceType.Smooth | |
| 3751 | o285.TopSurface = Enum.SurfaceType.Smooth | |
| 3752 | o285.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 3753 | o285.Position = Vector3.new(80.624054, 16.7023048, -67.0458069) | |
| 3754 | o285.Orientation = Vector3.new(0, 0, -120) | |
| 3755 | o285.Color = Color3.new(0.803922, 0.803922, 0.803922) | |
| 3756 | o286.Parent = o285 | |
| 3757 | o286.Scale = Vector3.new(1, 0.200000003, 0.400000006) | |
| 3758 | o286.Scale = Vector3.new(1, 0.200000003, 0.400000006) | |
| 3759 | o287.Parent = o284 | |
| 3760 | o287.Material = Enum.Material.Metal | |
| 3761 | o287.Position = Vector3.new(80.7240524, 16.8755302, -67.0458069) | |
| 3762 | o287.Rotation = Vector3.new(90, -30, -180) | |
| 3763 | o287.Anchored = true | |
| 3764 | o287.FormFactor = Enum.FormFactor.Symmetric | |
| 3765 | o287.Size = Vector3.new(1, 1, 1) | |
| 3766 | o287.CFrame = CFrame.new(80.7240524, 16.8755302, -67.0458069, -0.866023123, 0, -0.500004053, 0.500004053, 0, -0.866023123, 0, -1, 0) | |
| 3767 | o287.BottomSurface = Enum.SurfaceType.Smooth | |
| 3768 | o287.TopSurface = Enum.SurfaceType.Smooth | |
| 3769 | o287.Position = Vector3.new(80.7240524, 16.8755302, -67.0458069) | |
| 3770 | o287.Orientation = Vector3.new(60, -90, 90) | |
| 3771 | o288.Parent = o287 | |
| 3772 | o288.Scale = Vector3.new(0.800000012, 0.800000012, 0.300000012) | |
| 3773 | o288.Scale = Vector3.new(0.800000012, 0.800000012, 0.300000012) | |
| 3774 | o289.Name = "part" | |
| 3775 | o289.Parent = o284 | |
| 3776 | o289.Material = Enum.Material.Metal | |
| 3777 | o289.Position = Vector3.new(80.7240295, 16.8755302, -67.4457932) | |
| 3778 | o289.Rotation = Vector3.new(0, 0, -120) | |
| 3779 | o289.Anchored = true | |
| 3780 | o289.FormFactor = Enum.FormFactor.Symmetric | |
| 3781 | o289.Size = Vector3.new(1, 1, 1) | |
| 3782 | o289.CFrame = CFrame.new(80.7240295, 16.8755302, -67.4457932, -0.49999705, 0.866027176, 0, -0.866027117, -0.499997079, 0, 0, 0, 1) | |
| 3783 | o289.BottomSurface = Enum.SurfaceType.Smooth | |
| 3784 | o289.TopSurface = Enum.SurfaceType.Smooth | |
| 3785 | o289.Position = Vector3.new(80.7240295, 16.8755302, -67.4457932) | |
| 3786 | o289.Orientation = Vector3.new(0, 0, -120) | |
| 3787 | o290.Parent = o289 | |
| 3788 | o290.Scale = Vector3.new(1, 0.800000012, 0.300000012) | |
| 3789 | o290.Scale = Vector3.new(1, 0.800000012, 0.300000012) | |
| 3790 | o291.Name = "part" | |
| 3791 | o291.Parent = o284 | |
| 3792 | o291.Material = Enum.Material.Metal | |
| 3793 | o291.Position = Vector3.new(80.7240372, 16.8755264, -66.6458435) | |
| 3794 | o291.Rotation = Vector3.new(0, 0, -120) | |
| 3795 | o291.Anchored = true | |
| 3796 | o291.FormFactor = Enum.FormFactor.Symmetric | |
| 3797 | o291.Size = Vector3.new(1, 1, 1) | |
| 3798 | o291.CFrame = CFrame.new(80.7240372, 16.8755264, -66.6458435, -0.49999705, 0.866027176, 0, -0.866027117, -0.499997079, 0, 0, 0, 1) | |
| 3799 | o291.BottomSurface = Enum.SurfaceType.Smooth | |
| 3800 | o291.TopSurface = Enum.SurfaceType.Smooth | |
| 3801 | o291.Position = Vector3.new(80.7240372, 16.8755264, -66.6458435) | |
| 3802 | o291.Orientation = Vector3.new(0, 0, -120) | |
| 3803 | o292.Parent = o291 | |
| 3804 | o292.Scale = Vector3.new(1, 0.800000012, 0.300000012) | |
| 3805 | o292.Scale = Vector3.new(1, 0.800000012, 0.300000012) | |
| 3806 | o293.Name = "part" | |
| 3807 | o293.Parent = o284 | |
| 3808 | o293.BrickColor = BrickColor.new("Bright red")
| |
| 3809 | o293.Position = Vector3.new(81.0356598, 16.6955948, -67.4457932) | |
| 3810 | o293.Rotation = Vector3.new(0, 0, -120) | |
| 3811 | o293.Anchored = true | |
| 3812 | o293.FormFactor = Enum.FormFactor.Symmetric | |
| 3813 | o293.Size = Vector3.new(1, 1, 1) | |
| 3814 | o293.CFrame = CFrame.new(81.0356598, 16.6955948, -67.4457932, -0.49999705, 0.866027176, 0, -0.866027117, -0.499997079, 0, 0, 0, 1) | |
| 3815 | o293.BottomSurface = Enum.SurfaceType.Smooth | |
| 3816 | o293.TopSurface = Enum.SurfaceType.Smooth | |
| 3817 | o293.Color = Color3.new(0.768628, 0.156863, 0.109804) | |
| 3818 | o293.Position = Vector3.new(81.0356598, 16.6955948, -67.4457932) | |
| 3819 | o293.Orientation = Vector3.new(0, 0, -120) | |
| 3820 | o293.Color = Color3.new(0.768628, 0.156863, 0.109804) | |
| 3821 | o294.Parent = o293 | |
| 3822 | o294.Scale = Vector3.new(1, 0.100000001, 0.25) | |
| 3823 | o294.Scale = Vector3.new(1, 0.100000001, 0.25) | |
| 3824 | o295.Name = "part" | |
| 3825 | o295.Parent = o284 | |
| 3826 | o295.BrickColor = BrickColor.new("Bright red")
| |
| 3827 | o295.Position = Vector3.new(81.0357208, 16.6955452, -66.645813) | |
| 3828 | o295.Rotation = Vector3.new(0, 0, -120) | |
| 3829 | o295.Anchored = true | |
| 3830 | o295.FormFactor = Enum.FormFactor.Symmetric | |
| 3831 | o295.Size = Vector3.new(1, 1, 1) | |
| 3832 | o295.CFrame = CFrame.new(81.0357208, 16.6955452, -66.645813, -0.49999705, 0.866027176, 0, -0.866027117, -0.499997079, 0, 0, 0, 1) | |
| 3833 | o295.BottomSurface = Enum.SurfaceType.Smooth | |
| 3834 | o295.TopSurface = Enum.SurfaceType.Smooth | |
| 3835 | o295.Color = Color3.new(0.768628, 0.156863, 0.109804) | |
| 3836 | o295.Position = Vector3.new(81.0357208, 16.6955452, -66.645813) | |
| 3837 | o295.Orientation = Vector3.new(0, 0, -120) | |
| 3838 | o295.Color = Color3.new(0.768628, 0.156863, 0.109804) | |
| 3839 | o296.Parent = o295 | |
| 3840 | o296.Scale = Vector3.new(1, 0.100000001, 0.25) | |
| 3841 | o296.Scale = Vector3.new(1, 0.100000001, 0.25) | |
| 3842 | o297.Parent = o284 | |
| 3843 | o297.BrickColor = BrickColor.new("Bright red")
| |
| 3844 | o297.Position = Vector3.new(81.0356064, 16.6956329, -67.0458221) | |
| 3845 | o297.Rotation = Vector3.new(90, -30, -180) | |
| 3846 | o297.Anchored = true | |
| 3847 | o297.FormFactor = Enum.FormFactor.Symmetric | |
| 3848 | o297.Size = Vector3.new(1, 1, 1) | |
| 3849 | o297.CFrame = CFrame.new(81.0356064, 16.6956329, -67.0458221, -0.866023123, 0, -0.500004053, 0.500004053, 0, -0.866023123, 0, -1, 0) | |
| 3850 | o297.BottomSurface = Enum.SurfaceType.Smooth | |
| 3851 | o297.TopSurface = Enum.SurfaceType.Smooth | |
| 3852 | o297.Color = Color3.new(0.768628, 0.156863, 0.109804) | |
| 3853 | o297.Position = Vector3.new(81.0356064, 16.6956329, -67.0458221) | |
| 3854 | o297.Orientation = Vector3.new(60, -90, 90) | |
| 3855 | o297.Color = Color3.new(0.768628, 0.156863, 0.109804) | |
| 3856 | o298.Parent = o297 | |
| 3857 | o298.Scale = Vector3.new(0.100000001, 0.800000012, 0.25) | |
| 3858 | o298.Scale = Vector3.new(0.100000001, 0.800000012, 0.25) | |
| 3859 | o299.Name = "Brick" | |
| 3860 | o299.Parent = o1 | |
| 3861 | o299.Material = Enum.Material.Metal | |
| 3862 | o299.Position = Vector3.new(85.9874573, 15.9214277, -62.4297333) | |
| 3863 | o299.Rotation = Vector3.new(148.059998, 7.6500001, 119.050003) | |
| 3864 | o299.Anchored = true | |
| 3865 | o299.FormFactor = Enum.FormFactor.Custom | |
| 3866 | o299.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3867 | o299.CFrame = CFrame.new(85.9874573, 15.9214277, -62.4297333, -0.481221795, -0.866441965, 0.133056194, -0.776030838, 0.3504861, -0.524343133, 0.407678515, -0.355581015, -0.841047287) | |
| 3868 | o299.BottomSurface = Enum.SurfaceType.Smooth | |
| 3869 | o299.TopSurface = Enum.SurfaceType.Smooth | |
| 3870 | o299.Position = Vector3.new(85.9874573, 15.9214277, -62.4297333) | |
| 3871 | o299.Orientation = Vector3.new(31.6200008, 171.009995, -65.6900024) | |
| 3872 | o300.Name = "Brick" | |
| 3873 | o300.Parent = o1 | |
| 3874 | o300.Material = Enum.Material.Metal | |
| 3875 | o300.Position = Vector3.new(86.8818436, 17.3636971, -70.466423) | |
| 3876 | o300.Rotation = Vector3.new(51.8499985, -1.67999995, 69.3000031) | |
| 3877 | o300.Anchored = true | |
| 3878 | o300.FormFactor = Enum.FormFactor.Custom | |
| 3879 | o300.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3880 | o300.CFrame = CFrame.new(86.8818436, 17.3636971, -70.466423, 0.353259116, -0.935067773, -0.0292629283, 0.569663167, 0.239814341, -0.786112607, 0.742086232, 0.261031449, 0.617390215) | |
| 3881 | o300.BottomSurface = Enum.SurfaceType.Smooth | |
| 3882 | o300.TopSurface = Enum.SurfaceType.Smooth | |
| 3883 | o300.Position = Vector3.new(86.8818436, 17.3636971, -70.466423) | |
| 3884 | o300.Orientation = Vector3.new(51.8199997, -2.71000004, 67.1699982) | |
| 3885 | o301.Name = "Brick" | |
| 3886 | o301.Parent = o1 | |
| 3887 | o301.Material = Enum.Material.Metal | |
| 3888 | o301.Position = Vector3.new(86.4715271, 16.7022552, -62.9613609) | |
| 3889 | o301.Rotation = Vector3.new(138.190002, 2.58999991, 115.239998) | |
| 3890 | o301.Anchored = true | |
| 3891 | o301.FormFactor = Enum.FormFactor.Custom | |
| 3892 | o301.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3893 | o301.CFrame = CFrame.new(86.4715271, 16.7022552, -62.9613609, -0.426016927, -0.903585255, 0.0452025831, -0.687008083, 0.290588319, -0.666016877, 0.588667691, -0.314788938, -0.744565964) | |
| 3894 | o301.BottomSurface = Enum.SurfaceType.Smooth | |
| 3895 | o301.TopSurface = Enum.SurfaceType.Smooth | |
| 3896 | o301.Position = Vector3.new(86.4715271, 16.7022552, -62.9613609) | |
| 3897 | o301.Orientation = Vector3.new(41.7599983, 176.529999, -67.0699997) | |
| 3898 | o302.Name = "Brick" | |
| 3899 | o302.Parent = o1 | |
| 3900 | o302.Material = Enum.Material.Metal | |
| 3901 | o302.Position = Vector3.new(87.2113342, 17.8955765, -69.6090393) | |
| 3902 | o302.Rotation = Vector3.new(62.3800011, -5.11000013, 74.6200027) | |
| 3903 | o302.Anchored = true | |
| 3904 | o302.FormFactor = Enum.FormFactor.Custom | |
| 3905 | o302.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3906 | o302.CFrame = CFrame.new(87.2113342, 17.8955765, -69.6090393, 0.264200985, -0.960347354, -0.0890547931, 0.426046193, 0.19904837, -0.882533014, 0.865264475, 0.195224613, 0.46174112) | |
| 3907 | o302.BottomSurface = Enum.SurfaceType.Smooth | |
| 3908 | o302.TopSurface = Enum.SurfaceType.Smooth | |
| 3909 | o302.Position = Vector3.new(87.2113342, 17.8955765, -69.6090393) | |
| 3910 | o302.Orientation = Vector3.new(61.9500008, -10.9200001, 64.9599991) | |
| 3911 | o303.Name = "Brick" | |
| 3912 | o303.Parent = o1 | |
| 3913 | o303.Material = Enum.Material.Metal | |
| 3914 | o303.Position = Vector3.new(86.8867798, 17.3719788, -63.6725655) | |
| 3915 | o303.Rotation = Vector3.new(128.009995, -1.73000002, 110.629997) | |
| 3916 | o303.Anchored = true | |
| 3917 | o303.FormFactor = Enum.FormFactor.Custom | |
| 3918 | o303.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3919 | o303.CFrame = CFrame.new(86.8867798, 17.3719788, -63.6725655, -0.352182239, -0.935445607, -0.0301556662, -0.56794256, 0.239210173, -0.787540376, 0.743914723, -0.260231048, -0.615524828) | |
| 3920 | o303.BottomSurface = Enum.SurfaceType.Smooth | |
| 3921 | o303.TopSurface = Enum.SurfaceType.Smooth | |
| 3922 | o303.Position = Vector3.new(86.8867798, 17.3719788, -63.6725655) | |
| 3923 | o303.Orientation = Vector3.new(51.9599991, -177.199997, -67.1600037) | |
| 3924 | o304.Name = "Brick" | |
| 3925 | o304.Parent = o1 | |
| 3926 | o304.Material = Enum.Material.Metal | |
| 3927 | o304.Position = Vector3.new(87.4396667, 18.2636929, -68.6400299) | |
| 3928 | o304.Rotation = Vector3.new(73.2399979, -7.5, 80.5) | |
| 3929 | o304.Anchored = true | |
| 3930 | o304.FormFactor = Enum.FormFactor.Custom | |
| 3931 | o304.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3932 | o304.CFrame = CFrame.new(87.4396667, 18.2636929, -68.6400299, 0.163589373, -0.977861583, -0.130480587, 0.263797194, 0.170805529, -0.9493348, 0.950604916, 0.120880686, 0.285899073) | |
| 3933 | o304.BottomSurface = Enum.SurfaceType.Smooth | |
| 3934 | o304.TopSurface = Enum.SurfaceType.Smooth | |
| 3935 | o304.Position = Vector3.new(87.4396667, 18.2636929, -68.6400299) | |
| 3936 | o304.Orientation = Vector3.new(71.6800003, -24.5300007, 57.0800018) | |
| 3937 | o305.Name = "Brick" | |
| 3938 | o305.Parent = o1 | |
| 3939 | o305.Material = Enum.Material.Metal | |
| 3940 | o305.Position = Vector3.new(87.5568161, 18.4524727, -67.6021347) | |
| 3941 | o305.Rotation = Vector3.new(84.3399963, -8.72999954, 86.7600021) | |
| 3942 | o305.Anchored = true | |
| 3943 | o305.FormFactor = Enum.FormFactor.Custom | |
| 3944 | o305.Size = Vector3.new(2.00484991, 0.266990006, 4.00484943) | |
| 3945 | o305.CFrame = CFrame.new(87.5568161, 18.4524727, -67.6021347, 0.0558240004, -0.986844778, -0.151727557, 0.090011999, 0.156319961, -0.983596444, 0.99437499, 0.0412509888, 0.0975542665) | |
| 3946 | o305.BottomSurface = Enum.SurfaceType.Smooth | |
| 3947 | o305.TopSurface = Enum.SurfaceType.Smooth | |
| 3948 | o305.Position = Vector3.new(87.5568161, 18.4524727, -67.6021347) | |
| 3949 | o305.Orientation = Vector3.new(79.6100006, -57.2599983, 29.9300003) | |
| 3950 | o306.Name = "RadarEmitter" | |
| 3951 | o306.Parent = o1 | |
| 3952 | o306.Transparency = 1 | |
| 3953 | o306.Position = Vector3.new(80.3654861, 17.1344948, -67.0808487) | |
| 3954 | o306.Rotation = Vector3.new(0, 0, -30) | |
| 3955 | o306.Anchored = true | |
| 3956 | o306.Size = Vector3.new(0.219999999, 0.230000019, 1.07000005) | |
| 3957 | o306.CFrame = CFrame.new(80.3654861, 17.1344948, -67.0808487, 0.866027057, 0.499997109, 0, -0.499997109, 0.866027057, 0, 0, 0, 1) | |
| 3958 | o306.Position = Vector3.new(80.3654861, 17.1344948, -67.0808487) | |
| 3959 | o306.Orientation = Vector3.new(0, 0, -30) | |
| 3960 | o307.Name = "IsEnabled" | |
| 3961 | o307.Parent = o306 | |
| 3962 | o308.Name = "switch" | |
| 3963 | o308.Parent = o1 | |
| 3964 | o309.Name = "xxt" | |
| 3965 | o309.Parent = o308 | |
| 3966 | o309.BrickColor = BrickColor.new("Black")
| |
| 3967 | o309.Position = Vector3.new(88.5200043, 5.15274096, -65.0149765) | |
| 3968 | o309.Rotation = Vector3.new(0, 90, 0) | |
| 3969 | o309.Anchored = true | |
| 3970 | o309.Shape = Enum.PartType.Cylinder | |
| 3971 | o309.Size = Vector3.new(0.0500000007, 0.49000001, 0.200000048) | |
| 3972 | o309.CFrame = CFrame.new(88.5200043, 5.15274096, -65.0149765, 0, 0, 1, 0, 1, -0, -1, 0, 0) | |
| 3973 | o309.BottomSurface = Enum.SurfaceType.Smooth | |
| 3974 | o309.TopSurface = Enum.SurfaceType.Smooth | |
| 3975 | o309.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3976 | o309.Position = Vector3.new(88.5200043, 5.15274096, -65.0149765) | |
| 3977 | o309.Orientation = Vector3.new(0, 90, 0) | |
| 3978 | o309.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3979 | o310.Name = "Bootoon" | |
| 3980 | o310.Parent = o309 | |
| 3981 | o311.Name = "xxtt" | |
| 3982 | o311.Parent = o308 | |
| 3983 | o311.BrickColor = BrickColor.new("Ghost grey")
| |
| 3984 | o311.Position = Vector3.new(88.5100174, 5.12274122, -65.0549774) | |
| 3985 | o311.Anchored = true | |
| 3986 | o311.Size = Vector3.new(1, 2, 0.0500000007) | |
| 3987 | o311.CFrame = CFrame.new(88.5100174, 5.12274122, -65.0549774, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 3988 | o311.Color = Color3.new(0.792157, 0.796079, 0.819608) | |
| 3989 | o311.Position = Vector3.new(88.5100174, 5.12274122, -65.0549774) | |
| 3990 | o311.Color = Color3.new(0.792157, 0.796079, 0.819608) | |
| 3991 | o312.Name = "xxt" | |
| 3992 | o312.Parent = o308 | |
| 3993 | o312.BrickColor = BrickColor.new("Smoky grey")
| |
| 3994 | o312.Position = Vector3.new(88.5200043, 5.15274096, -65.0249786) | |
| 3995 | o312.Rotation = Vector3.new(0, 90, 0) | |
| 3996 | o312.Anchored = true | |
| 3997 | o312.Shape = Enum.PartType.Cylinder | |
| 3998 | o312.Size = Vector3.new(0.0500000007, 0.49000001, 0.480000019) | |
| 3999 | o312.CFrame = CFrame.new(88.5200043, 5.15274096, -65.0249786, 0, 0, 1, 0, 1, -0, -1, 0, 0) | |
| 4000 | o312.BottomSurface = Enum.SurfaceType.Smooth | |
| 4001 | o312.TopSurface = Enum.SurfaceType.Smooth | |
| 4002 | o312.Color = Color3.new(0.356863, 0.364706, 0.411765) | |
| 4003 | o312.Position = Vector3.new(88.5200043, 5.15274096, -65.0249786) | |
| 4004 | o312.Orientation = Vector3.new(0, 90, 0) | |
| 4005 | o312.Color = Color3.new(0.356863, 0.364706, 0.411765) | |
| 4006 | o313.Name = "xtt" | |
| 4007 | o313.Parent = o308 | |
| 4008 | o313.BrickColor = BrickColor.new("Fossil")
| |
| 4009 | o313.Position = Vector3.new(88.5100098, 5.13773823, -65.0349808) | |
| 4010 | o313.Anchored = true | |
| 4011 | o313.Size = Vector3.new(0.700000048, 1.38999999, 0.0500000007) | |
| 4012 | o313.CFrame = CFrame.new(88.5100098, 5.13773823, -65.0349808, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4013 | o313.Color = Color3.new(0.623529, 0.631373, 0.67451) | |
| 4014 | o313.Position = Vector3.new(88.5100098, 5.13773823, -65.0349808) | |
| 4015 | o313.Color = Color3.new(0.623529, 0.631373, 0.67451) | |
| 4016 | o314.Name = "xt" | |
| 4017 | o314.Parent = o308 | |
| 4018 | o314.BrickColor = BrickColor.new("Fossil")
| |
| 4019 | o314.Transparency = 1 | |
| 4020 | o314.Position = Vector3.new(88.5100098, 5.9377389, -65.0349808) | |
| 4021 | o314.Anchored = true | |
| 4022 | o314.Size = Vector3.new(0.700000048, 0.230000019, 0.0500000007) | |
| 4023 | o314.CFrame = CFrame.new(88.5100098, 5.9377389, -65.0349808, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4024 | o314.Color = Color3.new(0.623529, 0.631373, 0.67451) | |
| 4025 | o314.Position = Vector3.new(88.5100098, 5.9377389, -65.0349808) | |
| 4026 | o314.Color = Color3.new(0.623529, 0.631373, 0.67451) | |
| 4027 | o315.Parent = o314 | |
| 4028 | o315.Face = Enum.NormalId.Back | |
| 4029 | o315.CanvasSize = Vector2.new(300, 200) | |
| 4030 | o316.Parent = o315 | |
| 4031 | o316.Position = UDim2.new(0,150,0,50) | |
| 4032 | o316.Size = UDim2.new(1,0,1,0) | |
| 4033 | o316.Text = "Power" | |
| 4034 | o316.Position = UDim2.new(0,150,0,50) | |
| 4035 | o316.Active = true | |
| 4036 | o316.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 4037 | o316.BackgroundTransparency = 1.1000000238419 | |
| 4038 | o316.Font = Enum.Font.SourceSans | |
| 4039 | o316.FontSize = Enum.FontSize.Size96 | |
| 4040 | o316.TextWrapped = true | |
| 4041 | o310.MaxActivationDistance = 6 | |
| 4042 | mas.Parent = workspace | |
| 4043 | mas:MakeJoints() | |
| 4044 | local mas1 = mas:GetChildren() | |
| 4045 | for i=1,#mas1 do | |
| 4046 | mas1[i].Parent = workspace | |
| 4047 | ypcall(function() mas1[i]:MakeJoints() end) | |
| 4048 | end | |
| 4049 | mas:Destroy() | |
| 4050 | for i=1,#cors do | |
| 4051 | coroutine.resume(cors[i]) | |
| 4052 | end | |
| 4053 | wait(.1) | |
| 4054 | o1.Parent = workspace | |
| 4055 | o1:MoveTo(SPY.Character.Torso.Position) | |
| 4056 | o1:TranslateBy(Vector3.new(0, -5.5, 0)) | |
| 4057 | -------------------LARGE SHIT ALERT-------------- | |
| 4058 | o310.MouseClick:connect(function() | |
| 4059 | if o307.Value == false | |
| 4060 | then | |
| 4061 | o307.Value = true | |
| 4062 | print(SPY.Name.."'s Antenna is on") | |
| 4063 | elseif o307.Value == true | |
| 4064 | then | |
| 4065 | o307.Value = false | |
| 4066 | print(SPY.Name.."'s Antenna is off") | |
| 4067 | end | |
| 4068 | end) | |
| 4069 | end) | |
| 4070 | ||
| 4071 | MUOSE.KeyDown:connect(function(key) | |
| 4072 | if (key == "r") and EQUOPIED == true and o307.Value == true and Loading == false | |
| 4073 | then | |
| 4074 | pcall(function() | |
| 4075 | for i, v in pairs(MUOSE.Target.Parent:children()) do | |
| 4076 | if v:IsA("Humanoid")then
| |
| 4077 | TURGET = MUOSE.Target | |
| 4078 | end | |
| 4079 | end | |
| 4080 | end) | |
| 4081 | if | |
| 4082 | TURGET.Parent.Head | |
| 4083 | then | |
| 4084 | local LOADING = Instance.new("ImageLabel")
| |
| 4085 | LOADING.Name = "Please hold motherfucker" | |
| 4086 | LOADING.Parent = GUEI.Parent | |
| 4087 | LOADING.Size = UDim2.new(1,0 , 1,0) | |
| 4088 | LOADING.Image = "http://www.roblox.com/asset/?id=267841629" | |
| 4089 | LOADING.BackgroundTransparency = 1 | |
| 4090 | LOADING.ImageTransparency = 0 | |
| 4091 | local SNOUE = Instance.new("Sound")
| |
| 4092 | SNOUE.Name = "SNOW" | |
| 4093 | SNOUE.Parent = GUEI.Parent.Parent | |
| 4094 | SNOUE.SoundId = "rbxassetid://154273834" | |
| 4095 | SNOUE.MaxDistance = 5 | |
| 4096 | SNOUE.Volume = 0.2 | |
| 4097 | SNOUE:Play() | |
| 4098 | wait(3) | |
| 4099 | LOADING.ImageTransparency = .1 | |
| 4100 | wait() | |
| 4101 | LOADING.ImageTransparency = .2 | |
| 4102 | wait() | |
| 4103 | LOADING.ImageTransparency = .3 | |
| 4104 | wait() | |
| 4105 | LOADING.ImageTransparency = .4 | |
| 4106 | wait() | |
| 4107 | LOADING.ImageTransparency = .5 | |
| 4108 | wait() | |
| 4109 | LOADING.ImageTransparency = .6 | |
| 4110 | wait() | |
| 4111 | LOADING.ImageTransparency = .7 | |
| 4112 | wait() | |
| 4113 | LOADING.ImageTransparency = .8 | |
| 4114 | wait() | |
| 4115 | LOADING.ImageTransparency = .9 | |
| 4116 | wait() | |
| 4117 | LOADING:Destroy() | |
| 4118 | SNOUE:Destroy() | |
| 4119 | wait(.1) | |
| 4120 | pcall(function() | |
| 4121 | for i, v in pairs(TURGET.Parent:children()) do | |
| 4122 | if v:IsA("Humanoid")then HUMENOD = v end
| |
| 4123 | end | |
| 4124 | end) | |
| 4125 | local ID = game.Players:GetPlayerFromCharacter(TURGET.Parent) | |
| 4126 | GUEI.Nameee.Text = "Name: "..TURGET.Parent.Name | |
| 4127 | GUEI.Health.Text = "Health: "..HUMENOD.Health | |
| 4128 | GUEI.JumpPower.Text = "JumpPower: "..HUMENOD.JumpPower | |
| 4129 | GUEI.WalkSpeed.Text = "WalkSpeed: "..HUMENOD.WalkSpeed | |
| 4130 | ||
| 4131 | if ID then | |
| 4132 | GUEI.UserId.Text = "UserId: "..ID.UserId | |
| 4133 | GUEI.Age.Text = "Age: "..ID.AccountAge | |
| 4134 | GUEI.UserImage.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&username="..ID.Name | |
| 4135 | else | |
| 4136 | print("Scanned a dambot")
| |
| 4137 | GUEI.UserImage.Image = "http://www.roblox.com/asset/?id=52354919" | |
| 4138 | GUEI.UserId.Text = "UserId: No" | |
| 4139 | GUEI.Age.Text = "Age: No" | |
| 4140 | end | |
| 4141 | end | |
| 4142 | repeat | |
| 4143 | wait() | |
| 4144 | GUEI.Health.Text = "Health: "..HUMENOD.Health | |
| 4145 | GUEI.JumpPower.Text = "JumpPower: "..HUMENOD.JumpPower | |
| 4146 | GUEI.WalkSpeed.Text = "WalkSpeed: "..HUMENOD.WalkSpeed | |
| 4147 | local CALCS = (SPY.Character.HumanoidRootPart.Position - HUMENOD.Parent.Head.Position).magnitude | |
| 4148 | GUEI.Radar.Distance.Text = CALCS | |
| 4149 | until o307.Value == false | |
| 4150 | end | |
| 4151 | end) | |
| 4152 | ||
| 4153 | ||
| 4154 | ||
| 4155 | ||
| 4156 | KNIPED = false | |
| 4157 | ATACK = false | |
| 4158 | ||
| 4159 | KNIFE.Equipped:connect(function() | |
| 4160 | local SND = Instance.new("Sound")
| |
| 4161 | SND.Parent = kno2 | |
| 4162 | SND.SoundId = "rbxassetid://608618332" | |
| 4163 | SND.PlayOnRemove = true | |
| 4164 | wait(.1) | |
| 4165 | SND:Destroy() | |
| 4166 | KNIPED = true | |
| 4167 | o10 = Instance.new("Weld")
| |
| 4168 | o11 = Instance.new("CFrameValue")
| |
| 4169 | o13 = Instance.new("Weld")
| |
| 4170 | o14 = Instance.new("CFrameValue")
| |
| 4171 | ||
| 4172 | o10.Name = "qCFrameWeldThingy" | |
| 4173 | o10.Parent = SPY.Character["Left Arm"] | |
| 4174 | o10.C1 = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775) | |
| 4175 | o10.C0 = CFrame.new(0,1.5,0) | |
| 4176 | o10.Part0 = SPY.Character.Torso | |
| 4177 | o10.Part1 = SPY.Character["Left Arm"] | |
| 4178 | o11.Name = "qRelativeCFrameWeldValue" | |
| 4179 | o11.Parent = SPY.Character["Left Arm"] | |
| 4180 | o11.Value = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775) | |
| 4181 | ||
| 4182 | o13.Name = "qCFrameWeldThingy" | |
| 4183 | o13.Parent = SPY.Character["Right Arm"] | |
| 4184 | o13.C1 = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071) | |
| 4185 | o13.C0 = CFrame.new(0,1.5,0) | |
| 4186 | o13.Part0 = SPY.Character.Torso | |
| 4187 | o13.Part1 = SPY.Character["Right Arm"] | |
| 4188 | o14.Name = "qRelativeCFrameWeldValue" | |
| 4189 | o14.Parent = SPY.Character["Right Arm"] | |
| 4190 | o14.Value = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071) | |
| 4191 | end) | |
| 4192 | ||
| 4193 | KNIFE.Unequipped:connect(function() | |
| 4194 | wait(.2) | |
| 4195 | local SND = Instance.new("Sound")
| |
| 4196 | SND.Parent = kno2 | |
| 4197 | SND.SoundId = "rbxassetid://608618332" | |
| 4198 | SND.PlayOnRemove = true | |
| 4199 | wait(.1) | |
| 4200 | SND:Destroy() | |
| 4201 | KNIPED = false | |
| 4202 | o10:Destroy() | |
| 4203 | o11:Destroy() | |
| 4204 | o13:Destroy() | |
| 4205 | o14:Destroy() | |
| 4206 | local o7 = Instance.new("Motor6D")
| |
| 4207 | local o8 = Instance.new("Motor6D")
| |
| 4208 | o7.Name = "Left Shoulder" | |
| 4209 | o7.Parent = SPY.Character.Torso | |
| 4210 | o7.C0 = CFrame.new(-1, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08) | |
| 4211 | o7.C1 = CFrame.new(0.5, 0.5, 0, -4.37113883e-08, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-08) | |
| 4212 | o7.Part0 = SPY.Character.Torso | |
| 4213 | o7.Part1 = SPY.Character["Left Arm"] | |
| 4214 | o7.MaxVelocity = 0.10000000149012 | |
| 4215 | o8.Name = "Right Shoulder" | |
| 4216 | o8.Parent = SPY.Character.Torso | |
| 4217 | o8.C0 = CFrame.new(1, 0.5, 0, -4.37113883e-08, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-08) | |
| 4218 | o8.C1 = CFrame.new(-0.5, 0.5, 0, -4.37113883e-08, 0, 1, 0, 0.99999994, 0, -1, 0, -4.37113883e-08) | |
| 4219 | o8.Part0 = SPY.Character.Torso | |
| 4220 | o8.Part1 = SPY.Character["Right Arm"] | |
| 4221 | o8.MaxVelocity = 0.10000000149012 | |
| 4222 | end) | |
| 4223 | EWE = false | |
| 4224 | Debounce = false | |
| 4225 | MUOSE.Button1Down:connect(function() | |
| 4226 | if KNIPED == true and ATACK == false and EWE == false then | |
| 4227 | EWE = true | |
| 4228 | o10.C1 = CFrame.new(1.47941971, 1.10494518, -0.821447372, 0.926165819, 0.0532538369, 0.373335451, -0.240676075, 0.845621467, 0.476443946, -0.290328026, -0.531119823, 0.796002567) | |
| 4229 | o11.Value = CFrame.new(1.47941971, 1.10494518, -0.821447372, 0.926165819, 0.0532538369, 0.373335451, -0.240676075, 0.845621467, 0.476443946, -0.290328026, -0.531119823, 0.796002567) | |
| 4230 | ||
| 4231 | o13.C1 = CFrame.new(-0.0689969063, -0.623306274, -1.35078812, 0.568966389, 0.780035615, -0.260424674, 0.701693177, -0.295354694, 0.648375571, 0.428838491, -0.551643014, -0.71539253) | |
| 4232 | o14.Value = CFrame.new(-0.0689969063, -0.623306274, -1.35078812, 0.568966389, 0.780035615, -0.260424674, 0.701693177, -0.295354694, 0.648375571, 0.428838491, -0.551643014, -0.71539253) | |
| 4233 | ||
| 4234 | kno1.GripForward = Vector3.new(0.999, -0.035, -0.007) | |
| 4235 | kno1.GripPos = Vector3.new(-0.2, -0.5, 0.1) | |
| 4236 | kno1.GripRight = Vector3.new(0, 0.196, -0.981) | |
| 4237 | kno1.GripUp = Vector3.new(-0.036, -0.98, -0.196) | |
| 4238 | ATACK = true | |
| 4239 | ||
| 4240 | SPY.Character.Humanoid.JumpPower = 10 | |
| 4241 | wait(.1) | |
| 4242 | SPY.Character.Humanoid.Jump = true | |
| 4243 | local TORQUE = Instance.new("Torque")
| |
| 4244 | TORQUE.Parent = SPY.Character.Torso | |
| 4245 | TORQUE.Attachment0 = AT | |
| 4246 | TORQUE.Torque = Vector3.new(0, 100000, 0) | |
| 4247 | TORQUE.Enabled = true | |
| 4248 | trail.Enabled = true | |
| 4249 | ||
| 4250 | wait(.05) | |
| 4251 | SPY.Character.Humanoid.JumpPower = 50 | |
| 4252 | TORQUE:Destroy() | |
| 4253 | trail.Enabled = false | |
| 4254 | ATACK = false | |
| 4255 | SPY.Character.HumanoidRootPart.RootJoint.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0) | |
| 4256 | SPY.Character.HumanoidRootPart.RootJoint.C1 = CFrame.new(0, 0, 0, -0.403074712, -0.915167093, 0, 0, 0, 1, -0.915167093, 0.403074712, 0) | |
| 4257 | SPY.Character.Torso.Neck.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0) | |
| 4258 | SPY.Character.Torso.Neck.C1 = CFrame.new(0, -0.5, 0, -0.404974997, 0.914327741, 0, 0, 0, 1, 0.914327741, 0.404974997, 0) | |
| 4259 | end | |
| 4260 | end) | |
| 4261 | MUOSE.Button1Up:connect(function() | |
| 4262 | if KNIPED == true and ATACK == false and EWE == true then | |
| 4263 | ATACK = true | |
| 4264 | EWE = false | |
| 4265 | trail.Enabled = true | |
| 4266 | kno1.GripForward = Vector3.new(0.951, 0.308, 0) | |
| 4267 | kno1.GripPos = Vector3.new(-0.2, -0.5, 0.1) | |
| 4268 | kno1.GripRight = Vector3.new(0, 0, 1) | |
| 4269 | kno1.GripUp = Vector3.new(-0.308, 0.951, 0) | |
| 4270 | ||
| 4271 | o10.C1 = CFrame.new(1.41301823, 0.0853495598, 0.494428158, 0.938678324, 0.0513189547, 0.340953499, -0.344794095, 0.139712349, 0.928222597, 0, -0.988854587, 0.148840427) | |
| 4272 | o11.Value = CFrame.new(1.41301823, 0.0853495598, 0.494428158, 0.938678324, 0.0513189547, 0.340953499, -0.344794095, 0.139712349, 0.928222597, 0, -0.988854587, 0.148840427) | |
| 4273 | ||
| 4274 | o13.C1 = CFrame.new(-1.19023156, -0.0163340569, -0.449222565, 0.539222777, 0.823833048, -0.174724758, 0.652251244, -0.277294189, 0.705461025, 0.532735348, -0.494361669, -0.68687427) | |
| 4275 | o14.Value = CFrame.new(-1.19023156, -0.0163340569, -0.449222565, 0.539222777, 0.823833048, -0.174724758, 0.652251244, -0.277294189, 0.705461025, 0.532735348, -0.494361669, -0.68687427) | |
| 4276 | o10.C0 = CFrame.new(0,0,0) | |
| 4277 | o13.C0 = CFrame.new(0,0,0) | |
| 4278 | SPY.Character.HumanoidRootPart.RootJoint.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0) | |
| 4279 | SPY.Character.HumanoidRootPart.RootJoint.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0) | |
| 4280 | SPY.Character.Torso.Neck.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0) | |
| 4281 | SPY.Character.Torso.Neck.C1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0) | |
| 4282 | ||
| 4283 | ||
| 4284 | SPY.Character.Humanoid.JumpPower = 10 | |
| 4285 | wait(.1) | |
| 4286 | SPY.Character.Humanoid.Jump = true | |
| 4287 | local TORQUE = Instance.new("Torque")
| |
| 4288 | TORQUE.Parent = SPY.Character.Torso | |
| 4289 | TORQUE.Attachment0 = AT | |
| 4290 | TORQUE.Torque = Vector3.new(0, -100000, 0) | |
| 4291 | trail.Enabled = true | |
| 4292 | TORQUE.Enabled = true | |
| 4293 | wait(.05) | |
| 4294 | SPY.Character.Humanoid.JumpPower = 50 | |
| 4295 | TORQUE:Destroy() | |
| 4296 | trail.Enabled = false | |
| 4297 | kno1.GripForward = Vector3.new(0.709005952, 0.456599832, 0.537426531) | |
| 4298 | kno1.GripPos = Vector3.new(-0.200000003, -0.5, 0.100000001) | |
| 4299 | kno1.GripRight = Vector3.new(-0.677205563, 0.22823669, 0.699500203) | |
| 4300 | kno1.GripUp = Vector3.new(-0.19673121, 0.859898031, -0.471033096) | |
| 4301 | o10.C0 = CFrame.new(0,1.5,0) | |
| 4302 | o13.C0 = CFrame.new(0,1.5,0) | |
| 4303 | o10.Name = "qCFrameWeldThingy" | |
| 4304 | o10.Parent = SPY.Character["Left Arm"] | |
| 4305 | o10.C1 = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775) | |
| 4306 | o10.C0 = CFrame.new(0,1.5,0) | |
| 4307 | o10.Part0 = SPY.Character.Torso | |
| 4308 | o10.Part1 = SPY.Character["Left Arm"] | |
| 4309 | o11.Name = "qRelativeCFrameWeldValue" | |
| 4310 | o11.Parent = SPY.Character["Left Arm"] | |
| 4311 | o11.Value = CFrame.new(1.47942162, 0.253675461, -0.989979267, 0.926165819, 0.0532538369, 0.373335451, -0.377114445, 0.130787581, 0.91688484, -3.7252903e-09, -0.989979088, 0.141213775) | |
| 4312 | ||
| 4313 | o13.Name = "qCFrameWeldThingy" | |
| 4314 | o13.Parent = SPY.Character["Right Arm"] | |
| 4315 | o13.C1 = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071) | |
| 4316 | o13.C0 = CFrame.new(0,1.5,0) | |
| 4317 | o13.Part0 = SPY.Character.Torso | |
| 4318 | o13.Part1 = SPY.Character["Right Arm"] | |
| 4319 | o14.Name = "qRelativeCFrameWeldValue" | |
| 4320 | o14.Parent = SPY.Character["Right Arm"] | |
| 4321 | o14.Value = CFrame.new(-0.06899786, 0.0721435547, -1.73576927, 0.568966389, 0.780035675, -0.260424674, 0.354608625, 0.0530088954, 0.933510303, 0.741976023, -0.623485744, -0.246447071) | |
| 4322 | ||
| 4323 | SPY.Character.HumanoidRootPart.RootJoint.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0) | |
| 4324 | SPY.Character.HumanoidRootPart.RootJoint.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0) | |
| 4325 | SPY.Character.Torso.Neck.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0) | |
| 4326 | SPY.Character.Torso.Neck.C1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0) | |
| 4327 | wait(.1) | |
| 4328 | ATACK = false | |
| 4329 | end | |
| 4330 | end) | |
| 4331 | kno2.Touched:connect(function(tuoch) | |
| 4332 | if ATACK == true and Debounce == false then | |
| 4333 | print("STABBY STAB")
| |
| 4334 | Debounce = true | |
| 4335 | wait(.5) | |
| 4336 | ||
| 4337 | local SND = Instance.new("Sound")
| |
| 4338 | SND.Parent = tuoch | |
| 4339 | SND.SoundId = "rbxassetid://144884872" | |
| 4340 | SND.PlayOnRemove = true | |
| 4341 | SND:Remove() | |
| 4342 | local Victimm = tuoch.Parent | |
| 4343 | --[[ | |
| 4344 | blood1 = Instance.new("Part") ----Old blood thing
| |
| 4345 | blood1.Parent = FLUIDS | |
| 4346 | blood1.Material = Enum.Material.SmoothPlastic | |
| 4347 | blood1.BrickColor = BrickColor.new("Crimson")
| |
| 4348 | blood1.Position = Vector3.new(8.53000641, 0.0250000004, -8.39000702) | |
| 4349 | blood1.Rotation = Vector3.new(-180, 0, 90) | |
| 4350 | blood1.Anchored = true | |
| 4351 | blood1.CanCollide = false | |
| 4352 | blood1.Shape = Enum.PartType.Cylinder | |
| 4353 | blood1.Size = Vector3.new(0.0500000007, siz, siz) | |
| 4354 | blood1.CFrame = CFrame.new(8.53000641, 0.0250000004, -8.39000702, 0, -1, 0, -1, 0, 0, 0, 0, -1) | |
| 4355 | blood1.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4356 | blood1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4357 | blood1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4358 | blood1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4359 | blood1.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4360 | blood1.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 4361 | blood1.Color = Color3.new(0.592157, 0, 0) | |
| 4362 | blood1.Position = head.Position - Vector3.new(math.random(-2,2),.5,math.random(-2,2)) | |
| 4363 | blood1.Orientation = Vector3.new(0, 180, -90) | |
| 4364 | blood1.Color = Color3.new(0.592157, 0, 0) | |
| 4365 | ]]-- | |
| 4366 | --blud | |
| 4367 | ------ | |
| 4368 | wait() | |
| 4369 | Debounce = false | |
| 4370 | pcall(function() | |
| 4371 | for i, v in pairs(tuoch.Parent:children()) do | |
| 4372 | if v:IsA("Humanoid")then
| |
| 4373 | v.Name = "Humanoid2" | |
| 4374 | end | |
| 4375 | end | |
| 4376 | end) | |
| 4377 | local Victimm = tuoch.Parent | |
| 4378 | local player = Victimm | |
| 4379 | local char = Victimm | |
| 4380 | local rg = char | |
| 4381 | local OMGCREEPYw = Instance.new("Sound")
| |
| 4382 | ||
| 4383 | OMGCREEPYw.Volume = 5 | |
| 4384 | OMGCREEPYw.SoundId = "rbxassetid://605536910" | |
| 4385 | char.Archivable = true | |
| 4386 | for i, v in pairs(rg.Torso:GetChildren()) do | |
| 4387 | if v:IsA("Motor6D") then
| |
| 4388 | v:Destroy() | |
| 4389 | end | |
| 4390 | end | |
| 4391 | ||
| 4392 | local TorsoPointNeckAttachment = Instance.new("Attachment")
| |
| 4393 | TorsoPointNeckAttachment.Name = "TorsoPointNeckAttachment" | |
| 4394 | TorsoPointNeckAttachment.Parent = rg.Torso | |
| 4395 | TorsoPointNeckAttachment.Position = Vector3.new(0,1,0) | |
| 4396 | TorsoPointNeckAttachment.Axis = Vector3.new(1,0,0) | |
| 4397 | TorsoPointNeckAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4398 | local HeadPointNeckAttachment= Instance.new("Attachment")
| |
| 4399 | HeadPointNeckAttachment.Name = "HeadPointNeckAttachment" | |
| 4400 | HeadPointNeckAttachment.Parent = rg.Head | |
| 4401 | HeadPointNeckAttachment.Position = Vector3.new(0,-0.5,0) | |
| 4402 | HeadPointNeckAttachment.Axis = Vector3.new(1,0,0) | |
| 4403 | HeadPointNeckAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4404 | local LeftArmPointAttachment = Instance.new("Attachment")
| |
| 4405 | LeftArmPointAttachment.Name = "LeftArmPointAttachment" | |
| 4406 | LeftArmPointAttachment.Parent = rg["Left Arm"] | |
| 4407 | LeftArmPointAttachment.Position = Vector3.new(0,0.5,0) | |
| 4408 | LeftArmPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4409 | LeftArmPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4410 | local RightArmPointAttachment = Instance.new("Attachment")
| |
| 4411 | RightArmPointAttachment.Name = "RightArmPointAttachment" | |
| 4412 | RightArmPointAttachment.Parent = rg["Right Arm"] | |
| 4413 | RightArmPointAttachment.Position = Vector3.new(0,0.5,0) | |
| 4414 | RightArmPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4415 | RightArmPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4416 | local LeftLegPointAttachment = Instance.new("Attachment")
| |
| 4417 | LeftLegPointAttachment.Name = "LeftLegPointAttachment" | |
| 4418 | LeftLegPointAttachment.Parent = rg["Left Leg"] | |
| 4419 | LeftLegPointAttachment.Position = Vector3.new(0,1,0) | |
| 4420 | LeftLegPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4421 | LeftLegPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4422 | local RightLegPointAttachment = Instance.new("Attachment")
| |
| 4423 | RightLegPointAttachment.Name = "RightLegPointAttachment" | |
| 4424 | RightLegPointAttachment.Parent = rg["Right Leg"] | |
| 4425 | RightLegPointAttachment.Position = Vector3.new(0,1,0) | |
| 4426 | RightLegPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4427 | RightLegPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4428 | local LeftHipPointAttachment = Instance.new("Attachment")
| |
| 4429 | LeftHipPointAttachment.Name = "LeftHipPointAttachment" | |
| 4430 | LeftHipPointAttachment.Parent = rg.Torso | |
| 4431 | LeftHipPointAttachment.Position = Vector3.new(-0.5,-1,0) | |
| 4432 | LeftHipPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4433 | LeftHipPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4434 | local RightHipPointAttachment = Instance.new("Attachment")
| |
| 4435 | RightHipPointAttachment.Name = "RightHipPointAttachment" | |
| 4436 | RightHipPointAttachment.Parent = rg.Torso | |
| 4437 | RightHipPointAttachment.Position = Vector3.new(0.5,-1,0) | |
| 4438 | RightHipPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4439 | RightHipPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4440 | local LeftShoulderPointAttachment = Instance.new("Attachment")
| |
| 4441 | LeftShoulderPointAttachment.Name = "LeftShoulderPointAttachment" | |
| 4442 | LeftShoulderPointAttachment.Parent = rg.Torso | |
| 4443 | LeftShoulderPointAttachment.Position = Vector3.new(-1.5,0.5,0) | |
| 4444 | LeftShoulderPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4445 | LeftShoulderPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4446 | local RightShoulderPointAttachment = Instance.new("Attachment")
| |
| 4447 | RightShoulderPointAttachment.Name = "RightShoulderPointAttachment" | |
| 4448 | RightShoulderPointAttachment.Parent = rg.Torso | |
| 4449 | RightShoulderPointAttachment.Position = Vector3.new(1.5,0.5,0) | |
| 4450 | RightShoulderPointAttachment.Axis = Vector3.new(1,0,0) | |
| 4451 | RightShoulderPointAttachment.SecondaryAxis = Vector3.new(0,1,0) | |
| 4452 | ||
| 4453 | ||
| 4454 | ||
| 4455 | ||
| 4456 | ||
| 4457 | ||
| 4458 | local n = Instance.new("BallSocketConstraint", rg.Torso)
| |
| 4459 | n.Name = "BallSocketNeck" | |
| 4460 | n.Attachment0 = TorsoPointNeckAttachment | |
| 4461 | n.Attachment1 = HeadPointNeckAttachment | |
| 4462 | n.Restitution = 0 | |
| 4463 | n.UpperAngle = 90 | |
| 4464 | n.Enabled = true | |
| 4465 | n.LimitsEnabled = true | |
| 4466 | ||
| 4467 | local rs = Instance.new("BallSocketConstraint", rg.Torso)
| |
| 4468 | rs.Name = "BallSocketRightShoulder" | |
| 4469 | rs.Attachment0 = RightShoulderPointAttachment | |
| 4470 | rs.Attachment1 = RightArmPointAttachment | |
| 4471 | rs.Restitution = 0 | |
| 4472 | rs.UpperAngle = 90 | |
| 4473 | rs.Enabled = true | |
| 4474 | rs.LimitsEnabled = true | |
| 4475 | local ls = Instance.new("BallSocketConstraint", rg.Torso)
| |
| 4476 | ls.Name = "BallSocketLeftShoulder" | |
| 4477 | ls.Attachment0 = LeftShoulderPointAttachment | |
| 4478 | ls.Attachment1 = LeftArmPointAttachment | |
| 4479 | ls.Restitution = 0 | |
| 4480 | ls.UpperAngle = 90 | |
| 4481 | ls.Enabled = true | |
| 4482 | ls.LimitsEnabled = true | |
| 4483 | ||
| 4484 | local rh = Instance.new("BallSocketConstraint", rg.Torso)
| |
| 4485 | rh.Name = "BallSocketRightHip" | |
| 4486 | rh.Attachment0 = RightHipPointAttachment | |
| 4487 | rh.Attachment1 = RightLegPointAttachment | |
| 4488 | rh.Restitution = 0 | |
| 4489 | rh.UpperAngle = 90 | |
| 4490 | rh.Enabled = true | |
| 4491 | rh.LimitsEnabled = true | |
| 4492 | local lh = Instance.new("BallSocketConstraint", rg.Torso)
| |
| 4493 | lh.Name = "BallSocketLeftHip" | |
| 4494 | lh.Attachment0 = LeftHipPointAttachment | |
| 4495 | lh.Attachment1 = LeftLegPointAttachment | |
| 4496 | lh.Restitution = 0 | |
| 4497 | lh.UpperAngle = 90 | |
| 4498 | lh.Enabled = true | |
| 4499 | char.Humanoid2.PlatformStand = true | |
| 4500 | char.Humanoid2.AutoRotate = false | |
| 4501 | rg.Parent = game.Workspace | |
| 4502 | rg.Head.face.Texture = "http://www.roblox.com/asset/?id=778409313" | |
| 4503 | pcall(function() | |
| 4504 | for i, v in pairs(rg:children()) do | |
| 4505 | if v:IsA("Part") and v.Name == "HumanoidRootPart" then
| |
| 4506 | v:destroy() | |
| 4507 | end | |
| 4508 | end | |
| 4509 | end) | |
| 4510 | local runDummyScript = function(f,scri) | |
| 4511 | local oldenv = getfenv(f) | |
| 4512 | local newenv = setmetatable({}, {
| |
| 4513 | __index = function(_, k) | |
| 4514 | if k:lower() == 'script' then | |
| 4515 | return scri | |
| 4516 | else | |
| 4517 | return oldenv[k] | |
| 4518 | end | |
| 4519 | end | |
| 4520 | }) | |
| 4521 | setfenv(f, newenv) | |
| 4522 | ypcall(function() f() end) | |
| 4523 | end | |
| 4524 | local cors = {}
| |
| 4525 | local mas = Instance.new("Model",game:GetService("Lighting"))
| |
| 4526 | mas.Name = "Collidable Limbs" | |
| 4527 | local oo1 = Instance.new("Part")
| |
| 4528 | local oo2 = Instance.new("Part")
| |
| 4529 | local oo3 = Instance.new("Part")
| |
| 4530 | local oo4 = Instance.new("Part")
| |
| 4531 | local oo5 = Instance.new("Part")
| |
| 4532 | local oo6 = Instance.new("Part")
| |
| 4533 | local w1 = Instance.new("Weld")
| |
| 4534 | local w2 = Instance.new("Weld")
| |
| 4535 | local w3 = Instance.new("Weld")
| |
| 4536 | local w4 = Instance.new("Weld")
| |
| 4537 | local w5 = Instance.new("Weld")
| |
| 4538 | local w6 = Instance.new("Weld")
| |
| 4539 | oo1.Name = "CHead" | |
| 4540 | w1.Parent = oo1 | |
| 4541 | w1.Part0 = w1.Parent | |
| 4542 | w1.Part1 = rg["Head"] | |
| 4543 | oo1.Parent = mas | |
| 4544 | oo1.Material = Enum.Material.SmoothPlastic | |
| 4545 | oo1.BrickColor = BrickColor.new("Institutional white")
| |
| 4546 | oo1.Transparency = 1 | |
| 4547 | oo1.Position = rg.Head.Position | |
| 4548 | oo1.Velocity = Vector3.new(0, -9.19685173, 0) | |
| 4549 | oo1.Locked = true | |
| 4550 | oo1.FormFactor = Enum.FormFactor.Symmetric | |
| 4551 | oo1.Size = Vector3.new(2, 1, 1) | |
| 4552 | oo1.CFrame = CFrame.new(0, 4.50001812, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4553 | oo1.BottomSurface = Enum.SurfaceType.Smooth | |
| 4554 | oo1.TopSurface = Enum.SurfaceType.Smooth | |
| 4555 | oo1.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 4556 | oo1.Position = Vector3.new(0, 4.50001812, 0) | |
| 4557 | oo1.CanCollide = false | |
| 4558 | ||
| 4559 | oo2.Name = "CT" | |
| 4560 | w2.Parent = oo2 | |
| 4561 | w2.Part0 = w2.Parent | |
| 4562 | w2.Part1 = rg["Torso"] | |
| 4563 | oo2.Parent = mas | |
| 4564 | oo2.CanCollide = true | |
| 4565 | oo2.Material = Enum.Material.SmoothPlastic | |
| 4566 | oo2.BrickColor = BrickColor.new("Institutional white")
| |
| 4567 | oo2.Transparency = 1 | |
| 4568 | oo2.Position = rg.Torso.Position | |
| 4569 | oo2.Velocity = Vector3.new(0, -9.19685173, 0) | |
| 4570 | oo2.Locked = true | |
| 4571 | oo2.Anchored = false | |
| 4572 | oo2.FormFactor = Enum.FormFactor.Symmetric | |
| 4573 | oo2.Size = Vector3.new(2, 2, 1) | |
| 4574 | oo2.CFrame = CFrame.new(0, 3.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4575 | oo2.BottomSurface = Enum.SurfaceType.Smooth | |
| 4576 | oo2.TopSurface = Enum.SurfaceType.Smooth | |
| 4577 | oo2.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 4578 | oo2.Position = Vector3.new(0, 3.00001788, 0) | |
| 4579 | oo3.Name = "CLA" | |
| 4580 | oo3.CanCollide = true | |
| 4581 | w3.Parent = oo3 | |
| 4582 | w3.Part0 = w3.Parent | |
| 4583 | w3.Part1 = rg["Left Arm"] | |
| 4584 | w3.C0 = CFrame.new(0, 0, 0) | |
| 4585 | w3.C1 = CFrame.new(0, -0.2, 0) | |
| 4586 | oo3.Parent = mas | |
| 4587 | oo3.Material = Enum.Material.SmoothPlastic | |
| 4588 | oo3.BrickColor = BrickColor.new("Institutional white")
| |
| 4589 | oo3.Transparency = 1 | |
| 4590 | oo3.Position = rg["Left Arm"].Position | |
| 4591 | oo3.Velocity = Vector3.new(0, -9.19685173, 0) | |
| 4592 | oo3.CanCollide = true | |
| 4593 | oo3.Locked = true | |
| 4594 | oo3.FormFactor = Enum.FormFactor.Symmetric | |
| 4595 | oo3.Size = Vector3.new(1, 1.40, 1) | |
| 4596 | oo3.CFrame = CFrame.new(-1.5, 3.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4597 | oo3.BottomSurface = Enum.SurfaceType.Smooth | |
| 4598 | oo3.TopSurface = Enum.SurfaceType.Smooth | |
| 4599 | oo3.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 4600 | oo3.Position = Vector3.new(-1.5, 3.00001788, 0) | |
| 4601 | oo4.Name = "CRA" | |
| 4602 | w4.Parent = oo4 | |
| 4603 | w4.Part0 = w4.Parent | |
| 4604 | w4.Part1 = rg["Right Arm"] | |
| 4605 | w4.C0 = CFrame.new(0, 0, 0) | |
| 4606 | w4.C1 = CFrame.new(0, -0.2, 0) | |
| 4607 | oo4.Parent = mas | |
| 4608 | oo4.CanCollide = true | |
| 4609 | oo4.Material = Enum.Material.SmoothPlastic | |
| 4610 | oo4.BrickColor = BrickColor.new("Institutional white")
| |
| 4611 | oo4.Transparency = 1 | |
| 4612 | oo4.Position = Vector3.new(1.5, 3.00001788, 0) | |
| 4613 | oo4.Velocity = Vector3.new(0, -9.19685173, 0) | |
| 4614 | oo4.CanCollide = true | |
| 4615 | oo4.Locked = true | |
| 4616 | oo4.FormFactor = Enum.FormFactor.Symmetric | |
| 4617 | oo4.Size = Vector3.new(1, 1.40, 1) | |
| 4618 | oo4.CFrame = CFrame.new(1.5, 3.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4619 | oo4.BottomSurface = Enum.SurfaceType.Smooth | |
| 4620 | oo4.TopSurface = Enum.SurfaceType.Smooth | |
| 4621 | oo4.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 4622 | oo4.Position = rg["Right Arm"].Position | |
| 4623 | oo5.Name = "CLL" | |
| 4624 | oo5.Parent = mas | |
| 4625 | w5.Parent = oo5 | |
| 4626 | w5.Part0 = w5.Parent | |
| 4627 | w5.Part1 = rg["Left Leg"] | |
| 4628 | w5.C0 = CFrame.new(0, 0, 0) | |
| 4629 | w5.C1 = CFrame.new(0, -0.2, 0) | |
| 4630 | oo5.Material = Enum.Material.SmoothPlastic | |
| 4631 | oo5.BrickColor = BrickColor.new("Institutional white")
| |
| 4632 | oo5.Transparency = 1 | |
| 4633 | oo5.CanCollide = true | |
| 4634 | oo5.Position = rg["Left Leg"].Position | |
| 4635 | oo5.Velocity = Vector3.new(0, -9.19685173, 0) | |
| 4636 | oo5.CanCollide = true | |
| 4637 | oo5.Locked = true | |
| 4638 | oo5.FormFactor = Enum.FormFactor.Symmetric | |
| 4639 | oo5.Size = Vector3.new(1, 1.65, 1) | |
| 4640 | oo5.CFrame = CFrame.new(-0.5, 1.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4641 | oo5.BottomSurface = Enum.SurfaceType.Smooth | |
| 4642 | oo5.TopSurface = Enum.SurfaceType.Smooth | |
| 4643 | oo5.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 4644 | oo5.Position = Vector3.new(-0.5, 1.00001788, 0) | |
| 4645 | oo6.Name = "CRL" | |
| 4646 | oo6.Parent = mas | |
| 4647 | oo6.Material = Enum.Material.SmoothPlastic | |
| 4648 | oo6.BrickColor = BrickColor.new("Institutional white")
| |
| 4649 | oo6.Transparency = 1 | |
| 4650 | oo6.Position = rg["Right Leg"].Position | |
| 4651 | oo6.Velocity = Vector3.new(0, -9.19685173, 0) | |
| 4652 | oo6.CanCollide = true | |
| 4653 | oo6.Locked = true | |
| 4654 | oo6.FormFactor = Enum.FormFactor.Symmetric | |
| 4655 | oo6.Size = Vector3.new(1, 1.65, 1) | |
| 4656 | oo6.CFrame = CFrame.new(0.5, 1.00001788, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 4657 | oo6.BottomSurface = Enum.SurfaceType.Smooth | |
| 4658 | oo6.TopSurface = Enum.SurfaceType.Smooth | |
| 4659 | oo6.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 4660 | oo6.Position = Vector3.new(0.5, 1.00001788, 0) | |
| 4661 | oo6.CanCollide = true | |
| 4662 | w6.Parent = oo6 | |
| 4663 | w6.Part0 = w6.Parent | |
| 4664 | w6.Part1 = rg["Right Leg"] | |
| 4665 | w6.C0 = CFrame.new(0, 0, 0) | |
| 4666 | w6.C1 = CFrame.new(0, -0.2, 0) | |
| 4667 | mas.Parent = rg | |
| 4668 | mas:MakeJoints() | |
| 4669 | local raggeeh = rg | |
| 4670 | raggeeh.Head.Anchored = true | |
| 4671 | raggeeh.Humanoid2.PlatformStand = true | |
| 4672 | local FORS = Instance.new("BodyThrust")
| |
| 4673 | FORS.Force = Vector3.new(0,100,0) | |
| 4674 | FORS.Location = Vector3.new(0,1,0) | |
| 4675 | FORS.Parent = raggeeh.Head | |
| 4676 | local TUURS = raggeeh.Torso | |
| 4677 | local CPU = Instance.new("Model")
| |
| 4678 | CPU.Parent = raggeeh | |
| 4679 | raggeeh.Parent = game:GetService("Workspace")
| |
| 4680 | ||
| 4681 | local FORCEo1 = Instance.new("BodyThrust")
| |
| 4682 | FORCEo1.Parent = raggeeh.Torso | |
| 4683 | FORCEo1.force = Vector3.new(0, 1000, 0) | |
| 4684 | FORCEo1.location = Vector3.new(0, 0, 1) | |
| 4685 | ||
| 4686 | raggeeh.Parent = game:GetService("Workspace")
| |
| 4687 | raggeeh.Head.Anchored = false | |
| 4688 | ||
| 4689 | raggeeh.Parent = game:GetService("Workspace")
| |
| 4690 | wait() | |
| 4691 | local FOLDARR = Instance.new("Model")
| |
| 4692 | FOLDARR.Parent = raggeeh | |
| 4693 | FOLDARR.Name = "BLUDDDDDDDDDDD" | |
| 4694 | local FLUIDS = Instance.new("Model")
| |
| 4695 | FLUIDS.Name = Victimm.Name.."'s fluids" | |
| 4696 | FLUIDS.Parent = FOLDARR | |
| 4697 | raggeeh.Head.Anchored = false | |
| 4698 | OMGCREEPYw.Parent = raggeeh | |
| 4699 | OMGCREEPYw.Volume = .5 | |
| 4700 | OMGCREEPYw:Play() | |
| 4701 | FORCEo1:Destroy() | |
| 4702 | raggeeh.Humanoid2.Name = "Humanoid2" | |
| 4703 | Debounce = false | |
| 4704 | end | |
| 4705 | end) | |
| 4706 | ||
| 4707 | BUMB = false | |
| 4708 | MUOSE.KeyDown:connect(function(key) | |
| 4709 | if(key == "b") and BUMB == false | |
| 4710 | then | |
| 4711 | end | |
| 4712 | end) | |
| 4713 | ||
| 4714 | SPY.Character.Humanoid.Died:connect(function() | |
| 4715 | workspace.CurrentCamera:clearAllChildren() | |
| 4716 | o1:Destroy() | |
| 4717 | end) | |
| 4718 | ORGC0 = SPY.Character.Torso["Neck"].C0 | |
| 4719 | wait() | |
| 4720 | m = SPY:GetMouse() | |
| 4721 | game["Run Service"].OnServerEvent:connect(function() | |
| 4722 | local c = workspace.CurrentCamera | |
| 4723 | if EQUOPIED == true then | |
| 4724 | o13.C0 = CFrame.new(0,0,0) * CFrame.Angles(-math.asin((m.Origin.p - m.Hit.p).unit.y) + 0,0,0) | |
| 4725 | o16.C0 = CFrame.new(0,0,0) * CFrame.Angles(-math.asin((m.Origin.p - m.Hit.p).unit.y) + 0,0,0) | |
| 4726 | SPY.Character.Torso["Neck"].C0 = CFrame.new(0,1,0) * CFrame.Angles(-math.asin((m.Origin.p - m.Hit.p).unit.y) + 1.55,3.15,0) | |
| 4727 | else | |
| 4728 | SPY.Character.Torso["Neck"].C0 = ORGC0 | |
| 4729 | end | |
| 4730 | end) | |
| 4731 | ||
| 4732 | while true do | |
| 4733 | wait() | |
| 4734 | if o307 then | |
| 4735 | if o307.Value == true | |
| 4736 | then | |
| 4737 | lo1.BrickColor = BrickColor.new("Bright green")
| |
| 4738 | lo4.BrickColor = BrickColor.new("Really black")
| |
| 4739 | wait(1) | |
| 4740 | lo1.BrickColor = BrickColor.new("Really black")
| |
| 4741 | lo4.BrickColor = BrickColor.new("Really black")
| |
| 4742 | wait(1) | |
| 4743 | else | |
| 4744 | lo4.BrickColor = BrickColor.new("Crimson")
| |
| 4745 | lo1.BrickColor = BrickColor.new("Really black")
| |
| 4746 | wait(1) | |
| 4747 | lo4.BrickColor = BrickColor.new("Really black")
| |
| 4748 | lo1.BrickColor = BrickColor.new("Really black")
| |
| 4749 | wait(1) | |
| 4750 | end | |
| 4751 | elseif not o307 | |
| 4752 | then | |
| 4753 | lo4.BrickColor = BrickColor.new("Crimson")
| |
| 4754 | lo1.BrickColor = BrickColor.new("Bright green")
| |
| 4755 | wait(1) | |
| 4756 | lo1.BrickColor = BrickColor.new("Really black")
| |
| 4757 | lo4.BrickColor = BrickColor.new("Really black")
| |
| 4758 | wait(1) | |
| 4759 | end | |
| 4760 | end |