SHOW:
|
|
- or go back to the newest paste.
| 1 | -- This script has been converted to FE by iPxter | |
| 2 | ||
| 3 | ||
| 4 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
| |
| 5 | local Player,Mouse,mouse,UserInputService,ContextActionService = owner | |
| 6 | do | |
| 7 | print("FE Compatibility code by Mokiros | Translated to FE by iPxter")
| |
| 8 | script.Parent = Player.Character | |
| 9 | ||
| 10 | --RemoteEvent for communicating | |
| 11 | local Event = Instance.new("RemoteEvent")
| |
| 12 | Event.Name = "UserInput_Event" | |
| 13 | ||
| 14 | --Fake event to make stuff like Mouse.KeyDown work | |
| 15 | local function fakeEvent() | |
| 16 | local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
| |
| 17 | t.connect = t.Connect | |
| 18 | return t | |
| 19 | end | |
| 20 | ||
| 21 | --Creating fake input objects with fake variables | |
| 22 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
| |
| 23 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
| |
| 24 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
| |
| 25 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
| |
| 26 | end} | |
| 27 | --Merged 2 functions into one by checking amount of arguments | |
| 28 | CAS.UnbindAction = CAS.BindAction | |
| 29 | ||
| 30 | --This function will trigger the events that have been :Connect()'ed | |
| 31 | local function te(self,ev,...) | |
| 32 | local t = m[ev] | |
| 33 | if t and t._fakeEvent and t.Function then | |
| 34 | t.Function(...) | |
| 35 | end | |
| 36 | end | |
| 37 | m.TrigEvent = te | |
| 38 | UIS.TrigEvent = te | |
| 39 | ||
| 40 | Event.OnServerEvent:Connect(function(plr,io) | |
| 41 | if plr~=Player then return end | |
| 42 | if io.isMouse then | |
| 43 | m.Target = io.Target | |
| 44 | m.Hit = io.Hit | |
| 45 | else | |
| 46 | local b = io.UserInputState == Enum.UserInputState.Begin | |
| 47 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 48 | return m:TrigEvent(b and "Button1Down" or "Button1Up") | |
| 49 | end | |
| 50 | for _,t in pairs(CAS.Actions) do | |
| 51 | for _,k in pairs(t.Keys) do | |
| 52 | if k==io.KeyCode then | |
| 53 | t.Function(t.Name,io.UserInputState,io) | |
| 54 | end | |
| 55 | end | |
| 56 | end | |
| 57 | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
| 58 | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) | |
| 59 | end | |
| 60 | end) | |
| 61 | Event.Parent = NLS([==[ | |
| 62 | local Player = owner | |
| 63 | local Event = script:WaitForChild("UserInput_Event")
| |
| 64 | ||
| 65 | local UIS = game:GetService("UserInputService")
| |
| 66 | local input = function(io,a) | |
| 67 | if a then return end | |
| 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 | |
| 71 | UIS.InputBegan:Connect(input) | |
| 72 | UIS.InputEnded:Connect(input) | |
| 73 | ||
| 74 | local Mouse = Player:GetMouse() | |
| 75 | local h,t | |
| 76 | --Give the server mouse data 30 times every second, but only if the values changed | |
| 77 | --If player is not moving their mouse, client won't fire events | |
| 78 | while wait(1/30) do | |
| 79 | if h~=Mouse.Hit or t~=Mouse.Target then | |
| 80 | h,t=Mouse.Hit,Mouse.Target | |
| 81 | Event:FireServer({isMouse=true,Target=t,Hit=h})
| |
| 82 | end | |
| 83 | end]==],Player.Character) | |
| 84 | Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS | |
| 85 | end | |
| 86 | ||
| 87 | --Created by N3xul. | |
| 88 | -- Script Name: N3xul 8Bit Hover Car | |
| 89 | -- Last Updated: | |
| 90 | -- _ _ ____ _ _____ _ _ | |
| 91 | -- | \ | |___ \ | | / ____| (_) | | | |
| 92 | -- | \| | __) |_ ___ _| | | (___ ___ _ __ _ _ __ | |_ | |
| 93 | -- | . ` ||__ <\ \/ / | | | | \___ \ / __| '__| | '_ \| __| | |
| 94 | -- | |\ |___) |> <| |_| | | ____) | (__| | | | |_) | |_ | |
| 95 | -- |_| \_|____//_/\_\\__,_|_| |_____/ \___|_| |_| .__/ \__| | |
| 96 | -- | | | |
| 97 | -- |_| | |
| 98 | local runDummyScript = function(f,scri) | |
| 99 | local oldenv = getfenv(f) | |
| 100 | local newenv = setmetatable({}, {
| |
| 101 | __index = function(_, k) | |
| 102 | if k:lower() == 'script' then | |
| 103 | return scri | |
| 104 | else | |
| 105 | return oldenv[k] | |
| 106 | end | |
| 107 | end | |
| 108 | }) | |
| 109 | setfenv(f, newenv) | |
| 110 | ypcall(function() f() end) | |
| 111 | end | |
| 112 | cors = {}
| |
| 113 | mas = Instance.new("Model",game:GetService("Lighting"))
| |
| 114 | mas.Name = "CompiledModel" | |
| 115 | o1 = Instance.new("Model")
| |
| 116 | o2 = Instance.new("Model")
| |
| 117 | o3 = Instance.new("VehicleSeat")
| |
| 118 | o4 = Instance.new("Script")
| |
| 119 | o5 = Instance.new("Part")
| |
| 120 | o6 = Instance.new("CylinderMesh")
| |
| 121 | o7 = Instance.new("Part")
| |
| 122 | o8 = Instance.new("CylinderMesh")
| |
| 123 | o9 = Instance.new("Model")
| |
| 124 | o10 = Instance.new("Part")
| |
| 125 | o11 = Instance.new("Part")
| |
| 126 | o12 = Instance.new("Part")
| |
| 127 | o13 = Instance.new("Part")
| |
| 128 | o14 = Instance.new("Part")
| |
| 129 | o15 = Instance.new("Part")
| |
| 130 | o16 = Instance.new("Part")
| |
| 131 | o17 = Instance.new("Part")
| |
| 132 | o18 = Instance.new("Part")
| |
| 133 | o19 = Instance.new("Part")
| |
| 134 | o20 = Instance.new("Part")
| |
| 135 | o21 = Instance.new("Part")
| |
| 136 | o22 = Instance.new("Part")
| |
| 137 | o23 = Instance.new("Part")
| |
| 138 | o24 = Instance.new("Part")
| |
| 139 | o25 = Instance.new("Part")
| |
| 140 | o26 = Instance.new("Part")
| |
| 141 | o27 = Instance.new("Part")
| |
| 142 | o28 = Instance.new("Part")
| |
| 143 | o29 = Instance.new("Part")
| |
| 144 | o30 = Instance.new("Part")
| |
| 145 | o31 = Instance.new("Part")
| |
| 146 | o32 = Instance.new("Part")
| |
| 147 | o33 = Instance.new("Part")
| |
| 148 | o34 = Instance.new("Part")
| |
| 149 | o35 = Instance.new("Part")
| |
| 150 | o36 = Instance.new("Part")
| |
| 151 | o37 = Instance.new("Part")
| |
| 152 | o38 = Instance.new("Part")
| |
| 153 | o39 = Instance.new("Part")
| |
| 154 | o40 = Instance.new("Part")
| |
| 155 | o41 = Instance.new("Part")
| |
| 156 | o42 = Instance.new("Part")
| |
| 157 | o43 = Instance.new("Part")
| |
| 158 | o44 = Instance.new("Part")
| |
| 159 | o45 = Instance.new("Part")
| |
| 160 | o46 = Instance.new("Part")
| |
| 161 | o47 = Instance.new("Part")
| |
| 162 | o48 = Instance.new("Part")
| |
| 163 | o49 = Instance.new("Part")
| |
| 164 | o50 = Instance.new("Part")
| |
| 165 | o51 = Instance.new("Part")
| |
| 166 | o52 = Instance.new("Part")
| |
| 167 | o53 = Instance.new("Part")
| |
| 168 | o54 = Instance.new("Part")
| |
| 169 | o55 = Instance.new("Part")
| |
| 170 | o56 = Instance.new("SpotLight")
| |
| 171 | o57 = Instance.new("Part")
| |
| 172 | o58 = Instance.new("ClickDetector")
| |
| 173 | o59 = Instance.new("Script")
| |
| 174 | o60 = Instance.new("Decal")
| |
| 175 | o61 = Instance.new("Part")
| |
| 176 | o62 = Instance.new("Part")
| |
| 177 | o63 = Instance.new("Part")
| |
| 178 | o64 = Instance.new("Part")
| |
| 179 | o65 = Instance.new("Part")
| |
| 180 | o66 = Instance.new("Part")
| |
| 181 | o67 = Instance.new("Part")
| |
| 182 | o68 = Instance.new("Part")
| |
| 183 | o69 = Instance.new("Part")
| |
| 184 | o70 = Instance.new("Part")
| |
| 185 | o71 = Instance.new("Part")
| |
| 186 | o72 = Instance.new("Part")
| |
| 187 | o73 = Instance.new("Part")
| |
| 188 | o74 = Instance.new("Part")
| |
| 189 | o75 = Instance.new("Part")
| |
| 190 | o76 = Instance.new("Part")
| |
| 191 | o77 = Instance.new("Part")
| |
| 192 | o78 = Instance.new("Part")
| |
| 193 | o1.Name = "N3xul HoverCar" | |
| 194 | o1.Parent = mas | |
| 195 | o2.Name = "[EngineControl]" | |
| 196 | o2.Parent = o1 | |
| 197 | o3.Name = "DriverSeat" | |
| 198 | o3.Parent = o2 | |
| 199 | o3.Material = Enum.Material.SmoothPlastic | |
| 200 | o3.BrickColor = BrickColor.new("Dark stone grey")
| |
| 201 | o3.Transparency = 1 | |
| 202 | o3.Position = Vector3.new(-180.289993, 3.30000925, 177.170013) | |
| 203 | o3.Rotation = Vector3.new(-180, 0, -180) | |
| 204 | o3.CanCollide = false | |
| 205 | o3.Size = Vector3.new(2, 0.200000003, 2) | |
| 206 | o3.CFrame = CFrame.new(-180.289993, 3.30000925, 177.170013, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 207 | o3.BottomSurface = Enum.SurfaceType.Weld | |
| 208 | o3.TopSurface = Enum.SurfaceType.Smooth | |
| 209 | o3.MaxSpeed = 75 | |
| 210 | o3.Torque = 80 | |
| 211 | o3.TurnSpeed = 1.25 | |
| 212 | o3.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 213 | o3.Position = Vector3.new(-180.289993, 3.30000925, 177.170013) | |
| 214 | o3.Orientation = Vector3.new(0, 180, 0) | |
| 215 | o3.Color = Color3.new(0.388235, 0.372549, 0.384314) | |
| 216 | o4.Name = "SeatTag" | |
| 217 | o4.Parent = o3 | |
| 218 | table.insert(cors,coroutine.create(function() | |
| 219 | wait() | |
| 220 | runDummyScript(function() | |
| 221 | script.Parent.ChildAdded:connect(function(o) | |
| 222 | ts=o.Part1 | |
| 223 | if ts~=nil then | |
| 224 | chr=ts.Parent | |
| 225 | if chr~=nil then | |
| 226 | i=Instance.new("IntValue")
| |
| 227 | i.Name="InSeat" | |
| 228 | i.Parent=chr | |
| 229 | end | |
| 230 | end | |
| 231 | end) | |
| 232 | ||
| 233 | script.Parent.ChildRemoved:connect(function(o) | |
| 234 | ts=o.Part1 | |
| 235 | if ts~=nil then | |
| 236 | chr=ts.Parent | |
| 237 | if chr~=nil then | |
| 238 | tag=chr:FindFirstChild("InSeat")
| |
| 239 | if tag~=nil then | |
| 240 | tag:remove() | |
| 241 | end | |
| 242 | end | |
| 243 | end | |
| 244 | end) | |
| 245 | end,o4) | |
| 246 | end)) | |
| 247 | o5.Name = "r" | |
| 248 | o5.Parent = o2 | |
| 249 | o5.Material = Enum.Material.Neon | |
| 250 | o5.BrickColor = BrickColor.new("Really blue")
| |
| 251 | o5.Position = Vector3.new(-178.789993, 5.70000601, 166.970001) | |
| 252 | o5.Rotation = Vector3.new(-90, -90, 0) | |
| 253 | o5.CanCollide = false | |
| 254 | o5.FormFactor = Enum.FormFactor.Plate | |
| 255 | o5.Size = Vector3.new(1, 0.400000006, 1) | |
| 256 | o5.CFrame = CFrame.new(-178.789993, 5.70000601, 166.970001, 0, 0, -1, 1, 0, 0, 0, -1, 0) | |
| 257 | o5.BackSurface = Enum.SurfaceType.Weld | |
| 258 | o5.BottomSurface = Enum.SurfaceType.Weld | |
| 259 | o5.FrontSurface = Enum.SurfaceType.Weld | |
| 260 | o5.LeftSurface = Enum.SurfaceType.Weld | |
| 261 | o5.RightSurface = Enum.SurfaceType.Weld | |
| 262 | o5.TopSurface = Enum.SurfaceType.Weld | |
| 263 | o5.Color = Color3.new(0, 0, 1) | |
| 264 | o5.Position = Vector3.new(-178.789993, 5.70000601, 166.970001) | |
| 265 | o5.Orientation = Vector3.new(0, -90, 90) | |
| 266 | o5.Color = Color3.new(0, 0, 1) | |
| 267 | o6.Parent = o5 | |
| 268 | o6.Offset = Vector3.new(0, -1, 0) | |
| 269 | o6.Scale = Vector3.new(1, 5, 1) | |
| 270 | o6.Scale = Vector3.new(1, 5, 1) | |
| 271 | o7.Name = "b" | |
| 272 | o7.Parent = o2 | |
| 273 | o7.Material = Enum.Material.Neon | |
| 274 | o7.BrickColor = BrickColor.new("Really blue")
| |
| 275 | o7.Position = Vector3.new(-181.789993, 5.70000601, 166.970001) | |
| 276 | o7.Rotation = Vector3.new(90, 0, 0) | |
| 277 | o7.CanCollide = false | |
| 278 | o7.FormFactor = Enum.FormFactor.Plate | |
| 279 | o7.Size = Vector3.new(1, 0.400000006, 1) | |
| 280 | o7.CFrame = CFrame.new(-181.789993, 5.70000601, 166.970001, 1, 0, 0, 0, 0, -1, 0, 1, 0) | |
| 281 | o7.BackSurface = Enum.SurfaceType.Weld | |
| 282 | o7.BottomSurface = Enum.SurfaceType.Weld | |
| 283 | o7.FrontSurface = Enum.SurfaceType.Weld | |
| 284 | o7.LeftSurface = Enum.SurfaceType.Weld | |
| 285 | o7.RightSurface = Enum.SurfaceType.Weld | |
| 286 | o7.TopSurface = Enum.SurfaceType.Weld | |
| 287 | o7.Color = Color3.new(0, 0, 1) | |
| 288 | o7.Position = Vector3.new(-181.789993, 5.70000601, 166.970001) | |
| 289 | o7.Orientation = Vector3.new(90, 0, 0) | |
| 290 | o7.Color = Color3.new(0, 0, 1) | |
| 291 | o8.Parent = o7 | |
| 292 | o8.Offset = Vector3.new(0, 1, 0) | |
| 293 | o8.Scale = Vector3.new(1, 5, 1) | |
| 294 | o8.Scale = Vector3.new(1, 5, 1) | |
| 295 | o9.Name = "ArmorKit" | |
| 296 | o9.Parent = o1 | |
| 297 | o10.Name = "Color1" | |
| 298 | o10.Parent = o9 | |
| 299 | o10.Material = Enum.Material.SmoothPlastic | |
| 300 | o10.BrickColor = BrickColor.new("Really black")
| |
| 301 | o10.Reflectance = 0.20000000298023 | |
| 302 | o10.Position = Vector3.new(-186.48999, 4.20000601, 167.970001) | |
| 303 | o10.Elasticity = 1 | |
| 304 | o10.FormFactor = Enum.FormFactor.Custom | |
| 305 | o10.Friction = 0.5 | |
| 306 | o10.Size = Vector3.new(6.4000001, 4, 0.399999976) | |
| 307 | o10.CFrame = CFrame.new(-186.48999, 4.20000601, 167.970001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 308 | o10.BottomSurface = Enum.SurfaceType.Smooth | |
| 309 | o10.RightSurface = Enum.SurfaceType.Weld | |
| 310 | o10.TopSurface = Enum.SurfaceType.Smooth | |
| 311 | o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 312 | o10.Position = Vector3.new(-186.48999, 4.20000601, 167.970001) | |
| 313 | o10.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 314 | o11.Name = "Color1" | |
| 315 | o11.Parent = o9 | |
| 316 | o11.Material = Enum.Material.SmoothPlastic | |
| 317 | o11.BrickColor = BrickColor.new("Really black")
| |
| 318 | o11.Reflectance = 0.20000000298023 | |
| 319 | o11.Position = Vector3.new(-174.089996, 5.70000601, 171.170013) | |
| 320 | o11.Elasticity = 1 | |
| 321 | o11.FormFactor = Enum.FormFactor.Symmetric | |
| 322 | o11.Friction = 0.5 | |
| 323 | o11.Size = Vector3.new(4.4000001, 1, 6) | |
| 324 | o11.CFrame = CFrame.new(-174.089996, 5.70000601, 171.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 325 | o11.BackSurface = Enum.SurfaceType.Weld | |
| 326 | o11.BottomSurface = Enum.SurfaceType.Smooth | |
| 327 | o11.FrontSurface = Enum.SurfaceType.Weld | |
| 328 | o11.LeftSurface = Enum.SurfaceType.Weld | |
| 329 | o11.RightSurface = Enum.SurfaceType.Weld | |
| 330 | o11.TopSurface = Enum.SurfaceType.Smooth | |
| 331 | o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 332 | o11.Position = Vector3.new(-174.089996, 5.70000601, 171.170013) | |
| 333 | o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 334 | o12.Name = "Color1" | |
| 335 | o12.Parent = o9 | |
| 336 | o12.Material = Enum.Material.SmoothPlastic | |
| 337 | o12.BrickColor = BrickColor.new("Really black")
| |
| 338 | o12.Reflectance = 0.20000000298023 | |
| 339 | o12.Position = Vector3.new(-174.089996, 4.20000601, 167.970001) | |
| 340 | o12.Elasticity = 1 | |
| 341 | o12.FormFactor = Enum.FormFactor.Custom | |
| 342 | o12.Friction = 0.5 | |
| 343 | o12.Size = Vector3.new(6.4000001, 4, 0.399999976) | |
| 344 | o12.CFrame = CFrame.new(-174.089996, 4.20000601, 167.970001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 345 | o12.BottomSurface = Enum.SurfaceType.Smooth | |
| 346 | o12.LeftSurface = Enum.SurfaceType.Weld | |
| 347 | o12.TopSurface = Enum.SurfaceType.Smooth | |
| 348 | o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 349 | o12.Position = Vector3.new(-174.089996, 4.20000601, 167.970001) | |
| 350 | o12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 351 | o13.Name = "Color1" | |
| 352 | o13.Parent = o9 | |
| 353 | o13.Material = Enum.Material.SmoothPlastic | |
| 354 | o13.BrickColor = BrickColor.new("Really black")
| |
| 355 | o13.Reflectance = 0.20000000298023 | |
| 356 | o13.Position = Vector3.new(-186.48999, 5.70000601, 171.170013) | |
| 357 | o13.Elasticity = 1 | |
| 358 | o13.FormFactor = Enum.FormFactor.Symmetric | |
| 359 | o13.Friction = 0.5 | |
| 360 | o13.Size = Vector3.new(4.4000001, 1, 6) | |
| 361 | o13.CFrame = CFrame.new(-186.48999, 5.70000601, 171.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 362 | o13.BackSurface = Enum.SurfaceType.Weld | |
| 363 | o13.BottomSurface = Enum.SurfaceType.Smooth | |
| 364 | o13.FrontSurface = Enum.SurfaceType.Weld | |
| 365 | o13.LeftSurface = Enum.SurfaceType.Weld | |
| 366 | o13.RightSurface = Enum.SurfaceType.Weld | |
| 367 | o13.TopSurface = Enum.SurfaceType.Smooth | |
| 368 | o13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 369 | o13.Position = Vector3.new(-186.48999, 5.70000601, 171.170013) | |
| 370 | o13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 371 | o14.Name = "Color1" | |
| 372 | o14.Parent = o9 | |
| 373 | o14.Material = Enum.Material.SmoothPlastic | |
| 374 | o14.BrickColor = BrickColor.new("Really black")
| |
| 375 | o14.Reflectance = 0.20000000298023 | |
| 376 | o14.Position = Vector3.new(-183.389999, 3.50001025, 170.369995) | |
| 377 | o14.Elasticity = 1 | |
| 378 | o14.FormFactor = Enum.FormFactor.Symmetric | |
| 379 | o14.Friction = 0.5 | |
| 380 | o14.Size = Vector3.new(2.20000005, 3.4000001, 2) | |
| 381 | o14.CFrame = CFrame.new(-183.389999, 3.50001025, 170.369995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 382 | o14.BottomSurface = Enum.SurfaceType.Smooth | |
| 383 | o14.TopSurface = Enum.SurfaceType.Weld | |
| 384 | o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 385 | o14.Position = Vector3.new(-183.389999, 3.50001025, 170.369995) | |
| 386 | o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 387 | o15.Name = "Color1" | |
| 388 | o15.Parent = o9 | |
| 389 | o15.Material = Enum.Material.SmoothPlastic | |
| 390 | o15.BrickColor = BrickColor.new("Really black")
| |
| 391 | o15.Reflectance = 0.20000000298023 | |
| 392 | o15.Position = Vector3.new(-189.189987, 4.20000601, 171.170013) | |
| 393 | o15.Elasticity = 1 | |
| 394 | o15.FormFactor = Enum.FormFactor.Symmetric | |
| 395 | o15.Friction = 0.5 | |
| 396 | o15.Size = Vector3.new(1, 4, 6) | |
| 397 | o15.CFrame = CFrame.new(-189.189987, 4.20000601, 171.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 398 | o15.BackSurface = Enum.SurfaceType.Weld | |
| 399 | o15.BottomSurface = Enum.SurfaceType.Smooth | |
| 400 | o15.FrontSurface = Enum.SurfaceType.Weld | |
| 401 | o15.TopSurface = Enum.SurfaceType.Smooth | |
| 402 | o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 403 | o15.Position = Vector3.new(-189.189987, 4.20000601, 171.170013) | |
| 404 | o15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 405 | o16.Name = "Color1" | |
| 406 | o16.Parent = o9 | |
| 407 | o16.Material = Enum.Material.SmoothPlastic | |
| 408 | o16.BrickColor = BrickColor.new("Really black")
| |
| 409 | o16.Reflectance = 0.20000000298023 | |
| 410 | o16.Position = Vector3.new(-171.389999, 4.20000601, 171.170013) | |
| 411 | o16.Elasticity = 1 | |
| 412 | o16.FormFactor = Enum.FormFactor.Symmetric | |
| 413 | o16.Friction = 0.5 | |
| 414 | o16.Size = Vector3.new(1, 4, 6) | |
| 415 | o16.CFrame = CFrame.new(-171.389999, 4.20000601, 171.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 416 | o16.BackSurface = Enum.SurfaceType.Weld | |
| 417 | o16.BottomSurface = Enum.SurfaceType.Smooth | |
| 418 | o16.FrontSurface = Enum.SurfaceType.Weld | |
| 419 | o16.TopSurface = Enum.SurfaceType.Smooth | |
| 420 | o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 421 | o16.Position = Vector3.new(-171.389999, 4.20000601, 171.170013) | |
| 422 | o16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 423 | o17.Name = "Color1" | |
| 424 | o17.Parent = o9 | |
| 425 | o17.Material = Enum.Material.SmoothPlastic | |
| 426 | o17.BrickColor = BrickColor.new("Really black")
| |
| 427 | o17.Reflectance = 0.20000000298023 | |
| 428 | o17.Position = Vector3.new(-177.189987, 3.50001025, 170.369995) | |
| 429 | o17.Elasticity = 1 | |
| 430 | o17.FormFactor = Enum.FormFactor.Symmetric | |
| 431 | o17.Friction = 0.5 | |
| 432 | o17.Size = Vector3.new(2.20000005, 3.4000001, 2) | |
| 433 | o17.CFrame = CFrame.new(-177.189987, 3.50001025, 170.369995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 434 | o17.BottomSurface = Enum.SurfaceType.Smooth | |
| 435 | o17.TopSurface = Enum.SurfaceType.Weld | |
| 436 | o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 437 | o17.Position = Vector3.new(-177.189987, 3.50001025, 170.369995) | |
| 438 | o17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 439 | o18.Name = "Color1" | |
| 440 | o18.Parent = o9 | |
| 441 | o18.Material = Enum.Material.SmoothPlastic | |
| 442 | o18.BrickColor = BrickColor.new("Really black")
| |
| 443 | o18.Reflectance = 0.20000000298023 | |
| 444 | o18.Position = Vector3.new(-183.789993, 4.20000601, 177.170013) | |
| 445 | o18.Elasticity = 1 | |
| 446 | o18.FormFactor = Enum.FormFactor.Symmetric | |
| 447 | o18.Friction = 0.5 | |
| 448 | o18.Size = Vector3.new(1, 4, 18) | |
| 449 | o18.CFrame = CFrame.new(-183.789993, 4.20000601, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 450 | o18.BackSurface = Enum.SurfaceType.Weld | |
| 451 | o18.BottomSurface = Enum.SurfaceType.Smooth | |
| 452 | o18.FrontSurface = Enum.SurfaceType.Weld | |
| 453 | o18.RightSurface = Enum.SurfaceType.Weld | |
| 454 | o18.TopSurface = Enum.SurfaceType.Smooth | |
| 455 | o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 456 | o18.Position = Vector3.new(-183.789993, 4.20000601, 177.170013) | |
| 457 | o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 458 | o19.Name = "Color1" | |
| 459 | o19.Parent = o9 | |
| 460 | o19.Material = Enum.Material.SmoothPlastic | |
| 461 | o19.BrickColor = BrickColor.new("Really black")
| |
| 462 | o19.Reflectance = 0.20000000298023 | |
| 463 | o19.Position = Vector3.new(-189.189987, 4.20000601, 183.170013) | |
| 464 | o19.Elasticity = 1 | |
| 465 | o19.FormFactor = Enum.FormFactor.Symmetric | |
| 466 | o19.Friction = 0.5 | |
| 467 | o19.Size = Vector3.new(1, 4, 6) | |
| 468 | o19.CFrame = CFrame.new(-189.189987, 4.20000601, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 469 | o19.BackSurface = Enum.SurfaceType.Weld | |
| 470 | o19.BottomSurface = Enum.SurfaceType.Smooth | |
| 471 | o19.FrontSurface = Enum.SurfaceType.Weld | |
| 472 | o19.TopSurface = Enum.SurfaceType.Smooth | |
| 473 | o19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 474 | o19.Position = Vector3.new(-189.189987, 4.20000601, 183.170013) | |
| 475 | o19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 476 | o20.Name = "Color1" | |
| 477 | o20.Parent = o9 | |
| 478 | o20.Material = Enum.Material.SmoothPlastic | |
| 479 | o20.BrickColor = BrickColor.new("Really black")
| |
| 480 | o20.Reflectance = 0.20000000298023 | |
| 481 | o20.Position = Vector3.new(-186.48999, 5.70000601, 183.170013) | |
| 482 | o20.Elasticity = 1 | |
| 483 | o20.FormFactor = Enum.FormFactor.Symmetric | |
| 484 | o20.Friction = 0.5 | |
| 485 | o20.Size = Vector3.new(4.4000001, 1, 6) | |
| 486 | o20.CFrame = CFrame.new(-186.48999, 5.70000601, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 487 | o20.BackSurface = Enum.SurfaceType.Weld | |
| 488 | o20.BottomSurface = Enum.SurfaceType.Smooth | |
| 489 | o20.FrontSurface = Enum.SurfaceType.Weld | |
| 490 | o20.LeftSurface = Enum.SurfaceType.Weld | |
| 491 | o20.RightSurface = Enum.SurfaceType.Weld | |
| 492 | o20.TopSurface = Enum.SurfaceType.Smooth | |
| 493 | o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 494 | o20.Position = Vector3.new(-186.48999, 5.70000601, 183.170013) | |
| 495 | o20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 496 | o21.Name = "Color1" | |
| 497 | o21.Parent = o9 | |
| 498 | o21.Material = Enum.Material.SmoothPlastic | |
| 499 | o21.BrickColor = BrickColor.new("Really black")
| |
| 500 | o21.Reflectance = 0.20000000298023 | |
| 501 | o21.Position = Vector3.new(-176.789993, 4.20000601, 177.170013) | |
| 502 | o21.Elasticity = 1 | |
| 503 | o21.FormFactor = Enum.FormFactor.Symmetric | |
| 504 | o21.Friction = 0.5 | |
| 505 | o21.Size = Vector3.new(1, 4, 18) | |
| 506 | o21.CFrame = CFrame.new(-176.789993, 4.20000601, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 507 | o21.BackSurface = Enum.SurfaceType.Weld | |
| 508 | o21.BottomSurface = Enum.SurfaceType.Smooth | |
| 509 | o21.FrontSurface = Enum.SurfaceType.Weld | |
| 510 | o21.LeftSurface = Enum.SurfaceType.Weld | |
| 511 | o21.TopSurface = Enum.SurfaceType.Smooth | |
| 512 | o21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 513 | o21.Position = Vector3.new(-176.789993, 4.20000601, 177.170013) | |
| 514 | o21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 515 | o22.Name = "Color1" | |
| 516 | o22.Parent = o9 | |
| 517 | o22.Material = Enum.Material.SmoothPlastic | |
| 518 | o22.BrickColor = BrickColor.new("Really black")
| |
| 519 | o22.Reflectance = 0.20000000298023 | |
| 520 | o22.Position = Vector3.new(-174.089996, 5.70000601, 183.170013) | |
| 521 | o22.Elasticity = 1 | |
| 522 | o22.FormFactor = Enum.FormFactor.Symmetric | |
| 523 | o22.Friction = 0.5 | |
| 524 | o22.Size = Vector3.new(4.4000001, 1, 6) | |
| 525 | o22.CFrame = CFrame.new(-174.089996, 5.70000601, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 526 | o22.BackSurface = Enum.SurfaceType.Weld | |
| 527 | o22.BottomSurface = Enum.SurfaceType.Smooth | |
| 528 | o22.FrontSurface = Enum.SurfaceType.Weld | |
| 529 | o22.LeftSurface = Enum.SurfaceType.Weld | |
| 530 | o22.RightSurface = Enum.SurfaceType.Weld | |
| 531 | o22.TopSurface = Enum.SurfaceType.Smooth | |
| 532 | o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 533 | o22.Position = Vector3.new(-174.089996, 5.70000601, 183.170013) | |
| 534 | o22.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 535 | o23.Name = "Color1" | |
| 536 | o23.Parent = o9 | |
| 537 | o23.Material = Enum.Material.SmoothPlastic | |
| 538 | o23.BrickColor = BrickColor.new("Really black")
| |
| 539 | o23.Reflectance = 0.20000000298023 | |
| 540 | o23.Position = Vector3.new(-174.089996, 4.20000601, 186.369995) | |
| 541 | o23.Elasticity = 1 | |
| 542 | o23.FormFactor = Enum.FormFactor.Custom | |
| 543 | o23.Friction = 0.5 | |
| 544 | o23.Size = Vector3.new(6.4000001, 4, 0.399999976) | |
| 545 | o23.CFrame = CFrame.new(-174.089996, 4.20000601, 186.369995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 546 | o23.BottomSurface = Enum.SurfaceType.Smooth | |
| 547 | o23.LeftSurface = Enum.SurfaceType.Weld | |
| 548 | o23.TopSurface = Enum.SurfaceType.Smooth | |
| 549 | o23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 550 | o23.Position = Vector3.new(-174.089996, 4.20000601, 186.369995) | |
| 551 | o23.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 552 | o24.Name = "Color1" | |
| 553 | o24.Parent = o9 | |
| 554 | o24.Material = Enum.Material.SmoothPlastic | |
| 555 | o24.BrickColor = BrickColor.new("Really black")
| |
| 556 | o24.Reflectance = 0.20000000298023 | |
| 557 | o24.Position = Vector3.new(-171.389999, 4.20000601, 183.170013) | |
| 558 | o24.Elasticity = 1 | |
| 559 | o24.FormFactor = Enum.FormFactor.Symmetric | |
| 560 | o24.Friction = 0.5 | |
| 561 | o24.Size = Vector3.new(1, 4, 6) | |
| 562 | o24.CFrame = CFrame.new(-171.389999, 4.20000601, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 563 | o24.BackSurface = Enum.SurfaceType.Weld | |
| 564 | o24.BottomSurface = Enum.SurfaceType.Smooth | |
| 565 | o24.FrontSurface = Enum.SurfaceType.Weld | |
| 566 | o24.TopSurface = Enum.SurfaceType.Smooth | |
| 567 | o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 568 | o24.Position = Vector3.new(-171.389999, 4.20000601, 183.170013) | |
| 569 | o24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 570 | o25.Name = "Color1" | |
| 571 | o25.Parent = o9 | |
| 572 | o25.Material = Enum.Material.SmoothPlastic | |
| 573 | o25.BrickColor = BrickColor.new("Really black")
| |
| 574 | o25.Reflectance = 0.20000000298023 | |
| 575 | o25.Position = Vector3.new(-186.48999, 4.20000601, 186.369995) | |
| 576 | o25.Elasticity = 1 | |
| 577 | o25.FormFactor = Enum.FormFactor.Custom | |
| 578 | o25.Friction = 0.5 | |
| 579 | o25.Size = Vector3.new(6.4000001, 4, 0.399999976) | |
| 580 | o25.CFrame = CFrame.new(-186.48999, 4.20000601, 186.369995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 581 | o25.BottomSurface = Enum.SurfaceType.Smooth | |
| 582 | o25.RightSurface = Enum.SurfaceType.Weld | |
| 583 | o25.TopSurface = Enum.SurfaceType.Smooth | |
| 584 | o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 585 | o25.Position = Vector3.new(-186.48999, 4.20000601, 186.369995) | |
| 586 | o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 587 | o26.Name = "Color1" | |
| 588 | o26.Parent = o9 | |
| 589 | o26.Material = Enum.Material.SmoothPlastic | |
| 590 | o26.BrickColor = BrickColor.new("Really black")
| |
| 591 | o26.Reflectance = 0.20000000298023 | |
| 592 | o26.Position = Vector3.new(-177.189987, 3.50001025, 183.970001) | |
| 593 | o26.Elasticity = 1 | |
| 594 | o26.FormFactor = Enum.FormFactor.Symmetric | |
| 595 | o26.Friction = 0.5 | |
| 596 | o26.Size = Vector3.new(2.20000005, 3.4000001, 2) | |
| 597 | o26.CFrame = CFrame.new(-177.189987, 3.50001025, 183.970001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 598 | o26.BottomSurface = Enum.SurfaceType.Smooth | |
| 599 | o26.TopSurface = Enum.SurfaceType.Weld | |
| 600 | o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 601 | o26.Position = Vector3.new(-177.189987, 3.50001025, 183.970001) | |
| 602 | o26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 603 | o27.Name = "Color1" | |
| 604 | o27.Parent = o9 | |
| 605 | o27.Material = Enum.Material.SmoothPlastic | |
| 606 | o27.BrickColor = BrickColor.new("Really black")
| |
| 607 | o27.Reflectance = 0.20000000298023 | |
| 608 | o27.Position = Vector3.new(-183.389999, 3.50001025, 183.970001) | |
| 609 | o27.Elasticity = 1 | |
| 610 | o27.FormFactor = Enum.FormFactor.Symmetric | |
| 611 | o27.Friction = 0.5 | |
| 612 | o27.Size = Vector3.new(2.20000005, 3.4000001, 2) | |
| 613 | o27.CFrame = CFrame.new(-183.389999, 3.50001025, 183.970001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 614 | o27.BottomSurface = Enum.SurfaceType.Smooth | |
| 615 | o27.TopSurface = Enum.SurfaceType.Weld | |
| 616 | o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 617 | o27.Position = Vector3.new(-183.389999, 3.50001025, 183.970001) | |
| 618 | o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 619 | o28.Name = "Color2" | |
| 620 | o28.Parent = o1 | |
| 621 | o28.Material = Enum.Material.SmoothPlastic | |
| 622 | o28.BrickColor = BrickColor.new("Really black")
| |
| 623 | o28.Reflectance = 0.20000000298023 | |
| 624 | o28.Position = Vector3.new(-173.389999, 6.70000601, 179.170013) | |
| 625 | o28.Elasticity = 1 | |
| 626 | o28.FormFactor = Enum.FormFactor.Symmetric | |
| 627 | o28.Friction = 0.5 | |
| 628 | o28.Size = Vector3.new(1, 1, 10) | |
| 629 | o28.CFrame = CFrame.new(-173.389999, 6.70000601, 179.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 630 | o28.BottomSurface = Enum.SurfaceType.Weld | |
| 631 | o28.FrontSurface = Enum.SurfaceType.Weld | |
| 632 | o28.TopSurface = Enum.SurfaceType.Weld | |
| 633 | o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 634 | o28.Position = Vector3.new(-173.389999, 6.70000601, 179.170013) | |
| 635 | o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 636 | o29.Name = "Color2" | |
| 637 | o29.Parent = o1 | |
| 638 | o29.Material = Enum.Material.SmoothPlastic | |
| 639 | o29.BrickColor = BrickColor.new("Really black")
| |
| 640 | o29.Reflectance = 0.20000000298023 | |
| 641 | o29.Position = Vector3.new(-181.48999, 3.70000911, 183.170013) | |
| 642 | o29.Elasticity = 1 | |
| 643 | o29.FormFactor = Enum.FormFactor.Symmetric | |
| 644 | o29.Friction = 0.5 | |
| 645 | o29.Size = Vector3.new(1.60000002, 1, 8) | |
| 646 | o29.CFrame = CFrame.new(-181.48999, 3.70000911, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 647 | o29.BottomSurface = Enum.SurfaceType.Smooth | |
| 648 | o29.FrontSurface = Enum.SurfaceType.Weld | |
| 649 | o29.TopSurface = Enum.SurfaceType.Smooth | |
| 650 | o29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 651 | o29.Position = Vector3.new(-181.48999, 3.70000911, 183.170013) | |
| 652 | o29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 653 | o30.Name = "Color2" | |
| 654 | o30.Parent = o1 | |
| 655 | o30.Material = Enum.Material.SmoothPlastic | |
| 656 | o30.BrickColor = BrickColor.new("Really black")
| |
| 657 | o30.Reflectance = 0.20000000298023 | |
| 658 | o30.Position = Vector3.new(-187.189987, 6.70000601, 179.170013) | |
| 659 | o30.Elasticity = 1 | |
| 660 | o30.FormFactor = Enum.FormFactor.Symmetric | |
| 661 | o30.Friction = 0.5 | |
| 662 | o30.Size = Vector3.new(1, 1, 10) | |
| 663 | o30.CFrame = CFrame.new(-187.189987, 6.70000601, 179.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 664 | o30.BottomSurface = Enum.SurfaceType.Weld | |
| 665 | o30.FrontSurface = Enum.SurfaceType.Weld | |
| 666 | o30.TopSurface = Enum.SurfaceType.Weld | |
| 667 | o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 668 | o30.Position = Vector3.new(-187.189987, 6.70000601, 179.170013) | |
| 669 | o30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 670 | o31.Name = "Color2" | |
| 671 | o31.Parent = o1 | |
| 672 | o31.Material = Enum.Material.SmoothPlastic | |
| 673 | o31.BrickColor = BrickColor.new("Really black")
| |
| 674 | o31.Reflectance = 0.20000000298023 | |
| 675 | o31.Position = Vector3.new(-177.789993, 4.70000601, 177.170013) | |
| 676 | o31.Elasticity = 1 | |
| 677 | o31.FormFactor = Enum.FormFactor.Symmetric | |
| 678 | o31.Friction = 0.5 | |
| 679 | o31.Size = Vector3.new(1, 5, 20) | |
| 680 | o31.CFrame = CFrame.new(-177.789993, 4.70000601, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 681 | o31.BottomSurface = Enum.SurfaceType.Smooth | |
| 682 | o31.LeftSurface = Enum.SurfaceType.Weld | |
| 683 | o31.TopSurface = Enum.SurfaceType.Smooth | |
| 684 | o31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 685 | o31.Position = Vector3.new(-177.789993, 4.70000601, 177.170013) | |
| 686 | o31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 687 | o32.Name = "Color2" | |
| 688 | o32.Parent = o1 | |
| 689 | o32.Material = Enum.Material.SmoothPlastic | |
| 690 | o32.BrickColor = BrickColor.new("Really black")
| |
| 691 | o32.Reflectance = 0.20000000298023 | |
| 692 | o32.Position = Vector3.new(-182.48999, 7.90000725, 177.170013) | |
| 693 | o32.Elasticity = 1 | |
| 694 | o32.FormFactor = Enum.FormFactor.Custom | |
| 695 | o32.Friction = 0.5 | |
| 696 | o32.Size = Vector3.new(0.400000006, 1.39999998, 18) | |
| 697 | o32.CFrame = CFrame.new(-182.48999, 7.90000725, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 698 | o32.BottomSurface = Enum.SurfaceType.Weld | |
| 699 | o32.TopSurface = Enum.SurfaceType.Smooth | |
| 700 | o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 701 | o32.Position = Vector3.new(-182.48999, 7.90000725, 177.170013) | |
| 702 | o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 703 | o33.Name = "Color2" | |
| 704 | o33.Parent = o1 | |
| 705 | o33.Material = Enum.Material.SmoothPlastic | |
| 706 | o33.BrickColor = BrickColor.new("Really black")
| |
| 707 | o33.Reflectance = 0.20000000298023 | |
| 708 | o33.Position = Vector3.new(-186.789993, 4.60000515, 177.170013) | |
| 709 | o33.Elasticity = 1 | |
| 710 | o33.FormFactor = Enum.FormFactor.Symmetric | |
| 711 | o33.Friction = 0.5 | |
| 712 | o33.Size = Vector3.new(7, 5.19999981, 6) | |
| 713 | o33.CFrame = CFrame.new(-186.789993, 4.60000515, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 714 | o33.BottomSurface = Enum.SurfaceType.Smooth | |
| 715 | o33.RightSurface = Enum.SurfaceType.Weld | |
| 716 | o33.TopSurface = Enum.SurfaceType.Smooth | |
| 717 | o33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 718 | o33.Position = Vector3.new(-186.789993, 4.60000515, 177.170013) | |
| 719 | o33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 720 | o34.Name = "Color2" | |
| 721 | o34.Parent = o1 | |
| 722 | o34.Material = Enum.Material.Neon | |
| 723 | o34.BrickColor = BrickColor.new("Really blue")
| |
| 724 | o34.Reflectance = 0.20000000298023 | |
| 725 | o34.Position = Vector3.new(-174.417572, 6.70000601, 179.170013) | |
| 726 | o34.Elasticity = 1 | |
| 727 | o34.FormFactor = Enum.FormFactor.Symmetric | |
| 728 | o34.Friction = 0.5 | |
| 729 | o34.Size = Vector3.new(1, 1, 10) | |
| 730 | o34.CFrame = CFrame.new(-174.417572, 6.70000601, 179.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 731 | o34.BottomSurface = Enum.SurfaceType.Weld | |
| 732 | o34.FrontSurface = Enum.SurfaceType.Weld | |
| 733 | o34.TopSurface = Enum.SurfaceType.Weld | |
| 734 | o34.Color = Color3.new(0, 0, 1) | |
| 735 | o34.Position = Vector3.new(-174.417572, 6.70000601, 179.170013) | |
| 736 | o34.Color = Color3.new(0, 0, 1) | |
| 737 | o35.Name = "Color2" | |
| 738 | o35.Parent = o1 | |
| 739 | o35.Material = Enum.Material.Neon | |
| 740 | o35.BrickColor = BrickColor.new("Really blue")
| |
| 741 | o35.Reflectance = 0.20000000298023 | |
| 742 | o35.Position = Vector3.new(-186.209198, 6.70000601, 179.170013) | |
| 743 | o35.Elasticity = 1 | |
| 744 | o35.FormFactor = Enum.FormFactor.Symmetric | |
| 745 | o35.Friction = 0.5 | |
| 746 | o35.Size = Vector3.new(1, 1, 10) | |
| 747 | o35.CFrame = CFrame.new(-186.209198, 6.70000601, 179.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 748 | o35.BottomSurface = Enum.SurfaceType.Weld | |
| 749 | o35.FrontSurface = Enum.SurfaceType.Weld | |
| 750 | o35.TopSurface = Enum.SurfaceType.Weld | |
| 751 | o35.Color = Color3.new(0, 0, 1) | |
| 752 | o35.Position = Vector3.new(-186.209198, 6.70000601, 179.170013) | |
| 753 | o35.Color = Color3.new(0, 0, 1) | |
| 754 | o36.Name = "Color2" | |
| 755 | o36.Parent = o1 | |
| 756 | o36.Material = Enum.Material.SmoothPlastic | |
| 757 | o36.BrickColor = BrickColor.new("Really black")
| |
| 758 | o36.Reflectance = 0.20000000298023 | |
| 759 | o36.Position = Vector3.new(-177.789993, 2.10000825, 177.170013) | |
| 760 | o36.Elasticity = 1 | |
| 761 | o36.FormFactor = Enum.FormFactor.Symmetric | |
| 762 | o36.Friction = 0.5 | |
| 763 | o36.Size = Vector3.new(1, 0.200000003, 20.0000019) | |
| 764 | o36.CFrame = CFrame.new(-177.789993, 2.10000825, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 765 | o36.BottomSurface = Enum.SurfaceType.Smooth | |
| 766 | o36.TopSurface = Enum.SurfaceType.Weld | |
| 767 | o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 768 | o36.Position = Vector3.new(-177.789993, 2.10000825, 177.170013) | |
| 769 | o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 770 | o37.Name = "Color2" | |
| 771 | o37.Parent = o1 | |
| 772 | o37.Material = Enum.Material.SmoothPlastic | |
| 773 | o37.BrickColor = BrickColor.new("Really black")
| |
| 774 | o37.Reflectance = 0.20000000298023 | |
| 775 | o37.Position = Vector3.new(-182.789993, 2.10000825, 177.170013) | |
| 776 | o37.Elasticity = 1 | |
| 777 | o37.FormFactor = Enum.FormFactor.Symmetric | |
| 778 | o37.Friction = 0.5 | |
| 779 | o37.Size = Vector3.new(1, 0.200000003, 20) | |
| 780 | o37.CFrame = CFrame.new(-182.789993, 2.10000825, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 781 | o37.BottomSurface = Enum.SurfaceType.Smooth | |
| 782 | o37.TopSurface = Enum.SurfaceType.Weld | |
| 783 | o37.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 784 | o37.Position = Vector3.new(-182.789993, 2.10000825, 177.170013) | |
| 785 | o37.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 786 | o38.Name = "Color2" | |
| 787 | o38.Parent = o1 | |
| 788 | o38.Material = Enum.Material.SmoothPlastic | |
| 789 | o38.BrickColor = BrickColor.new("Really black")
| |
| 790 | o38.Reflectance = 0.20000000298023 | |
| 791 | o38.Position = Vector3.new(-182.789993, 4.70000601, 177.170013) | |
| 792 | o38.Elasticity = 1 | |
| 793 | o38.FormFactor = Enum.FormFactor.Symmetric | |
| 794 | o38.Friction = 0.5 | |
| 795 | o38.Size = Vector3.new(1, 5, 20) | |
| 796 | o38.CFrame = CFrame.new(-182.789993, 4.70000601, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 797 | o38.BottomSurface = Enum.SurfaceType.Smooth | |
| 798 | o38.RightSurface = Enum.SurfaceType.Weld | |
| 799 | o38.TopSurface = Enum.SurfaceType.Smooth | |
| 800 | o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 801 | o38.Position = Vector3.new(-182.789993, 4.70000601, 177.170013) | |
| 802 | o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 803 | o39.Name = "Color2" | |
| 804 | o39.Parent = o1 | |
| 805 | o39.Material = Enum.Material.SmoothPlastic | |
| 806 | o39.BrickColor = BrickColor.new("Really black")
| |
| 807 | o39.Reflectance = 0.20000000298023 | |
| 808 | o39.Position = Vector3.new(-180.289993, 2.70000887, 177.170013) | |
| 809 | o39.Elasticity = 1 | |
| 810 | o39.FormFactor = Enum.FormFactor.Symmetric | |
| 811 | o39.Friction = 0.5 | |
| 812 | o39.Size = Vector3.new(4, 1, 4) | |
| 813 | o39.CFrame = CFrame.new(-180.289993, 2.70000887, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 814 | o39.BackSurface = Enum.SurfaceType.Weld | |
| 815 | o39.BottomSurface = Enum.SurfaceType.Smooth | |
| 816 | o39.FrontSurface = Enum.SurfaceType.Weld | |
| 817 | o39.LeftSurface = Enum.SurfaceType.Weld | |
| 818 | o39.RightSurface = Enum.SurfaceType.Weld | |
| 819 | o39.TopSurface = Enum.SurfaceType.Weld | |
| 820 | o39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 821 | o39.Position = Vector3.new(-180.289993, 2.70000887, 177.170013) | |
| 822 | o39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 823 | o40.Name = "Color2" | |
| 824 | o40.Parent = o1 | |
| 825 | o40.Material = Enum.Material.SmoothPlastic | |
| 826 | o40.BrickColor = BrickColor.new("Really black")
| |
| 827 | o40.Reflectance = 0.20000000298023 | |
| 828 | o40.Position = Vector3.new(-185.189987, 6.70000601, 179.170013) | |
| 829 | o40.Elasticity = 1 | |
| 830 | o40.FormFactor = Enum.FormFactor.Symmetric | |
| 831 | o40.Friction = 0.5 | |
| 832 | o40.Size = Vector3.new(1, 1, 10) | |
| 833 | o40.CFrame = CFrame.new(-185.189987, 6.70000601, 179.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 834 | o40.BottomSurface = Enum.SurfaceType.Weld | |
| 835 | o40.FrontSurface = Enum.SurfaceType.Weld | |
| 836 | o40.TopSurface = Enum.SurfaceType.Weld | |
| 837 | o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 838 | o40.Position = Vector3.new(-185.189987, 6.70000601, 179.170013) | |
| 839 | o40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 840 | o41.Name = "Color2" | |
| 841 | o41.Parent = o1 | |
| 842 | o41.Material = Enum.Material.SmoothPlastic | |
| 843 | o41.BrickColor = BrickColor.new("Really black")
| |
| 844 | o41.Reflectance = 0.20000000298023 | |
| 845 | o41.Position = Vector3.new(-180.289993, 6.40000725, 182.670013) | |
| 846 | o41.Elasticity = 1 | |
| 847 | o41.FormFactor = Enum.FormFactor.Symmetric | |
| 848 | o41.Friction = 0.5 | |
| 849 | o41.Size = Vector3.new(4, 4.4000001, 7) | |
| 850 | o41.CFrame = CFrame.new(-180.289993, 6.40000725, 182.670013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 851 | o41.BottomSurface = Enum.SurfaceType.Smooth | |
| 852 | o41.LeftSurface = Enum.SurfaceType.Weld | |
| 853 | o41.RightSurface = Enum.SurfaceType.Weld | |
| 854 | o41.TopSurface = Enum.SurfaceType.Smooth | |
| 855 | o41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 856 | o41.Position = Vector3.new(-180.289993, 6.40000725, 182.670013) | |
| 857 | o41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 858 | o42.Name = "Color2" | |
| 859 | o42.Parent = o1 | |
| 860 | o42.Material = Enum.Material.SmoothPlastic | |
| 861 | o42.BrickColor = BrickColor.new("Really black")
| |
| 862 | o42.Reflectance = 0.20000000298023 | |
| 863 | o42.Position = Vector3.new(-175.389999, 6.70000601, 179.170013) | |
| 864 | o42.Elasticity = 1 | |
| 865 | o42.FormFactor = Enum.FormFactor.Symmetric | |
| 866 | o42.Friction = 0.5 | |
| 867 | o42.Size = Vector3.new(1, 1, 10) | |
| 868 | o42.CFrame = CFrame.new(-175.389999, 6.70000601, 179.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 869 | o42.BottomSurface = Enum.SurfaceType.Weld | |
| 870 | o42.FrontSurface = Enum.SurfaceType.Weld | |
| 871 | o42.TopSurface = Enum.SurfaceType.Weld | |
| 872 | o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 873 | o42.Position = Vector3.new(-175.389999, 6.70000601, 179.170013) | |
| 874 | o42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 875 | o43.Name = "Color2" | |
| 876 | o43.Parent = o1 | |
| 877 | o43.Material = Enum.Material.SmoothPlastic | |
| 878 | o43.BrickColor = BrickColor.new("Really black")
| |
| 879 | o43.Reflectance = 0.20000000298023 | |
| 880 | o43.Position = Vector3.new(-174.389999, 7.40000725, 177.170013) | |
| 881 | o43.Elasticity = 1 | |
| 882 | o43.FormFactor = Enum.FormFactor.Custom | |
| 883 | o43.Friction = 0.5 | |
| 884 | o43.Size = Vector3.new(3, 0.399999976, 14) | |
| 885 | o43.CFrame = CFrame.new(-174.389999, 7.40000725, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 886 | o43.BottomSurface = Enum.SurfaceType.Smooth | |
| 887 | o43.TopSurface = Enum.SurfaceType.Smooth | |
| 888 | o43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 889 | o43.Position = Vector3.new(-174.389999, 7.40000725, 177.170013) | |
| 890 | o43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 891 | o44.Name = "Color2" | |
| 892 | o44.Parent = o1 | |
| 893 | o44.Material = Enum.Material.SmoothPlastic | |
| 894 | o44.BrickColor = BrickColor.new("Really black")
| |
| 895 | o44.Reflectance = 0.20000000298023 | |
| 896 | o44.Position = Vector3.new(-179.089996, 3.70000911, 183.170013) | |
| 897 | o44.Elasticity = 1 | |
| 898 | o44.FormFactor = Enum.FormFactor.Symmetric | |
| 899 | o44.Friction = 0.5 | |
| 900 | o44.Size = Vector3.new(1.60000002, 1, 8) | |
| 901 | o44.CFrame = CFrame.new(-179.089996, 3.70000911, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 902 | o44.BottomSurface = Enum.SurfaceType.Smooth | |
| 903 | o44.FrontSurface = Enum.SurfaceType.Weld | |
| 904 | o44.TopSurface = Enum.SurfaceType.Smooth | |
| 905 | o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 906 | o44.Position = Vector3.new(-179.089996, 3.70000911, 183.170013) | |
| 907 | o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 908 | o45.Name = "Color2" | |
| 909 | o45.Parent = o1 | |
| 910 | o45.Material = Enum.Material.SmoothPlastic | |
| 911 | o45.BrickColor = BrickColor.new("Really black")
| |
| 912 | o45.Reflectance = 0.20000000298023 | |
| 913 | o45.Position = Vector3.new(-180.289993, 5.40000725, 171.670013) | |
| 914 | o45.Elasticity = 1 | |
| 915 | o45.FormFactor = Enum.FormFactor.Symmetric | |
| 916 | o45.Friction = 0.5 | |
| 917 | o45.Size = Vector3.new(4, 6.4000001, 7) | |
| 918 | o45.CFrame = CFrame.new(-180.289993, 5.40000725, 171.670013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 919 | o45.BottomSurface = Enum.SurfaceType.Smooth | |
| 920 | o45.LeftSurface = Enum.SurfaceType.Weld | |
| 921 | o45.RightSurface = Enum.SurfaceType.Weld | |
| 922 | o45.TopSurface = Enum.SurfaceType.Smooth | |
| 923 | o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 924 | o45.Position = Vector3.new(-180.289993, 5.40000725, 171.670013) | |
| 925 | o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 926 | o46.Name = "Color2" | |
| 927 | o46.Parent = o1 | |
| 928 | o46.Material = Enum.Material.SmoothPlastic | |
| 929 | o46.BrickColor = BrickColor.new("Really black")
| |
| 930 | o46.Reflectance = 0.20000000298023 | |
| 931 | o46.Position = Vector3.new(-173.789993, 4.60000515, 177.170013) | |
| 932 | o46.Elasticity = 1 | |
| 933 | o46.FormFactor = Enum.FormFactor.Symmetric | |
| 934 | o46.Friction = 0.5 | |
| 935 | o46.Size = Vector3.new(7, 5.19999981, 6) | |
| 936 | o46.CFrame = CFrame.new(-173.789993, 4.60000515, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 937 | o46.BottomSurface = Enum.SurfaceType.Smooth | |
| 938 | o46.LeftSurface = Enum.SurfaceType.Weld | |
| 939 | o46.TopSurface = Enum.SurfaceType.Smooth | |
| 940 | o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 941 | o46.Position = Vector3.new(-173.789993, 4.60000515, 177.170013) | |
| 942 | o46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 943 | o47.Name = "Color2" | |
| 944 | o47.Parent = o1 | |
| 945 | o47.Material = Enum.Material.SmoothPlastic | |
| 946 | o47.BrickColor = BrickColor.new("Really black")
| |
| 947 | o47.Reflectance = 0.20000000298023 | |
| 948 | o47.Position = Vector3.new(-186.189987, 6.70000601, 175.170013) | |
| 949 | o47.Elasticity = 1 | |
| 950 | o47.FormFactor = Enum.FormFactor.Symmetric | |
| 951 | o47.Friction = 0.5 | |
| 952 | o47.Size = Vector3.new(3, 1, 10) | |
| 953 | o47.CFrame = CFrame.new(-186.189987, 6.70000601, 175.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 954 | o47.BackSurface = Enum.SurfaceType.Weld | |
| 955 | o47.BottomSurface = Enum.SurfaceType.Weld | |
| 956 | o47.TopSurface = Enum.SurfaceType.Weld | |
| 957 | o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 958 | o47.Position = Vector3.new(-186.189987, 6.70000601, 175.170013) | |
| 959 | o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 960 | o48.Name = "Color2" | |
| 961 | o48.Parent = o1 | |
| 962 | o48.Material = Enum.Material.SmoothPlastic | |
| 963 | o48.BrickColor = BrickColor.new("Really black")
| |
| 964 | o48.Reflectance = 0.20000000298023 | |
| 965 | o48.Position = Vector3.new(-178.089996, 7.90000725, 177.170013) | |
| 966 | o48.Elasticity = 1 | |
| 967 | o48.FormFactor = Enum.FormFactor.Custom | |
| 968 | o48.Friction = 0.5 | |
| 969 | o48.Size = Vector3.new(0.400000036, 1.39999998, 18) | |
| 970 | o48.CFrame = CFrame.new(-178.089996, 7.90000725, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 971 | o48.BottomSurface = Enum.SurfaceType.Weld | |
| 972 | o48.TopSurface = Enum.SurfaceType.Smooth | |
| 973 | o48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 974 | o48.Position = Vector3.new(-178.089996, 7.90000725, 177.170013) | |
| 975 | o48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 976 | o49.Name = "Color2" | |
| 977 | o49.Parent = o1 | |
| 978 | o49.Material = Enum.Material.SmoothPlastic | |
| 979 | o49.BrickColor = BrickColor.new("Really black")
| |
| 980 | o49.Reflectance = 0.20000000298023 | |
| 981 | o49.Position = Vector3.new(-174.389999, 6.70000601, 175.170013) | |
| 982 | o49.Elasticity = 1 | |
| 983 | o49.FormFactor = Enum.FormFactor.Symmetric | |
| 984 | o49.Friction = 0.5 | |
| 985 | o49.Size = Vector3.new(3, 1, 10) | |
| 986 | o49.CFrame = CFrame.new(-174.389999, 6.70000601, 175.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 987 | o49.BackSurface = Enum.SurfaceType.Weld | |
| 988 | o49.BottomSurface = Enum.SurfaceType.Weld | |
| 989 | o49.TopSurface = Enum.SurfaceType.Weld | |
| 990 | o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 991 | o49.Position = Vector3.new(-174.389999, 6.70000601, 175.170013) | |
| 992 | o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 993 | o50.Name = "Color2" | |
| 994 | o50.Parent = o1 | |
| 995 | o50.Material = Enum.Material.SmoothPlastic | |
| 996 | o50.BrickColor = BrickColor.new("Really black")
| |
| 997 | o50.Reflectance = 0.20000000298023 | |
| 998 | o50.Position = Vector3.new(-180.289993, 5.20000601, 167.670013) | |
| 999 | o50.Elasticity = 1 | |
| 1000 | o50.FormFactor = Enum.FormFactor.Symmetric | |
| 1001 | o50.Friction = 0.5 | |
| 1002 | o50.Size = Vector3.new(4, 6, 1) | |
| 1003 | o50.CFrame = CFrame.new(-180.289993, 5.20000601, 167.670013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1004 | o50.BackSurface = Enum.SurfaceType.Weld | |
| 1005 | o50.BottomSurface = Enum.SurfaceType.Smooth | |
| 1006 | o50.TopSurface = Enum.SurfaceType.Smooth | |
| 1007 | o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1008 | o50.Position = Vector3.new(-180.289993, 5.20000601, 167.670013) | |
| 1009 | o50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1010 | o51.Name = "Color2" | |
| 1011 | o51.Parent = o1 | |
| 1012 | o51.Material = Enum.Material.SmoothPlastic | |
| 1013 | o51.BrickColor = BrickColor.new("Really black")
| |
| 1014 | o51.Reflectance = 0.20000000298023 | |
| 1015 | o51.Position = Vector3.new(-180.289993, 8.70000076, 171.170013) | |
| 1016 | o51.Elasticity = 1 | |
| 1017 | o51.FormFactor = Enum.FormFactor.Symmetric | |
| 1018 | o51.Friction = 0.5 | |
| 1019 | o51.Size = Vector3.new(2, 1, 8) | |
| 1020 | o51.CFrame = CFrame.new(-180.289993, 8.70000076, 171.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1021 | o51.BottomSurface = Enum.SurfaceType.Weld | |
| 1022 | o51.TopSurface = Enum.SurfaceType.Smooth | |
| 1023 | o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1024 | o51.Position = Vector3.new(-180.289993, 8.70000076, 171.170013) | |
| 1025 | o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1026 | o52.Name = "Color2" | |
| 1027 | o52.Parent = o1 | |
| 1028 | o52.Material = Enum.Material.SmoothPlastic | |
| 1029 | o52.BrickColor = BrickColor.new("Really black")
| |
| 1030 | o52.Reflectance = 0.20000000298023 | |
| 1031 | o52.Position = Vector3.new(-186.189987, 7.40000725, 177.170013) | |
| 1032 | o52.Elasticity = 1 | |
| 1033 | o52.FormFactor = Enum.FormFactor.Custom | |
| 1034 | o52.Friction = 0.5 | |
| 1035 | o52.Size = Vector3.new(3, 0.399999976, 14) | |
| 1036 | o52.CFrame = CFrame.new(-186.189987, 7.40000725, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1037 | o52.BottomSurface = Enum.SurfaceType.Smooth | |
| 1038 | o52.TopSurface = Enum.SurfaceType.Smooth | |
| 1039 | o52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1040 | o52.Position = Vector3.new(-186.189987, 7.40000725, 177.170013) | |
| 1041 | o52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1042 | o53.Name = "Color2" | |
| 1043 | o53.Parent = o1 | |
| 1044 | o53.Material = Enum.Material.SmoothPlastic | |
| 1045 | o53.BrickColor = BrickColor.new("Really black")
| |
| 1046 | o53.Reflectance = 0.20000000298023 | |
| 1047 | o53.Position = Vector3.new(-180.289993, 2.70000911, 183.170013) | |
| 1048 | o53.Elasticity = 1 | |
| 1049 | o53.FormFactor = Enum.FormFactor.Symmetric | |
| 1050 | o53.Friction = 0.5 | |
| 1051 | o53.Size = Vector3.new(4, 1, 8) | |
| 1052 | o53.CFrame = CFrame.new(-180.289993, 2.70000911, 183.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1053 | o53.BottomSurface = Enum.SurfaceType.Smooth | |
| 1054 | o53.FrontSurface = Enum.SurfaceType.Weld | |
| 1055 | o53.TopSurface = Enum.SurfaceType.Smooth | |
| 1056 | o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1057 | o53.Position = Vector3.new(-180.289993, 2.70000911, 183.170013) | |
| 1058 | o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1059 | o54.Name = "Color2" | |
| 1060 | o54.Parent = o1 | |
| 1061 | o54.Material = Enum.Material.SmoothPlastic | |
| 1062 | o54.BrickColor = BrickColor.new("Really black")
| |
| 1063 | o54.Reflectance = 0.20000000298023 | |
| 1064 | o54.Position = Vector3.new(-180.289993, 6.20000601, 186.670013) | |
| 1065 | o54.Elasticity = 1 | |
| 1066 | o54.FormFactor = Enum.FormFactor.Symmetric | |
| 1067 | o54.Friction = 0.5 | |
| 1068 | o54.Size = Vector3.new(4, 4, 1) | |
| 1069 | o54.CFrame = CFrame.new(-180.289993, 6.20000601, 186.670013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1070 | o54.BottomSurface = Enum.SurfaceType.Smooth | |
| 1071 | o54.FrontSurface = Enum.SurfaceType.Weld | |
| 1072 | o54.TopSurface = Enum.SurfaceType.Smooth | |
| 1073 | o54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1074 | o54.Position = Vector3.new(-180.289993, 6.20000601, 186.670013) | |
| 1075 | o54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667) | |
| 1076 | o55.Name = "Color2" | |
| 1077 | o55.Parent = o1 | |
| 1078 | o55.Material = Enum.Material.Neon | |
| 1079 | o55.BrickColor = BrickColor.new("Institutional white")
| |
| 1080 | o55.Reflectance = 0.20000000298023 | |
| 1081 | o55.Position = Vector3.new(-180.289993, 3.70000911, 183.090088) | |
| 1082 | o55.Elasticity = 1 | |
| 1083 | o55.FormFactor = Enum.FormFactor.Symmetric | |
| 1084 | o55.Friction = 0.5 | |
| 1085 | o55.Size = Vector3.new(4, 1, 7.83999538) | |
| 1086 | o55.CFrame = CFrame.new(-180.289993, 3.70000911, 183.090088, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1087 | o55.BottomSurface = Enum.SurfaceType.Smooth | |
| 1088 | o55.FrontSurface = Enum.SurfaceType.Weld | |
| 1089 | o55.TopSurface = Enum.SurfaceType.Smooth | |
| 1090 | o55.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1091 | o55.Position = Vector3.new(-180.289993, 3.70000911, 183.090088) | |
| 1092 | o55.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1093 | o56.Parent = o55 | |
| 1094 | o56.Brightness = 25 | |
| 1095 | o56.Range = 40 | |
| 1096 | o56.Face = Enum.NormalId.Back | |
| 1097 | o57.Name = "Door" | |
| 1098 | o57.Parent = o1 | |
| 1099 | o57.Material = Enum.Material.SmoothPlastic | |
| 1100 | o57.BrickColor = BrickColor.new("Black")
| |
| 1101 | o57.Reflectance = 0.20000000298023 | |
| 1102 | o57.Position = Vector3.new(-180.289993, 8.00000668, 177.170013) | |
| 1103 | o57.Rotation = Vector3.new(-180, 0, -180) | |
| 1104 | o57.FormFactor = Enum.FormFactor.Custom | |
| 1105 | o57.Friction = 0.5 | |
| 1106 | o57.Size = Vector3.new(4, 0.400000006, 4) | |
| 1107 | o57.CFrame = CFrame.new(-180.289993, 8.00000668, 177.170013, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1108 | o57.BackSurface = Enum.SurfaceType.Weld | |
| 1109 | o57.BottomSurface = Enum.SurfaceType.Smooth | |
| 1110 | o57.FrontSurface = Enum.SurfaceType.Weld | |
| 1111 | o57.TopSurface = Enum.SurfaceType.Smooth | |
| 1112 | o57.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 1113 | o57.Position = Vector3.new(-180.289993, 8.00000668, 177.170013) | |
| 1114 | o57.Orientation = Vector3.new(0, 180, 0) | |
| 1115 | o57.Color = Color3.new(0.105882, 0.164706, 0.207843) | |
| 1116 | o58.Parent = o57 | |
| 1117 | o58.MaxActivationDistance = 6 | |
| 1118 | o59.Name = "Click script" | |
| 1119 | o59.Parent = o57 | |
| 1120 | table.insert(cors,coroutine.create(function() | |
| 1121 | wait() | |
| 1122 | runDummyScript(function() | |
| 1123 | door = script.Parent | |
| 1124 | function clickit() | |
| 1125 | door.Transparency = 1 | |
| 1126 | door.Reflectance=0 | |
| 1127 | door.CanCollide = false | |
| 1128 | wait(2) | |
| 1129 | door.Transparency = 0 | |
| 1130 | door.Reflectance=0 | |
| 1131 | door.CanCollide = true | |
| 1132 | end | |
| 1133 | door.ClickDetector.MouseClick:connect(clickit) | |
| 1134 | end,o59) | |
| 1135 | end)) | |
| 1136 | o60.Parent = o57 | |
| 1137 | o60.Texture = "http://www.roblox.com/asset/?id=877870782" | |
| 1138 | o60.Face = Enum.NormalId.Top | |
| 1139 | o61.Name = "InsideNeon" | |
| 1140 | o61.Parent = o1 | |
| 1141 | o61.Material = Enum.Material.Neon | |
| 1142 | o61.BrickColor = BrickColor.new("Really blue")
| |
| 1143 | o61.Position = Vector3.new(-180.289993, 3.30000925, 177.170013) | |
| 1144 | o61.CanCollide = false | |
| 1145 | o61.FormFactor = Enum.FormFactor.Custom | |
| 1146 | o61.Friction = 0.5 | |
| 1147 | o61.Size = Vector3.new(4, 0.200000003, 4) | |
| 1148 | o61.CFrame = CFrame.new(-180.289993, 3.30000925, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1149 | o61.BackSurface = Enum.SurfaceType.Weld | |
| 1150 | o61.BottomSurface = Enum.SurfaceType.Weld | |
| 1151 | o61.FrontSurface = Enum.SurfaceType.Weld | |
| 1152 | o61.LeftSurface = Enum.SurfaceType.Weld | |
| 1153 | o61.RightSurface = Enum.SurfaceType.Weld | |
| 1154 | o61.TopSurface = Enum.SurfaceType.Smooth | |
| 1155 | o61.Color = Color3.new(0, 0, 1) | |
| 1156 | o61.Position = Vector3.new(-180.289993, 3.30000925, 177.170013) | |
| 1157 | o61.Color = Color3.new(0, 0, 1) | |
| 1158 | o62.Name = "InsideNeon" | |
| 1159 | o62.Parent = o1 | |
| 1160 | o62.Material = Enum.Material.Neon | |
| 1161 | o62.BrickColor = BrickColor.new("Really blue")
| |
| 1162 | o62.Position = Vector3.new(-182.189987, 5.5000062, 177.170013) | |
| 1163 | o62.CanCollide = false | |
| 1164 | o62.FormFactor = Enum.FormFactor.Custom | |
| 1165 | o62.Friction = 0.5 | |
| 1166 | o62.Size = Vector3.new(0.200000003, 4.60000038, 4) | |
| 1167 | o62.CFrame = CFrame.new(-182.189987, 5.5000062, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1168 | o62.BackSurface = Enum.SurfaceType.Weld | |
| 1169 | o62.BottomSurface = Enum.SurfaceType.Weld | |
| 1170 | o62.FrontSurface = Enum.SurfaceType.Weld | |
| 1171 | o62.LeftSurface = Enum.SurfaceType.Weld | |
| 1172 | o62.TopSurface = Enum.SurfaceType.Weld | |
| 1173 | o62.Color = Color3.new(0, 0, 1) | |
| 1174 | o62.Position = Vector3.new(-182.189987, 5.5000062, 177.170013) | |
| 1175 | o62.Color = Color3.new(0, 0, 1) | |
| 1176 | o63.Name = "InsideNeon" | |
| 1177 | o63.Parent = o1 | |
| 1178 | o63.Material = Enum.Material.Neon | |
| 1179 | o63.BrickColor = BrickColor.new("Really blue")
| |
| 1180 | o63.Position = Vector3.new(-178.389999, 5.5000062, 177.170013) | |
| 1181 | o63.CanCollide = false | |
| 1182 | o63.FormFactor = Enum.FormFactor.Custom | |
| 1183 | o63.Friction = 0.5 | |
| 1184 | o63.Size = Vector3.new(0.200000003, 4.60000038, 4) | |
| 1185 | o63.CFrame = CFrame.new(-178.389999, 5.5000062, 177.170013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1186 | o63.BackSurface = Enum.SurfaceType.Weld | |
| 1187 | o63.BottomSurface = Enum.SurfaceType.Weld | |
| 1188 | o63.FrontSurface = Enum.SurfaceType.Weld | |
| 1189 | o63.RightSurface = Enum.SurfaceType.Weld | |
| 1190 | o63.TopSurface = Enum.SurfaceType.Weld | |
| 1191 | o63.Color = Color3.new(0, 0, 1) | |
| 1192 | o63.Position = Vector3.new(-178.389999, 5.5000062, 177.170013) | |
| 1193 | o63.Color = Color3.new(0, 0, 1) | |
| 1194 | o64.Name = "InsideNeon" | |
| 1195 | o64.Parent = o1 | |
| 1196 | o64.Material = Enum.Material.Neon | |
| 1197 | o64.BrickColor = BrickColor.new("Really blue")
| |
| 1198 | o64.Position = Vector3.new(-180.289993, 5.50000572, 175.269989) | |
| 1199 | o64.CanCollide = false | |
| 1200 | o64.FormFactor = Enum.FormFactor.Custom | |
| 1201 | o64.Friction = 0.5 | |
| 1202 | o64.Size = Vector3.new(4, 4.60000038, 0.200000003) | |
| 1203 | o64.CFrame = CFrame.new(-180.289993, 5.50000572, 175.269989, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1204 | o64.BottomSurface = Enum.SurfaceType.Weld | |
| 1205 | o64.FrontSurface = Enum.SurfaceType.Weld | |
| 1206 | o64.LeftSurface = Enum.SurfaceType.Weld | |
| 1207 | o64.RightSurface = Enum.SurfaceType.Weld | |
| 1208 | o64.TopSurface = Enum.SurfaceType.Weld | |
| 1209 | o64.Color = Color3.new(0, 0, 1) | |
| 1210 | o64.Position = Vector3.new(-180.289993, 5.50000572, 175.269989) | |
| 1211 | o64.Color = Color3.new(0, 0, 1) | |
| 1212 | o65.Name = "InsideNeon" | |
| 1213 | o65.Parent = o1 | |
| 1214 | o65.Material = Enum.Material.Neon | |
| 1215 | o65.BrickColor = BrickColor.new("Really blue")
| |
| 1216 | o65.Position = Vector3.new(-180.289993, 5.5000062, 179.070007) | |
| 1217 | o65.CanCollide = false | |
| 1218 | o65.FormFactor = Enum.FormFactor.Custom | |
| 1219 | o65.Friction = 0.5 | |
| 1220 | o65.Size = Vector3.new(4, 4.60000038, 0.200000003) | |
| 1221 | o65.CFrame = CFrame.new(-180.289993, 5.5000062, 179.070007, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1222 | o65.BackSurface = Enum.SurfaceType.Weld | |
| 1223 | o65.BottomSurface = Enum.SurfaceType.Weld | |
| 1224 | o65.LeftSurface = Enum.SurfaceType.Weld | |
| 1225 | o65.RightSurface = Enum.SurfaceType.Weld | |
| 1226 | o65.TopSurface = Enum.SurfaceType.Weld | |
| 1227 | o65.Color = Color3.new(0, 0, 1) | |
| 1228 | o65.Position = Vector3.new(-180.289993, 5.5000062, 179.070007) | |
| 1229 | o65.Color = Color3.new(0, 0, 1) | |
| 1230 | o66.Name = "NeonLights" | |
| 1231 | o66.Parent = o1 | |
| 1232 | o66.Material = Enum.Material.Neon | |
| 1233 | o66.BrickColor = BrickColor.new("Toothpaste")
| |
| 1234 | o66.Position = Vector3.new(-173.98999, 3.10000825, 167.670013) | |
| 1235 | o66.CanCollide = false | |
| 1236 | o66.FormFactor = Enum.FormFactor.Custom | |
| 1237 | o66.Friction = 0.5 | |
| 1238 | o66.Size = Vector3.new(6.5999999, 0.600000024, 0.200000003) | |
| 1239 | o66.CFrame = CFrame.new(-173.98999, 3.10000825, 167.670013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1240 | o66.BackSurface = Enum.SurfaceType.Weld | |
| 1241 | o66.BottomSurface = Enum.SurfaceType.Weld | |
| 1242 | o66.FrontSurface = Enum.SurfaceType.Weld | |
| 1243 | o66.LeftSurface = Enum.SurfaceType.Weld | |
| 1244 | o66.RightSurface = Enum.SurfaceType.Weld | |
| 1245 | o66.TopSurface = Enum.SurfaceType.Weld | |
| 1246 | o66.Color = Color3.new(0, 1, 1) | |
| 1247 | o66.Position = Vector3.new(-173.98999, 3.10000825, 167.670013) | |
| 1248 | o66.Color = Color3.new(0, 1, 1) | |
| 1249 | o67.Name = "NeonLights" | |
| 1250 | o67.Parent = o1 | |
| 1251 | o67.Material = Enum.Material.Neon | |
| 1252 | o67.BrickColor = BrickColor.new("Toothpaste")
| |
| 1253 | o67.Position = Vector3.new(-180.289993, 7.80000734, 186.270004) | |
| 1254 | o67.CanCollide = false | |
| 1255 | o67.FormFactor = Enum.FormFactor.Custom | |
| 1256 | o67.Friction = 0.5 | |
| 1257 | o67.Size = Vector3.new(4.4000001, 1.20000005, 0.200000003) | |
| 1258 | o67.CFrame = CFrame.new(-180.289993, 7.80000734, 186.270004, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1259 | o67.BackSurface = Enum.SurfaceType.Weld | |
| 1260 | o67.BottomSurface = Enum.SurfaceType.Weld | |
| 1261 | o67.FrontSurface = Enum.SurfaceType.Weld | |
| 1262 | o67.LeftSurface = Enum.SurfaceType.Weld | |
| 1263 | o67.RightSurface = Enum.SurfaceType.Weld | |
| 1264 | o67.TopSurface = Enum.SurfaceType.Weld | |
| 1265 | o67.Color = Color3.new(0, 1, 1) | |
| 1266 | o67.Position = Vector3.new(-180.289993, 7.80000734, 186.270004) | |
| 1267 | o67.Color = Color3.new(0, 1, 1) | |
| 1268 | o68.Name = "NeonLights" | |
| 1269 | o68.Parent = o1 | |
| 1270 | o68.Material = Enum.Material.Neon | |
| 1271 | o68.BrickColor = BrickColor.new("Toothpaste")
| |
| 1272 | o68.Position = Vector3.new(-189.789993, 3.10000825, 170.869995) | |
| 1273 | o68.CanCollide = false | |
| 1274 | o68.FormFactor = Enum.FormFactor.Custom | |
| 1275 | o68.Friction = 0.5 | |
| 1276 | o68.Size = Vector3.new(0.200000003, 0.600000024, 6.60000038) | |
| 1277 | o68.CFrame = CFrame.new(-189.789993, 3.10000825, 170.869995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1278 | o68.BackSurface = Enum.SurfaceType.Weld | |
| 1279 | o68.BottomSurface = Enum.SurfaceType.Weld | |
| 1280 | o68.FrontSurface = Enum.SurfaceType.Weld | |
| 1281 | o68.LeftSurface = Enum.SurfaceType.Weld | |
| 1282 | o68.RightSurface = Enum.SurfaceType.Weld | |
| 1283 | o68.TopSurface = Enum.SurfaceType.Weld | |
| 1284 | o68.Color = Color3.new(0, 1, 1) | |
| 1285 | o68.Position = Vector3.new(-189.789993, 3.10000825, 170.869995) | |
| 1286 | o68.Color = Color3.new(0, 1, 1) | |
| 1287 | o69.Name = "NeonLights" | |
| 1288 | o69.Parent = o1 | |
| 1289 | o69.Material = Enum.Material.Neon | |
| 1290 | o69.BrickColor = BrickColor.new("Toothpaste")
| |
| 1291 | o69.Position = Vector3.new(-189.789993, 3.10000825, 183.470001) | |
| 1292 | o69.CanCollide = false | |
| 1293 | o69.FormFactor = Enum.FormFactor.Custom | |
| 1294 | o69.Friction = 0.5 | |
| 1295 | o69.Size = Vector3.new(0.200000003, 0.600000024, 6.60000038) | |
| 1296 | o69.CFrame = CFrame.new(-189.789993, 3.10000825, 183.470001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1297 | o69.BackSurface = Enum.SurfaceType.Weld | |
| 1298 | o69.BottomSurface = Enum.SurfaceType.Weld | |
| 1299 | o69.FrontSurface = Enum.SurfaceType.Weld | |
| 1300 | o69.LeftSurface = Enum.SurfaceType.Weld | |
| 1301 | o69.RightSurface = Enum.SurfaceType.Weld | |
| 1302 | o69.TopSurface = Enum.SurfaceType.Weld | |
| 1303 | o69.Color = Color3.new(0, 1, 1) | |
| 1304 | o69.Position = Vector3.new(-189.789993, 3.10000825, 183.470001) | |
| 1305 | o69.Color = Color3.new(0, 1, 1) | |
| 1306 | o70.Name = "NeonLights" | |
| 1307 | o70.Parent = o1 | |
| 1308 | o70.Material = Enum.Material.Neon | |
| 1309 | o70.BrickColor = BrickColor.new("Toothpaste")
| |
| 1310 | o70.Position = Vector3.new(-170.789993, 3.10000825, 170.869995) | |
| 1311 | o70.CanCollide = false | |
| 1312 | o70.FormFactor = Enum.FormFactor.Custom | |
| 1313 | o70.Friction = 0.5 | |
| 1314 | o70.Size = Vector3.new(0.200000003, 0.600000024, 6.5999999) | |
| 1315 | o70.CFrame = CFrame.new(-170.789993, 3.10000825, 170.869995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1316 | o70.BackSurface = Enum.SurfaceType.Weld | |
| 1317 | o70.BottomSurface = Enum.SurfaceType.Weld | |
| 1318 | o70.FrontSurface = Enum.SurfaceType.Weld | |
| 1319 | o70.LeftSurface = Enum.SurfaceType.Weld | |
| 1320 | o70.RightSurface = Enum.SurfaceType.Weld | |
| 1321 | o70.TopSurface = Enum.SurfaceType.Weld | |
| 1322 | o70.Color = Color3.new(0, 1, 1) | |
| 1323 | o70.Position = Vector3.new(-170.789993, 3.10000825, 170.869995) | |
| 1324 | o70.Color = Color3.new(0, 1, 1) | |
| 1325 | o71.Name = "NeonLights" | |
| 1326 | o71.Parent = o1 | |
| 1327 | o71.Material = Enum.Material.Neon | |
| 1328 | o71.BrickColor = BrickColor.new("Toothpaste")
| |
| 1329 | o71.Position = Vector3.new(-186.589996, 3.10000825, 167.670013) | |
| 1330 | o71.CanCollide = false | |
| 1331 | o71.FormFactor = Enum.FormFactor.Custom | |
| 1332 | o71.Friction = 0.5 | |
| 1333 | o71.Size = Vector3.new(6.5999999, 0.600000024, 0.200000003) | |
| 1334 | o71.CFrame = CFrame.new(-186.589996, 3.10000825, 167.670013, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1335 | o71.BackSurface = Enum.SurfaceType.Weld | |
| 1336 | o71.BottomSurface = Enum.SurfaceType.Weld | |
| 1337 | o71.FrontSurface = Enum.SurfaceType.Weld | |
| 1338 | o71.LeftSurface = Enum.SurfaceType.Weld | |
| 1339 | o71.RightSurface = Enum.SurfaceType.Weld | |
| 1340 | o71.TopSurface = Enum.SurfaceType.Weld | |
| 1341 | o71.Color = Color3.new(0, 1, 1) | |
| 1342 | o71.Position = Vector3.new(-186.589996, 3.10000825, 167.670013) | |
| 1343 | o71.Color = Color3.new(0, 1, 1) | |
| 1344 | o72.Name = "NeonLights" | |
| 1345 | o72.Parent = o1 | |
| 1346 | o72.Material = Enum.Material.Neon | |
| 1347 | o72.BrickColor = BrickColor.new("Toothpaste")
| |
| 1348 | o72.Position = Vector3.new(-173.98999, 3.10000825, 177.280029) | |
| 1349 | o72.CanCollide = false | |
| 1350 | o72.FormFactor = Enum.FormFactor.Custom | |
| 1351 | o72.Friction = 0.5 | |
| 1352 | o72.Size = Vector3.new(6.5999999, 0.600000024, 18.9800034) | |
| 1353 | o72.CFrame = CFrame.new(-173.98999, 3.10000825, 177.280029, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1354 | o72.BackSurface = Enum.SurfaceType.Weld | |
| 1355 | o72.BottomSurface = Enum.SurfaceType.Weld | |
| 1356 | o72.FrontSurface = Enum.SurfaceType.Weld | |
| 1357 | o72.LeftSurface = Enum.SurfaceType.Weld | |
| 1358 | o72.RightSurface = Enum.SurfaceType.Weld | |
| 1359 | o72.TopSurface = Enum.SurfaceType.Weld | |
| 1360 | o72.Color = Color3.new(0, 1, 1) | |
| 1361 | o72.Position = Vector3.new(-173.98999, 3.10000825, 177.280029) | |
| 1362 | o72.Color = Color3.new(0, 1, 1) | |
| 1363 | o73.Name = "NeonLights" | |
| 1364 | o73.Parent = o1 | |
| 1365 | o73.Material = Enum.Material.Neon | |
| 1366 | o73.BrickColor = BrickColor.new("Toothpaste")
| |
| 1367 | o73.Position = Vector3.new(-186.589996, 3.10000825, 177.260132) | |
| 1368 | o73.CanCollide = false | |
| 1369 | o73.FormFactor = Enum.FormFactor.Custom | |
| 1370 | o73.Friction = 0.5 | |
| 1371 | o73.Size = Vector3.new(6.5999999, 0.600000024, 19.0200081) | |
| 1372 | o73.CFrame = CFrame.new(-186.589996, 3.10000825, 177.260132, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1373 | o73.BackSurface = Enum.SurfaceType.Weld | |
| 1374 | o73.BottomSurface = Enum.SurfaceType.Weld | |
| 1375 | o73.FrontSurface = Enum.SurfaceType.Weld | |
| 1376 | o73.LeftSurface = Enum.SurfaceType.Weld | |
| 1377 | o73.RightSurface = Enum.SurfaceType.Weld | |
| 1378 | o73.TopSurface = Enum.SurfaceType.Weld | |
| 1379 | o73.Color = Color3.new(0, 1, 1) | |
| 1380 | o73.Position = Vector3.new(-186.589996, 3.10000825, 177.260132) | |
| 1381 | o73.Color = Color3.new(0, 1, 1) | |
| 1382 | o74.Name = "NeonLights" | |
| 1383 | o74.Parent = o1 | |
| 1384 | o74.Material = Enum.Material.Neon | |
| 1385 | o74.BrickColor = BrickColor.new("Toothpaste")
| |
| 1386 | o74.Position = Vector3.new(-170.789993, 3.10000825, 183.470001) | |
| 1387 | o74.CanCollide = false | |
| 1388 | o74.FormFactor = Enum.FormFactor.Custom | |
| 1389 | o74.Friction = 0.5 | |
| 1390 | o74.Size = Vector3.new(0.200000003, 0.600000024, 6.60000038) | |
| 1391 | o74.CFrame = CFrame.new(-170.789993, 3.10000825, 183.470001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1392 | o74.BackSurface = Enum.SurfaceType.Weld | |
| 1393 | o74.BottomSurface = Enum.SurfaceType.Weld | |
| 1394 | o74.FrontSurface = Enum.SurfaceType.Weld | |
| 1395 | o74.LeftSurface = Enum.SurfaceType.Weld | |
| 1396 | o74.RightSurface = Enum.SurfaceType.Weld | |
| 1397 | o74.TopSurface = Enum.SurfaceType.Weld | |
| 1398 | o74.Color = Color3.new(0, 1, 1) | |
| 1399 | o74.Position = Vector3.new(-170.789993, 3.10000825, 183.470001) | |
| 1400 | o74.Color = Color3.new(0, 1, 1) | |
| 1401 | o75.Name = "Wheel" | |
| 1402 | o75.Parent = o1 | |
| 1403 | o75.Material = Enum.Material.Neon | |
| 1404 | o75.BrickColor = BrickColor.new("Institutional white")
| |
| 1405 | o75.Transparency = 1 | |
| 1406 | o75.Position = Vector3.new(-186.48999, 2.00001097, 170.369995) | |
| 1407 | o75.Elasticity = 0 | |
| 1408 | o75.FormFactor = Enum.FormFactor.Symmetric | |
| 1409 | o75.Friction = 1.3500000238419 | |
| 1410 | o75.Shape = Enum.PartType.Ball | |
| 1411 | o75.Size = Vector3.new(4, 4, 4) | |
| 1412 | o75.CFrame = CFrame.new(-186.48999, 2.00001097, 170.369995, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1413 | o75.BottomSurface = Enum.SurfaceType.Smooth | |
| 1414 | o75.RightSurface = Enum.SurfaceType.Hinge | |
| 1415 | o75.TopSurface = Enum.SurfaceType.Smooth | |
| 1416 | o75.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1417 | o75.Position = Vector3.new(-186.48999, 2.00001097, 170.369995) | |
| 1418 | o75.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1419 | o76.Name = "Wheel" | |
| 1420 | o76.Parent = o1 | |
| 1421 | o76.Material = Enum.Material.Neon | |
| 1422 | o76.BrickColor = BrickColor.new("Institutional white")
| |
| 1423 | o76.Transparency = 1 | |
| 1424 | o76.Position = Vector3.new(-174.089996, 2.00001097, 170.369995) | |
| 1425 | o76.Rotation = Vector3.new(-180, 0, -180) | |
| 1426 | o76.Elasticity = 0 | |
| 1427 | o76.FormFactor = Enum.FormFactor.Symmetric | |
| 1428 | o76.Friction = 1.3500000238419 | |
| 1429 | o76.Shape = Enum.PartType.Ball | |
| 1430 | o76.Size = Vector3.new(4, 4, 4) | |
| 1431 | o76.CFrame = CFrame.new(-174.089996, 2.00001097, 170.369995, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1432 | o76.BottomSurface = Enum.SurfaceType.Smooth | |
| 1433 | o76.RightSurface = Enum.SurfaceType.Hinge | |
| 1434 | o76.TopSurface = Enum.SurfaceType.Smooth | |
| 1435 | o76.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1436 | o76.Position = Vector3.new(-174.089996, 2.00001097, 170.369995) | |
| 1437 | o76.Orientation = Vector3.new(0, 180, 0) | |
| 1438 | o76.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1439 | o77.Name = "Wheel" | |
| 1440 | o77.Parent = o1 | |
| 1441 | o77.Material = Enum.Material.Neon | |
| 1442 | o77.BrickColor = BrickColor.new("Institutional white")
| |
| 1443 | o77.Transparency = 1 | |
| 1444 | o77.Position = Vector3.new(-186.48999, 2.00001097, 183.970001) | |
| 1445 | o77.Elasticity = 0 | |
| 1446 | o77.FormFactor = Enum.FormFactor.Symmetric | |
| 1447 | o77.Friction = 1.3500000238419 | |
| 1448 | o77.Shape = Enum.PartType.Ball | |
| 1449 | o77.Size = Vector3.new(4, 4, 4) | |
| 1450 | o77.CFrame = CFrame.new(-186.48999, 2.00001097, 183.970001, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 1451 | o77.BottomSurface = Enum.SurfaceType.Smooth | |
| 1452 | o77.RightSurface = Enum.SurfaceType.Hinge | |
| 1453 | o77.TopSurface = Enum.SurfaceType.Smooth | |
| 1454 | o77.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1455 | o77.Position = Vector3.new(-186.48999, 2.00001097, 183.970001) | |
| 1456 | o77.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1457 | o78.Name = "Wheel" | |
| 1458 | o78.Parent = o1 | |
| 1459 | o78.Material = Enum.Material.Neon | |
| 1460 | o78.BrickColor = BrickColor.new("Institutional white")
| |
| 1461 | o78.Transparency = 1 | |
| 1462 | o78.Position = Vector3.new(-174.089996, 2.00001097, 183.970001) | |
| 1463 | o78.Rotation = Vector3.new(-180, 0, -180) | |
| 1464 | o78.Elasticity = 0 | |
| 1465 | o78.FormFactor = Enum.FormFactor.Symmetric | |
| 1466 | o78.Friction = 1.3500000238419 | |
| 1467 | o78.Shape = Enum.PartType.Ball | |
| 1468 | o78.Size = Vector3.new(4, 4, 4) | |
| 1469 | o78.CFrame = CFrame.new(-174.089996, 2.00001097, 183.970001, -1, 0, 0, 0, 1, 0, 0, 0, -1) | |
| 1470 | o78.BottomSurface = Enum.SurfaceType.Smooth | |
| 1471 | o78.RightSurface = Enum.SurfaceType.Hinge | |
| 1472 | o78.TopSurface = Enum.SurfaceType.Smooth | |
| 1473 | o78.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1474 | o78.Position = Vector3.new(-174.089996, 2.00001097, 183.970001) | |
| 1475 | o78.Orientation = Vector3.new(0, 180, 0) | |
| 1476 | o78.Color = Color3.new(0.972549, 0.972549, 0.972549) | |
| 1477 | mas.Parent = workspace | |
| 1478 | mas:MakeJoints() | |
| 1479 | local mas1 = mas:GetChildren() | |
| 1480 | for i=1,#mas1 do | |
| 1481 | mas1[i].Parent = workspace | |
| 1482 | ypcall(function() mas1[i]:MakeJoints() end) | |
| 1483 | end | |
| 1484 | mas:Destroy() | |
| 1485 | for i=1,#cors do | |
| 1486 | coroutine.resume(cors[i]) | |
| 1487 | end | |
| 1488 | o1:MakeJoints() | |
| 1489 | o1:MoveTo(game.Players.LocalPlayer.Character.Head.Position) |