by nate213121 · 3/9/2026
Roblox Studio Command Bar
Paste this script into the Command Bar to spawn the model
| 1 | local MS = game:GetService("MaterialService") |
| 2 | |
| 3 | local ok, roots = pcall(game.GetObjects, game, "rbxassetid://13386676607") |
| 4 | if not ok then return warn(roots) end |
| 5 | |
| 6 | local tmp = Instance.new("Folder") |
| 7 | for _, r in ipairs(roots) do r.Parent = tmp end |
| 8 | |
| 9 | for _, d in ipairs(tmp:GetDescendants()) do |
| 10 | if d:IsA("MaterialVariant") then |
| 11 | d.Parent = MS |
| 12 | end |
| 13 | end |
| 14 | tmp:Destroy() |
| 15 | |
| 16 | local model = Instance.new("Model") |
| 17 | model.Name = "BeetleCar" |
| 18 | model.Parent = workspace |
| 19 | |
| 20 | local variants = { |
| 21 | ["Black"] = "2022 Glue", |
| 22 | ["Brick yellow"] = "2022 Stud", |
| 23 | ["Institutional white"] = "2022 Stud", |
| 24 | ["Medium stone grey"] = "2022 Inlet", |
| 25 | ["Really black"] = "2022 Universal", |
| 26 | } |
| 27 | if next(needed) then |
| 28 | local ok, roots = pcall(game.GetObjects, game, "rbxassetid://13386676607") |
| 29 | if not ok then warn(roots) else |
| 30 | local tmp = Instance.new("Folder") |
| 31 | for _, r in ipairs(roots) do r.Parent = tmp end |
| 32 | for _, d in ipairs(tmp:GetDescendants()) do |
| 33 | if d:IsA("MaterialVariant") and needed[d.Name] then |
| 34 | d.Parent = MS |
| 35 | end |
| 36 | end |
| 37 | tmp:Destroy() |
| 38 | end |
| 39 | end |
| 40 | end |
| 41 | do |
| 42 | local p = Instance.new("Part") |
| 43 | p.Name = "Chassis" |
| 44 | p.Size = Vector3.new(7, 1, 16) |
| 45 | p.CFrame = CFrame.new(0, 2, 0) |
| 46 | p.BrickColor = BrickColor.new("Really black") |
| 47 | p.Material = Enum.Material.Glacier |
| 48 | p.MaterialVariant = "2022 Universal" |
| 49 | p.Anchored = true |
| 50 | p.Parent = model |
| 51 | end |
| 52 | do |
| 53 | local p = Instance.new("Part") |
| 54 | p.Name = "BodyLower" |
| 55 | p.Size = Vector3.new(8, 2, 15) |
| 56 | p.CFrame = CFrame.new(0, 3, 0) |
| 57 | p.BrickColor = BrickColor.new("Brick yellow") |
| 58 | p.Material = Enum.Material.Glacier |
| 59 | p.MaterialVariant = "2022 Stud" |
| 60 | p.Anchored = true |
| 61 | p.Parent = model |
| 62 | end |
| 63 | do |
| 64 | local p = Instance.new("Part") |
| 65 | p.Name = "HoodBase" |
| 66 | p.Size = Vector3.new(6, 1.5, 3) |
| 67 | p.CFrame = CFrame.new(0, 3.5, -6.5) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)) |
| 68 | p.BrickColor = BrickColor.new("Brick yellow") |
| 69 | p.Material = Enum.Material.Glacier |
| 70 | p.MaterialVariant = "2022 Stud" |
| 71 | p.Anchored = true |
| 72 | p.Parent = model |
| 73 | end |
| 74 | do |
| 75 | local p = Instance.new("Part") |
| 76 | p.Name = "HoodMid" |
| 77 | p.Size = Vector3.new(5.5, 1, 2) |
| 78 | p.CFrame = CFrame.new(0, 2.7, -8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)) |
| 79 | p.BrickColor = BrickColor.new("Brick yellow") |
| 80 | p.Material = Enum.Material.Glacier |
| 81 | p.MaterialVariant = "2022 Stud" |
| 82 | p.Anchored = true |
| 83 | p.Parent = model |
| 84 | end |
| 85 | do |
| 86 | local p = Instance.new("Part") |
| 87 | p.Name = "HoodTip" |
| 88 | p.Size = Vector3.new(5, 0.8, 1.5) |
| 89 | p.CFrame = CFrame.new(0, 2.1, -9.2) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)) |
| 90 | p.BrickColor = BrickColor.new("Brick yellow") |
| 91 | p.Material = Enum.Material.Glacier |
| 92 | p.MaterialVariant = "2022 Stud" |
| 93 | p.Anchored = true |
| 94 | p.Parent = model |
| 95 | end |
| 96 | do |
| 97 | local p = Instance.new("Part") |
| 98 | p.Name = "RearDeckBase" |
| 99 | p.Size = Vector3.new(6, 1.5, 3) |
| 100 | p.CFrame = CFrame.new(0, 3.5, 6.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(0)) |
| 101 | p.BrickColor = BrickColor.new("Brick yellow") |
| 102 | p.Material = Enum.Material.Glacier |
| 103 | p.MaterialVariant = "2022 Stud" |
| 104 | p.Anchored = true |
| 105 | p.Parent = model |
| 106 | end |
| 107 | do |
| 108 | local p = Instance.new("Part") |
| 109 | p.Name = "RearDeckMid" |
| 110 | p.Size = Vector3.new(5.5, 1, 2) |
| 111 | p.CFrame = CFrame.new(0, 2.7, 8) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)) |
| 112 | p.BrickColor = BrickColor.new("Brick yellow") |
| 113 | p.Material = Enum.Material.Glacier |
| 114 | p.MaterialVariant = "2022 Stud" |
| 115 | p.Anchored = true |
| 116 | p.Parent = model |
| 117 | end |
| 118 | do |
| 119 | local p = Instance.new("Part") |
| 120 | p.Name = "RearDeckTip" |
| 121 | p.Size = Vector3.new(5, 0.8, 1.5) |
| 122 | p.CFrame = CFrame.new(0, 2.1, 9.2) * CFrame.Angles(math.rad(-45), math.rad(0), math.rad(0)) |
| 123 | p.BrickColor = BrickColor.new("Brick yellow") |
| 124 | p.Material = Enum.Material.Glacier |
| 125 | p.MaterialVariant = "2022 Stud" |
| 126 | p.Anchored = true |
| 127 | p.Parent = model |
| 128 | end |
| 129 | do |
| 130 | local p = Instance.new("Part") |
| 131 | p.Name = "CabinBase" |
| 132 | p.Size = Vector3.new(7, 1.5, 8) |
| 133 | p.CFrame = CFrame.new(0, 5, 0) |
| 134 | p.BrickColor = BrickColor.new("Brick yellow") |
| 135 | p.Material = Enum.Material.Glacier |
| 136 | p.MaterialVariant = "2022 Stud" |
| 137 | p.Anchored = true |
| 138 | p.Parent = model |
| 139 | end |
| 140 | do |
| 141 | local p = Instance.new("Part") |
| 142 | p.Name = "Roof" |
| 143 | p.Size = Vector3.new(6.5, 0.5, 6) |
| 144 | p.CFrame = CFrame.new(0, 6.5, 0) |
| 145 | p.BrickColor = BrickColor.new("Brick yellow") |
| 146 | p.Material = Enum.Material.Glacier |
| 147 | p.MaterialVariant = "2022 Stud" |
| 148 | p.Anchored = true |
| 149 | p.Parent = model |
| 150 | end |
| 151 | do |
| 152 | local p = Instance.new("Part") |
| 153 | p.Name = "Windshield" |
| 154 | p.Size = Vector3.new(6.5, 2, 1.5) |
| 155 | p.CFrame = CFrame.new(0, 5.5, -4.5) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)) |
| 156 | p.BrickColor = BrickColor.new("Black") |
| 157 | p.Material = Enum.Material.Glacier |
| 158 | p.MaterialVariant = "2022 Glue" |
| 159 | p.Anchored = true |
| 160 | p.Parent = model |
| 161 | end |
| 162 | do |
| 163 | local p = Instance.new("Part") |
| 164 | p.Name = "RearWindow" |
| 165 | p.Size = Vector3.new(6.5, 2, 1.5) |
| 166 | p.CFrame = CFrame.new(0, 5.5, 4.5) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)) |
| 167 | p.BrickColor = BrickColor.new("Black") |
| 168 | p.Material = Enum.Material.Glacier |
| 169 | p.MaterialVariant = "2022 Glue" |
| 170 | p.Anchored = true |
| 171 | p.Parent = model |
| 172 | end |
| 173 | do |
| 174 | local p = Instance.new("Part") |
| 175 | p.Name = "SideWindowL" |
| 176 | p.Size = Vector3.new(0.2, 1.8, 7) |
| 177 | p.CFrame = CFrame.new(-3.48, 5.5, 0) |
| 178 | p.BrickColor = BrickColor.new("Black") |
| 179 | p.Material = Enum.Material.Glacier |
| 180 | p.MaterialVariant = "2022 Glue" |
| 181 | p.Anchored = true |
| 182 | p.Parent = model |
| 183 | end |
| 184 | do |
| 185 | local p = Instance.new("Part") |
| 186 | p.Name = "SideWindowR" |
| 187 | p.Size = Vector3.new(0.2, 1.8, 7) |
| 188 | p.CFrame = CFrame.new(3.48, 5.5, 0) |
| 189 | p.BrickColor = BrickColor.new("Black") |
| 190 | p.Material = Enum.Material.Glacier |
| 191 | p.MaterialVariant = "2022 Glue" |
| 192 | p.Anchored = true |
| 193 | p.Parent = model |
| 194 | end |
| 195 | do |
| 196 | local p = Instance.new("Part") |
| 197 | p.Name = "PillarB_L" |
| 198 | p.Size = Vector3.new(0.3, 2, 0.5) |
| 199 | p.CFrame = CFrame.new(-3.5, 5.5, 0) |
| 200 | p.BrickColor = BrickColor.new("Brick yellow") |
| 201 | p.Material = Enum.Material.Glacier |
| 202 | p.MaterialVariant = "2022 Stud" |
| 203 | p.Anchored = true |
| 204 | p.Parent = model |
| 205 | end |
| 206 | do |
| 207 | local p = Instance.new("Part") |
| 208 | p.Name = "PillarB_R" |
| 209 | p.Size = Vector3.new(0.3, 2, 0.5) |
| 210 | p.CFrame = CFrame.new(3.5, 5.5, 0) |
| 211 | p.BrickColor = BrickColor.new("Brick yellow") |
| 212 | p.Material = Enum.Material.Glacier |
| 213 | p.MaterialVariant = "2022 Stud" |
| 214 | p.Anchored = true |
| 215 | p.Parent = model |
| 216 | end |
| 217 | do |
| 218 | local p = Instance.new("Part") |
| 219 | p.Name = "FenderFL_Top" |
| 220 | p.Size = Vector3.new(1.5, 2.5, 5) |
| 221 | p.CFrame = CFrame.new(-4.25, 3, -6) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)) |
| 222 | p.BrickColor = BrickColor.new("Brick yellow") |
| 223 | p.Material = Enum.Material.Glacier |
| 224 | p.MaterialVariant = "2022 Stud" |
| 225 | p.Anchored = true |
| 226 | p.Parent = model |
| 227 | end |
| 228 | do |
| 229 | local p = Instance.new("Part") |
| 230 | p.Name = "FenderFL_Front" |
| 231 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 232 | p.CFrame = CFrame.new(-4.21, 2, -8) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)) |
| 233 | p.BrickColor = BrickColor.new("Brick yellow") |
| 234 | p.Material = Enum.Material.Glacier |
| 235 | p.MaterialVariant = "2022 Stud" |
| 236 | p.Anchored = true |
| 237 | p.Parent = model |
| 238 | end |
| 239 | do |
| 240 | local p = Instance.new("Part") |
| 241 | p.Name = "FenderFL_Back" |
| 242 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 243 | p.CFrame = CFrame.new(-4.21, 2, -4) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)) |
| 244 | p.BrickColor = BrickColor.new("Brick yellow") |
| 245 | p.Material = Enum.Material.Glacier |
| 246 | p.MaterialVariant = "2022 Stud" |
| 247 | p.Anchored = true |
| 248 | p.Parent = model |
| 249 | end |
| 250 | do |
| 251 | local p = Instance.new("Part") |
| 252 | p.Name = "FenderFR_Top" |
| 253 | p.Size = Vector3.new(1.5, 2.5, 5) |
| 254 | p.CFrame = CFrame.new(4.25, 3, -6) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)) |
| 255 | p.BrickColor = BrickColor.new("Brick yellow") |
| 256 | p.Material = Enum.Material.Glacier |
| 257 | p.MaterialVariant = "2022 Stud" |
| 258 | p.Anchored = true |
| 259 | p.Parent = model |
| 260 | end |
| 261 | do |
| 262 | local p = Instance.new("Part") |
| 263 | p.Name = "FenderFR_Front" |
| 264 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 265 | p.CFrame = CFrame.new(4.29, 2, -8) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)) |
| 266 | p.BrickColor = BrickColor.new("Brick yellow") |
| 267 | p.Material = Enum.Material.Glacier |
| 268 | p.MaterialVariant = "2022 Stud" |
| 269 | p.Anchored = true |
| 270 | p.Parent = model |
| 271 | end |
| 272 | do |
| 273 | local p = Instance.new("Part") |
| 274 | p.Name = "FenderFR_Back" |
| 275 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 276 | p.CFrame = CFrame.new(4.29, 2, -4) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)) |
| 277 | p.BrickColor = BrickColor.new("Brick yellow") |
| 278 | p.Material = Enum.Material.Glacier |
| 279 | p.MaterialVariant = "2022 Stud" |
| 280 | p.Anchored = true |
| 281 | p.Parent = model |
| 282 | end |
| 283 | do |
| 284 | local p = Instance.new("Part") |
| 285 | p.Name = "FenderRL_Top" |
| 286 | p.Size = Vector3.new(1.5, 2.5, 5) |
| 287 | p.CFrame = CFrame.new(-4.25, 3, 6) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)) |
| 288 | p.BrickColor = BrickColor.new("Brick yellow") |
| 289 | p.Material = Enum.Material.Glacier |
| 290 | p.MaterialVariant = "2022 Stud" |
| 291 | p.Anchored = true |
| 292 | p.Parent = model |
| 293 | end |
| 294 | do |
| 295 | local p = Instance.new("Part") |
| 296 | p.Name = "FenderRL_Front" |
| 297 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 298 | p.CFrame = CFrame.new(-4.21, 2, 4) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)) |
| 299 | p.BrickColor = BrickColor.new("Brick yellow") |
| 300 | p.Material = Enum.Material.Glacier |
| 301 | p.MaterialVariant = "2022 Stud" |
| 302 | p.Anchored = true |
| 303 | p.Parent = model |
| 304 | end |
| 305 | do |
| 306 | local p = Instance.new("Part") |
| 307 | p.Name = "FenderRL_Back" |
| 308 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 309 | p.CFrame = CFrame.new(-4.21, 2, 8) * CFrame.Angles(math.rad(-45), math.rad(0), math.rad(0)) |
| 310 | p.BrickColor = BrickColor.new("Brick yellow") |
| 311 | p.Material = Enum.Material.Glacier |
| 312 | p.MaterialVariant = "2022 Stud" |
| 313 | p.Anchored = true |
| 314 | p.Parent = model |
| 315 | end |
| 316 | do |
| 317 | local p = Instance.new("Part") |
| 318 | p.Name = "FenderRR_Top" |
| 319 | p.Size = Vector3.new(1.5, 2.5, 5) |
| 320 | p.CFrame = CFrame.new(4.25, 3, 6) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)) |
| 321 | p.BrickColor = BrickColor.new("Brick yellow") |
| 322 | p.Material = Enum.Material.Glacier |
| 323 | p.MaterialVariant = "2022 Stud" |
| 324 | p.Anchored = true |
| 325 | p.Parent = model |
| 326 | end |
| 327 | do |
| 328 | local p = Instance.new("Part") |
| 329 | p.Name = "FenderRR_Front" |
| 330 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 331 | p.CFrame = CFrame.new(4.29, 2, 4) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)) |
| 332 | p.BrickColor = BrickColor.new("Brick yellow") |
| 333 | p.Material = Enum.Material.Glacier |
| 334 | p.MaterialVariant = "2022 Stud" |
| 335 | p.Anchored = true |
| 336 | p.Parent = model |
| 337 | end |
| 338 | do |
| 339 | local p = Instance.new("Part") |
| 340 | p.Name = "FenderRR_Back" |
| 341 | p.Size = Vector3.new(1.5, 2, 2.5) |
| 342 | p.CFrame = CFrame.new(4.29, 2, 8) * CFrame.Angles(math.rad(-45), math.rad(0), math.rad(0)) |
| 343 | p.BrickColor = BrickColor.new("Brick yellow") |
| 344 | p.Material = Enum.Material.Glacier |
| 345 | p.MaterialVariant = "2022 Stud" |
| 346 | p.Anchored = true |
| 347 | p.Parent = model |
| 348 | end |
| 349 | do |
| 350 | local p = Instance.new("Part") |
| 351 | p.Name = "RunningBoardL" |
| 352 | p.Size = Vector3.new(0.8, 0.2, 6) |
| 353 | p.CFrame = CFrame.new(-4.2, 1.7, 0) |
| 354 | p.BrickColor = BrickColor.new("Really black") |
| 355 | p.Material = Enum.Material.Glacier |
| 356 | p.MaterialVariant = "2022 Universal" |
| 357 | p.Anchored = true |
| 358 | p.Parent = model |
| 359 | end |
| 360 | do |
| 361 | local p = Instance.new("Part") |
| 362 | p.Name = "RunningBoardR" |
| 363 | p.Size = Vector3.new(0.8, 0.2, 6) |
| 364 | p.CFrame = CFrame.new(4.2, 1.7, 0) |
| 365 | p.BrickColor = BrickColor.new("Really black") |
| 366 | p.Material = Enum.Material.Glacier |
| 367 | p.MaterialVariant = "2022 Universal" |
| 368 | p.Anchored = true |
| 369 | p.Parent = model |
| 370 | end |
| 371 | do |
| 372 | local p = Instance.new("Part") |
| 373 | p.Shape = Enum.PartType.Cylinder |
| 374 | p.Name = "TireFL" |
| 375 | p.Size = Vector3.new(0.8, 2.8, 2.8) |
| 376 | p.CFrame = CFrame.new(-4.2, 1.4, -6) |
| 377 | p.BrickColor = BrickColor.new("Really black") |
| 378 | p.Material = Enum.Material.Glacier |
| 379 | p.MaterialVariant = "2022 Universal" |
| 380 | p.Anchored = true |
| 381 | p.Parent = model |
| 382 | end |
| 383 | do |
| 384 | local p = Instance.new("Part") |
| 385 | p.Shape = Enum.PartType.Cylinder |
| 386 | p.Name = "HubFL" |
| 387 | p.Size = Vector3.new(0.9, 1.96, 1.96) |
| 388 | p.CFrame = CFrame.new(-4.3, 1.4, -6) |
| 389 | p.BrickColor = BrickColor.new("Institutional white") |
| 390 | p.Material = Enum.Material.Glacier |
| 391 | p.MaterialVariant = "2022 Stud" |
| 392 | p.Anchored = true |
| 393 | p.Parent = model |
| 394 | end |
| 395 | do |
| 396 | local p = Instance.new("Part") |
| 397 | p.Shape = Enum.PartType.Cylinder |
| 398 | p.Name = "CapFL" |
| 399 | p.Size = Vector3.new(1, 1.12, 1.12) |
| 400 | p.CFrame = CFrame.new(-4.4, 1.4, -6) |
| 401 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 402 | p.Material = Enum.Material.Glacier |
| 403 | p.MaterialVariant = "2022 Inlet" |
| 404 | p.Anchored = true |
| 405 | p.Parent = model |
| 406 | end |
| 407 | do |
| 408 | local p = Instance.new("Part") |
| 409 | p.Shape = Enum.PartType.Cylinder |
| 410 | p.Name = "TireFR" |
| 411 | p.Size = Vector3.new(0.8, 2.8, 2.8) |
| 412 | p.CFrame = CFrame.new(4.2, 1.4, -6) |
| 413 | p.BrickColor = BrickColor.new("Really black") |
| 414 | p.Material = Enum.Material.Glacier |
| 415 | p.MaterialVariant = "2022 Universal" |
| 416 | p.Anchored = true |
| 417 | p.Parent = model |
| 418 | end |
| 419 | do |
| 420 | local p = Instance.new("Part") |
| 421 | p.Shape = Enum.PartType.Cylinder |
| 422 | p.Name = "HubFR" |
| 423 | p.Size = Vector3.new(0.9, 1.96, 1.96) |
| 424 | p.CFrame = CFrame.new(4.3, 1.4, -6) |
| 425 | p.BrickColor = BrickColor.new("Institutional white") |
| 426 | p.Material = Enum.Material.Glacier |
| 427 | p.MaterialVariant = "2022 Stud" |
| 428 | p.Anchored = true |
| 429 | p.Parent = model |
| 430 | end |
| 431 | do |
| 432 | local p = Instance.new("Part") |
| 433 | p.Shape = Enum.PartType.Cylinder |
| 434 | p.Name = "CapFR" |
| 435 | p.Size = Vector3.new(1, 1.12, 1.12) |
| 436 | p.CFrame = CFrame.new(4.4, 1.4, -6) |
| 437 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 438 | p.Material = Enum.Material.Glacier |
| 439 | p.MaterialVariant = "2022 Inlet" |
| 440 | p.Anchored = true |
| 441 | p.Parent = model |
| 442 | end |
| 443 | do |
| 444 | local p = Instance.new("Part") |
| 445 | p.Shape = Enum.PartType.Cylinder |
| 446 | p.Name = "TireRL" |
| 447 | p.Size = Vector3.new(0.8, 2.8, 2.8) |
| 448 | p.CFrame = CFrame.new(-4.2, 1.4, 6) |
| 449 | p.BrickColor = BrickColor.new("Really black") |
| 450 | p.Material = Enum.Material.Glacier |
| 451 | p.MaterialVariant = "2022 Universal" |
| 452 | p.Anchored = true |
| 453 | p.Parent = model |
| 454 | end |
| 455 | do |
| 456 | local p = Instance.new("Part") |
| 457 | p.Shape = Enum.PartType.Cylinder |
| 458 | p.Name = "HubRL" |
| 459 | p.Size = Vector3.new(0.9, 1.96, 1.96) |
| 460 | p.CFrame = CFrame.new(-4.3, 1.4, 6) |
| 461 | p.BrickColor = BrickColor.new("Institutional white") |
| 462 | p.Material = Enum.Material.Glacier |
| 463 | p.MaterialVariant = "2022 Stud" |
| 464 | p.Anchored = true |
| 465 | p.Parent = model |
| 466 | end |
| 467 | do |
| 468 | local p = Instance.new("Part") |
| 469 | p.Shape = Enum.PartType.Cylinder |
| 470 | p.Name = "CapRL" |
| 471 | p.Size = Vector3.new(1, 1.12, 1.12) |
| 472 | p.CFrame = CFrame.new(-4.4, 1.4, 6) |
| 473 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 474 | p.Material = Enum.Material.Glacier |
| 475 | p.MaterialVariant = "2022 Inlet" |
| 476 | p.Anchored = true |
| 477 | p.Parent = model |
| 478 | end |
| 479 | do |
| 480 | local p = Instance.new("Part") |
| 481 | p.Shape = Enum.PartType.Cylinder |
| 482 | p.Name = "TireRR" |
| 483 | p.Size = Vector3.new(0.8, 2.8, 2.8) |
| 484 | p.CFrame = CFrame.new(4.2, 1.4, 6) |
| 485 | p.BrickColor = BrickColor.new("Really black") |
| 486 | p.Material = Enum.Material.Glacier |
| 487 | p.MaterialVariant = "2022 Universal" |
| 488 | p.Anchored = true |
| 489 | p.Parent = model |
| 490 | end |
| 491 | do |
| 492 | local p = Instance.new("Part") |
| 493 | p.Shape = Enum.PartType.Cylinder |
| 494 | p.Name = "HubRR" |
| 495 | p.Size = Vector3.new(0.9, 1.96, 1.96) |
| 496 | p.CFrame = CFrame.new(4.3, 1.4, 6) |
| 497 | p.BrickColor = BrickColor.new("Institutional white") |
| 498 | p.Material = Enum.Material.Glacier |
| 499 | p.MaterialVariant = "2022 Stud" |
| 500 | p.Anchored = true |
| 501 | p.Parent = model |
| 502 | end |
| 503 | do |
| 504 | local p = Instance.new("Part") |
| 505 | p.Shape = Enum.PartType.Cylinder |
| 506 | p.Name = "CapRR" |
| 507 | p.Size = Vector3.new(1, 1.12, 1.12) |
| 508 | p.CFrame = CFrame.new(4.4, 1.4, 6) |
| 509 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 510 | p.Material = Enum.Material.Glacier |
| 511 | p.MaterialVariant = "2022 Inlet" |
| 512 | p.Anchored = true |
| 513 | p.Parent = model |
| 514 | end |
| 515 | do |
| 516 | local p = Instance.new("Part") |
| 517 | p.Shape = Enum.PartType.Ball |
| 518 | p.Name = "HeadlightL_Housing" |
| 519 | p.Size = Vector3.new(1.2, 1.2, 1.2) |
| 520 | p.CFrame = CFrame.new(-3.2, 3.3, -8.2) |
| 521 | p.BrickColor = BrickColor.new("Brick yellow") |
| 522 | p.Material = Enum.Material.Glacier |
| 523 | p.MaterialVariant = "2022 Stud" |
| 524 | p.Anchored = true |
| 525 | p.Parent = model |
| 526 | end |
| 527 | do |
| 528 | local p = Instance.new("Part") |
| 529 | p.Shape = Enum.PartType.Ball |
| 530 | p.Name = "HeadlightL_Lens" |
| 531 | p.Size = Vector3.new(1, 1, 1) |
| 532 | p.CFrame = CFrame.new(-3.2, 3.3, -8.4) |
| 533 | p.BrickColor = BrickColor.new("Institutional white") |
| 534 | p.Material = Enum.Material.Neon |
| 535 | p.Anchored = true |
| 536 | p.Parent = model |
| 537 | end |
| 538 | do |
| 539 | local p = Instance.new("Part") |
| 540 | p.Shape = Enum.PartType.Ball |
| 541 | p.Name = "HeadlightR_Housing" |
| 542 | p.Size = Vector3.new(1.2, 1.2, 1.2) |
| 543 | p.CFrame = CFrame.new(3.2, 3.3, -8.2) |
| 544 | p.BrickColor = BrickColor.new("Brick yellow") |
| 545 | p.Material = Enum.Material.Glacier |
| 546 | p.MaterialVariant = "2022 Stud" |
| 547 | p.Anchored = true |
| 548 | p.Parent = model |
| 549 | end |
| 550 | do |
| 551 | local p = Instance.new("Part") |
| 552 | p.Shape = Enum.PartType.Ball |
| 553 | p.Name = "HeadlightR_Lens" |
| 554 | p.Size = Vector3.new(1, 1, 1) |
| 555 | p.CFrame = CFrame.new(3.2, 3.3, -8.4) |
| 556 | p.BrickColor = BrickColor.new("Institutional white") |
| 557 | p.Material = Enum.Material.Neon |
| 558 | p.Anchored = true |
| 559 | p.Parent = model |
| 560 | end |
| 561 | do |
| 562 | local p = Instance.new("Part") |
| 563 | p.Shape = Enum.PartType.Ball |
| 564 | p.Name = "TurnSignalL" |
| 565 | p.Size = Vector3.new(0.4, 0.4, 0.6) |
| 566 | p.CFrame = CFrame.new(-2.8, 4.1, -7) |
| 567 | p.BrickColor = BrickColor.new("Bright yellow") |
| 568 | p.Material = Enum.Material.Neon |
| 569 | p.Anchored = true |
| 570 | p.Parent = model |
| 571 | end |
| 572 | do |
| 573 | local p = Instance.new("Part") |
| 574 | p.Shape = Enum.PartType.Ball |
| 575 | p.Name = "TurnSignalR" |
| 576 | p.Size = Vector3.new(0.4, 0.4, 0.6) |
| 577 | p.CFrame = CFrame.new(2.8, 4.1, -7) |
| 578 | p.BrickColor = BrickColor.new("Bright yellow") |
| 579 | p.Material = Enum.Material.Neon |
| 580 | p.Anchored = true |
| 581 | p.Parent = model |
| 582 | end |
| 583 | do |
| 584 | local p = Instance.new("Part") |
| 585 | p.Shape = Enum.PartType.Cylinder |
| 586 | p.Name = "FrontBumperBar" |
| 587 | p.Size = Vector3.new(8.5, 0.4, 0.4) |
| 588 | p.CFrame = CFrame.new(0, 2.3, -9.8) |
| 589 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 590 | p.Material = Enum.Material.Glacier |
| 591 | p.MaterialVariant = "2022 Inlet" |
| 592 | p.Anchored = true |
| 593 | p.Parent = model |
| 594 | end |
| 595 | do |
| 596 | local p = Instance.new("Part") |
| 597 | p.Name = "FrontBumperGuardL" |
| 598 | p.Size = Vector3.new(0.3, 1.2, 0.5) |
| 599 | p.CFrame = CFrame.new(-1.5, 2.5, -9.9) |
| 600 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 601 | p.Material = Enum.Material.Glacier |
| 602 | p.MaterialVariant = "2022 Inlet" |
| 603 | p.Anchored = true |
| 604 | p.Parent = model |
| 605 | end |
| 606 | do |
| 607 | local p = Instance.new("Part") |
| 608 | p.Name = "FrontBumperGuardR" |
| 609 | p.Size = Vector3.new(0.3, 1.2, 0.5) |
| 610 | p.CFrame = CFrame.new(1.5, 2.5, -9.9) |
| 611 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 612 | p.Material = Enum.Material.Glacier |
| 613 | p.MaterialVariant = "2022 Inlet" |
| 614 | p.Anchored = true |
| 615 | p.Parent = model |
| 616 | end |
| 617 | do |
| 618 | local p = Instance.new("Part") |
| 619 | p.Name = "FrontBumperMountL" |
| 620 | p.Size = Vector3.new(0.2, 0.2, 0.8) |
| 621 | p.CFrame = CFrame.new(-1.5, 2.3, -9.4) |
| 622 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 623 | p.Material = Enum.Material.Glacier |
| 624 | p.MaterialVariant = "2022 Inlet" |
| 625 | p.Anchored = true |
| 626 | p.Parent = model |
| 627 | end |
| 628 | do |
| 629 | local p = Instance.new("Part") |
| 630 | p.Name = "FrontBumperMountR" |
| 631 | p.Size = Vector3.new(0.2, 0.2, 0.8) |
| 632 | p.CFrame = CFrame.new(1.5, 2.3, -9.4) |
| 633 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 634 | p.Material = Enum.Material.Glacier |
| 635 | p.MaterialVariant = "2022 Inlet" |
| 636 | p.Anchored = true |
| 637 | p.Parent = model |
| 638 | end |
| 639 | do |
| 640 | local p = Instance.new("Part") |
| 641 | p.Shape = Enum.PartType.Cylinder |
| 642 | p.Name = "RearBumperBar" |
| 643 | p.Size = Vector3.new(8.5, 0.4, 0.4) |
| 644 | p.CFrame = CFrame.new(0, 2.3, 9.8) |
| 645 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 646 | p.Material = Enum.Material.Glacier |
| 647 | p.MaterialVariant = "2022 Inlet" |
| 648 | p.Anchored = true |
| 649 | p.Parent = model |
| 650 | end |
| 651 | do |
| 652 | local p = Instance.new("Part") |
| 653 | p.Name = "RearBumperGuardL" |
| 654 | p.Size = Vector3.new(0.3, 1.2, 0.5) |
| 655 | p.CFrame = CFrame.new(-1.5, 2.5, 9.9) |
| 656 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 657 | p.Material = Enum.Material.Glacier |
| 658 | p.MaterialVariant = "2022 Inlet" |
| 659 | p.Anchored = true |
| 660 | p.Parent = model |
| 661 | end |
| 662 | do |
| 663 | local p = Instance.new("Part") |
| 664 | p.Name = "RearBumperGuardR" |
| 665 | p.Size = Vector3.new(0.3, 1.2, 0.5) |
| 666 | p.CFrame = CFrame.new(1.5, 2.5, 9.9) |
| 667 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 668 | p.Material = Enum.Material.Glacier |
| 669 | p.MaterialVariant = "2022 Inlet" |
| 670 | p.Anchored = true |
| 671 | p.Parent = model |
| 672 | end |
| 673 | do |
| 674 | local p = Instance.new("Part") |
| 675 | p.Name = "LicensePlate" |
| 676 | p.Size = Vector3.new(2.5, 0.8, 0.1) |
| 677 | p.CFrame = CFrame.new(0, 1.9, -9.8) |
| 678 | p.BrickColor = BrickColor.new("Institutional white") |
| 679 | p.Material = Enum.Material.Glacier |
| 680 | p.MaterialVariant = "2022 Stud" |
| 681 | p.Anchored = true |
| 682 | p.Parent = model |
| 683 | end |
| 684 | do |
| 685 | local p = Instance.new("Part") |
| 686 | p.Name = "HoodHandle" |
| 687 | p.Size = Vector3.new(0.2, 0.8, 0.2) |
| 688 | p.CFrame = CFrame.new(0, 3, -9.3) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)) |
| 689 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 690 | p.Material = Enum.Material.Glacier |
| 691 | p.MaterialVariant = "2022 Inlet" |
| 692 | p.Anchored = true |
| 693 | p.Parent = model |
| 694 | end |
| 695 | do |
| 696 | local p = Instance.new("Part") |
| 697 | p.Name = "DoorHandleL" |
| 698 | p.Size = Vector3.new(0.2, 0.2, 0.8) |
| 699 | p.CFrame = CFrame.new(-4.1, 4, -1) |
| 700 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 701 | p.Material = Enum.Material.Glacier |
| 702 | p.MaterialVariant = "2022 Inlet" |
| 703 | p.Anchored = true |
| 704 | p.Parent = model |
| 705 | end |
| 706 | do |
| 707 | local p = Instance.new("Part") |
| 708 | p.Name = "DoorHandleR" |
| 709 | p.Size = Vector3.new(0.2, 0.2, 0.8) |
| 710 | p.CFrame = CFrame.new(4.1, 4, -1) |
| 711 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 712 | p.Material = Enum.Material.Glacier |
| 713 | p.MaterialVariant = "2022 Inlet" |
| 714 | p.Anchored = true |
| 715 | p.Parent = model |
| 716 | end |
| 717 | do |
| 718 | local p = Instance.new("Part") |
| 719 | p.Name = "SideTrimL" |
| 720 | p.Size = Vector3.new(0.1, 0.1, 6) |
| 721 | p.CFrame = CFrame.new(-4.05, 3.7, 0) |
| 722 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 723 | p.Material = Enum.Material.Glacier |
| 724 | p.MaterialVariant = "2022 Inlet" |
| 725 | p.Anchored = true |
| 726 | p.Parent = model |
| 727 | end |
| 728 | do |
| 729 | local p = Instance.new("Part") |
| 730 | p.Name = "SideTrimR" |
| 731 | p.Size = Vector3.new(0.1, 0.1, 6) |
| 732 | p.CFrame = CFrame.new(4.05, 3.7, 0) |
| 733 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 734 | p.Material = Enum.Material.Glacier |
| 735 | p.MaterialVariant = "2022 Inlet" |
| 736 | p.Anchored = true |
| 737 | p.Parent = model |
| 738 | end |
| 739 | model.PrimaryPart = model:FindFirstChild("Chassis") |
| 740 | print("BeetleCar built: " .. #model:GetChildren() .. " parts") |