by nate213121 · 3/1/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 = "LabradorDog" |
| 18 | model.Parent = workspace |
| 19 | |
| 20 | local variants = { |
| 21 | ["Dark stone grey"] = "2022 Stud", |
| 22 | ["Medium stone grey"] = "2022 Inlet", |
| 23 | ["Really black"] = "2022 Universal", |
| 24 | ["Reddish brown"] = "2022 Small Stud", |
| 25 | ["Bright yellow"] = "2022 Weld", |
| 26 | ["Light stone grey"] = "2022 Glue", |
| 27 | ["Institutional white"] = "2022 Stud", |
| 28 | ["Brick yellow"] = "2022 Stud", |
| 29 | ["Sand yellow"] = "2022 Small Stud", |
| 30 | ["Nougat"] = "2022 Stud", |
| 31 | ["Bright blue"] = "2022 Universal", |
| 32 | ["Dark blue"] = "2022 Inlet", |
| 33 | } |
| 34 | do |
| 35 | local p = Instance.new("Part") |
| 36 | p.Name = "FL_Paw" |
| 37 | p.Size = Vector3.new(0.6, 0.3, 0.7) |
| 38 | p.CFrame = CFrame.new(-0.7, 0.15, 1.2) |
| 39 | p.BrickColor = BrickColor.new("Nougat") |
| 40 | p.Material = Enum.Material.Glacier |
| 41 | p.MaterialVariant = "2022 Stud" |
| 42 | p.Anchored = true |
| 43 | p.Parent = model |
| 44 | end |
| 45 | do |
| 46 | local p = Instance.new("Part") |
| 47 | p.Name = "FL_Leg" |
| 48 | p.Size = Vector3.new(0.45, 2.1, 0.5) |
| 49 | p.CFrame = CFrame.new(-0.7, 1.3, 1.2) |
| 50 | p.BrickColor = BrickColor.new("Nougat") |
| 51 | p.Material = Enum.Material.Glacier |
| 52 | p.MaterialVariant = "2022 Stud" |
| 53 | p.Anchored = true |
| 54 | p.Parent = model |
| 55 | end |
| 56 | do |
| 57 | local p = Instance.new("Part") |
| 58 | p.Name = "FR_Paw" |
| 59 | p.Size = Vector3.new(0.6, 0.3, 0.7) |
| 60 | p.CFrame = CFrame.new(0.7, 0.15, 1.2) |
| 61 | p.BrickColor = BrickColor.new("Nougat") |
| 62 | p.Material = Enum.Material.Glacier |
| 63 | p.MaterialVariant = "2022 Stud" |
| 64 | p.Anchored = true |
| 65 | p.Parent = model |
| 66 | end |
| 67 | do |
| 68 | local p = Instance.new("Part") |
| 69 | p.Name = "FR_Leg" |
| 70 | p.Size = Vector3.new(0.45, 2.1, 0.5) |
| 71 | p.CFrame = CFrame.new(0.7, 1.3, 1.2) |
| 72 | p.BrickColor = BrickColor.new("Nougat") |
| 73 | p.Material = Enum.Material.Glacier |
| 74 | p.MaterialVariant = "2022 Stud" |
| 75 | p.Anchored = true |
| 76 | p.Parent = model |
| 77 | end |
| 78 | do |
| 79 | local p = Instance.new("Part") |
| 80 | p.Name = "BL_Paw" |
| 81 | p.Size = Vector3.new(0.6, 0.3, 0.7) |
| 82 | p.CFrame = CFrame.new(-0.7, 0.15, -1.5) |
| 83 | p.BrickColor = BrickColor.new("Nougat") |
| 84 | p.Material = Enum.Material.Glacier |
| 85 | p.MaterialVariant = "2022 Stud" |
| 86 | p.Anchored = true |
| 87 | p.Parent = model |
| 88 | end |
| 89 | do |
| 90 | local p = Instance.new("Part") |
| 91 | p.Name = "BL_Shin" |
| 92 | p.Size = Vector3.new(0.45, 1.2, 0.5) |
| 93 | p.CFrame = CFrame.new(-0.7, 0.8, -1.4) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)) |
| 94 | p.BrickColor = BrickColor.new("Nougat") |
| 95 | p.Material = Enum.Material.Glacier |
| 96 | p.MaterialVariant = "2022 Stud" |
| 97 | p.Anchored = true |
| 98 | p.Parent = model |
| 99 | end |
| 100 | do |
| 101 | local p = Instance.new("Part") |
| 102 | p.Name = "BL_Thigh" |
| 103 | p.Size = Vector3.new(0.65, 1.6, 1.1) |
| 104 | p.CFrame = CFrame.new(-0.7, 1.8, -1.1) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(0)) |
| 105 | p.BrickColor = BrickColor.new("Nougat") |
| 106 | p.Material = Enum.Material.Glacier |
| 107 | p.MaterialVariant = "2022 Stud" |
| 108 | p.Anchored = true |
| 109 | p.Parent = model |
| 110 | end |
| 111 | do |
| 112 | local p = Instance.new("Part") |
| 113 | p.Name = "BR_Paw" |
| 114 | p.Size = Vector3.new(0.6, 0.3, 0.7) |
| 115 | p.CFrame = CFrame.new(0.7, 0.15, -1.5) |
| 116 | p.BrickColor = BrickColor.new("Nougat") |
| 117 | p.Material = Enum.Material.Glacier |
| 118 | p.MaterialVariant = "2022 Stud" |
| 119 | p.Anchored = true |
| 120 | p.Parent = model |
| 121 | end |
| 122 | do |
| 123 | local p = Instance.new("Part") |
| 124 | p.Name = "BR_Shin" |
| 125 | p.Size = Vector3.new(0.45, 1.2, 0.5) |
| 126 | p.CFrame = CFrame.new(0.7, 0.8, -1.4) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)) |
| 127 | p.BrickColor = BrickColor.new("Nougat") |
| 128 | p.Material = Enum.Material.Glacier |
| 129 | p.MaterialVariant = "2022 Stud" |
| 130 | p.Anchored = true |
| 131 | p.Parent = model |
| 132 | end |
| 133 | do |
| 134 | local p = Instance.new("Part") |
| 135 | p.Name = "BR_Thigh" |
| 136 | p.Size = Vector3.new(0.65, 1.6, 1.1) |
| 137 | p.CFrame = CFrame.new(0.7, 1.8, -1.1) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(0)) |
| 138 | p.BrickColor = BrickColor.new("Nougat") |
| 139 | p.Material = Enum.Material.Glacier |
| 140 | p.MaterialVariant = "2022 Stud" |
| 141 | p.Anchored = true |
| 142 | p.Parent = model |
| 143 | end |
| 144 | do |
| 145 | local p = Instance.new("Part") |
| 146 | p.Name = "ChestLower" |
| 147 | p.Size = Vector3.new(2.1, 1.2, 2) |
| 148 | p.CFrame = CFrame.new(0, 1.9, 0.9) |
| 149 | p.BrickColor = BrickColor.new("Nougat") |
| 150 | p.Material = Enum.Material.Glacier |
| 151 | p.MaterialVariant = "2022 Stud" |
| 152 | p.Anchored = true |
| 153 | p.Parent = model |
| 154 | end |
| 155 | do |
| 156 | local p = Instance.new("Part") |
| 157 | p.Name = "ChestUpper" |
| 158 | p.Size = Vector3.new(2.3, 1.3, 2.2) |
| 159 | p.CFrame = CFrame.new(0, 2.9, 0.7) |
| 160 | p.BrickColor = BrickColor.new("Nougat") |
| 161 | p.Material = Enum.Material.Glacier |
| 162 | p.MaterialVariant = "2022 Stud" |
| 163 | p.Anchored = true |
| 164 | p.Parent = model |
| 165 | end |
| 166 | do |
| 167 | local p = Instance.new("Part") |
| 168 | p.Name = "Waist" |
| 169 | p.Size = Vector3.new(1.9, 1.4, 1.7) |
| 170 | p.CFrame = CFrame.new(0, 2.6, -0.6) |
| 171 | p.BrickColor = BrickColor.new("Nougat") |
| 172 | p.Material = Enum.Material.Glacier |
| 173 | p.MaterialVariant = "2022 Stud" |
| 174 | p.Anchored = true |
| 175 | p.Parent = model |
| 176 | end |
| 177 | do |
| 178 | local p = Instance.new("Part") |
| 179 | p.Name = "Hips" |
| 180 | p.Size = Vector3.new(2, 1.5, 1.8) |
| 181 | p.CFrame = CFrame.new(0, 2.7, -1.6) |
| 182 | p.BrickColor = BrickColor.new("Nougat") |
| 183 | p.Material = Enum.Material.Glacier |
| 184 | p.MaterialVariant = "2022 Stud" |
| 185 | p.Anchored = true |
| 186 | p.Parent = model |
| 187 | end |
| 188 | do |
| 189 | local p = Instance.new("Part") |
| 190 | p.Name = "Neck" |
| 191 | p.Size = Vector3.new(1.3, 1.5, 1.3) |
| 192 | p.CFrame = CFrame.new(0, 3.6, 1.8) * CFrame.Angles(math.rad(-25), math.rad(0), math.rad(0)) |
| 193 | p.BrickColor = BrickColor.new("Nougat") |
| 194 | p.Material = Enum.Material.Glacier |
| 195 | p.MaterialVariant = "2022 Stud" |
| 196 | p.Anchored = true |
| 197 | p.Parent = model |
| 198 | end |
| 199 | do |
| 200 | local p = Instance.new("Part") |
| 201 | p.Name = "Collar" |
| 202 | p.Size = Vector3.new(1.5, 0.25, 1.5) |
| 203 | p.CFrame = CFrame.new(0, 3.3, 1.8) * CFrame.Angles(math.rad(-25), math.rad(0), math.rad(0)) |
| 204 | p.BrickColor = BrickColor.new("Bright red") |
| 205 | p.Material = Enum.Material.Glacier |
| 206 | p.Anchored = true |
| 207 | p.Parent = model |
| 208 | end |
| 209 | do |
| 210 | local p = Instance.new("Part") |
| 211 | p.Name = "Tag" |
| 212 | p.Size = Vector3.new(0.35, 0.4, 0.1) |
| 213 | p.CFrame = CFrame.new(0, 3, 2.4) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(0)) |
| 214 | p.BrickColor = BrickColor.new("Medium stone grey") |
| 215 | p.Material = Enum.Material.Glacier |
| 216 | p.MaterialVariant = "2022 Inlet" |
| 217 | p.Anchored = true |
| 218 | p.Parent = model |
| 219 | end |
| 220 | do |
| 221 | local p = Instance.new("Part") |
| 222 | p.Name = "Skull" |
| 223 | p.Size = Vector3.new(1.7, 1.5, 1.7) |
| 224 | p.CFrame = CFrame.new(0, 4.4, 2.3) |
| 225 | p.BrickColor = BrickColor.new("Nougat") |
| 226 | p.Material = Enum.Material.Glacier |
| 227 | p.MaterialVariant = "2022 Stud" |
| 228 | p.Anchored = true |
| 229 | p.Parent = model |
| 230 | end |
| 231 | do |
| 232 | local p = Instance.new("Part") |
| 233 | p.Name = "Snout" |
| 234 | p.Size = Vector3.new(0.9, 0.7, 1.1) |
| 235 | p.CFrame = CFrame.new(0, 4.15, 3.3) |
| 236 | p.BrickColor = BrickColor.new("Nougat") |
| 237 | p.Material = Enum.Material.Glacier |
| 238 | p.MaterialVariant = "2022 Stud" |
| 239 | p.Anchored = true |
| 240 | p.Parent = model |
| 241 | end |
| 242 | do |
| 243 | local p = Instance.new("Part") |
| 244 | p.Name = "Nose" |
| 245 | p.Size = Vector3.new(0.4, 0.25, 0.2) |
| 246 | p.CFrame = CFrame.new(0, 4.25, 3.85) |
| 247 | p.BrickColor = BrickColor.new("Really black") |
| 248 | p.Material = Enum.Material.Glacier |
| 249 | p.MaterialVariant = "2022 Universal" |
| 250 | p.Anchored = true |
| 251 | p.Parent = model |
| 252 | end |
| 253 | do |
| 254 | local p = Instance.new("Part") |
| 255 | p.Name = "EyeL" |
| 256 | p.Size = Vector3.new(0.25, 0.25, 0.1) |
| 257 | p.CFrame = CFrame.new(-0.5, 4.6, 3.15) |
| 258 | p.BrickColor = BrickColor.new("Really black") |
| 259 | p.Material = Enum.Material.Glacier |
| 260 | p.MaterialVariant = "2022 Universal" |
| 261 | p.Anchored = true |
| 262 | p.Parent = model |
| 263 | end |
| 264 | do |
| 265 | local p = Instance.new("Part") |
| 266 | p.Name = "EyeR" |
| 267 | p.Size = Vector3.new(0.25, 0.25, 0.1) |
| 268 | p.CFrame = CFrame.new(0.5, 4.6, 3.15) |
| 269 | p.BrickColor = BrickColor.new("Really black") |
| 270 | p.Material = Enum.Material.Glacier |
| 271 | p.MaterialVariant = "2022 Universal" |
| 272 | p.Anchored = true |
| 273 | p.Parent = model |
| 274 | end |
| 275 | do |
| 276 | local p = Instance.new("Part") |
| 277 | p.Name = "EarL_Base" |
| 278 | p.Size = Vector3.new(0.3, 0.8, 0.9) |
| 279 | p.CFrame = CFrame.new(-0.9, 4.6, 2.3) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(15)) |
| 280 | p.BrickColor = BrickColor.new("Nougat") |
| 281 | p.Material = Enum.Material.Glacier |
| 282 | p.MaterialVariant = "2022 Stud" |
| 283 | p.Anchored = true |
| 284 | p.Parent = model |
| 285 | end |
| 286 | do |
| 287 | local p = Instance.new("Part") |
| 288 | p.Name = "EarL_Flap" |
| 289 | p.Size = Vector3.new(0.25, 0.9, 0.8) |
| 290 | p.CFrame = CFrame.new(-1, 3.9, 2.3) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)) |
| 291 | p.BrickColor = BrickColor.new("Nougat") |
| 292 | p.Material = Enum.Material.Glacier |
| 293 | p.MaterialVariant = "2022 Stud" |
| 294 | p.Anchored = true |
| 295 | p.Parent = model |
| 296 | end |
| 297 | do |
| 298 | local p = Instance.new("Part") |
| 299 | p.Name = "EarR_Base" |
| 300 | p.Size = Vector3.new(0.3, 0.8, 0.9) |
| 301 | p.CFrame = CFrame.new(0.9, 4.6, 2.3) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-15)) |
| 302 | p.BrickColor = BrickColor.new("Nougat") |
| 303 | p.Material = Enum.Material.Glacier |
| 304 | p.MaterialVariant = "2022 Stud" |
| 305 | p.Anchored = true |
| 306 | p.Parent = model |
| 307 | end |
| 308 | do |
| 309 | local p = Instance.new("Part") |
| 310 | p.Name = "EarR_Flap" |
| 311 | p.Size = Vector3.new(0.25, 0.9, 0.8) |
| 312 | p.CFrame = CFrame.new(1, 3.9, 2.3) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)) |
| 313 | p.BrickColor = BrickColor.new("Nougat") |
| 314 | p.Material = Enum.Material.Glacier |
| 315 | p.MaterialVariant = "2022 Stud" |
| 316 | p.Anchored = true |
| 317 | p.Parent = model |
| 318 | end |
| 319 | do |
| 320 | local p = Instance.new("Part") |
| 321 | p.Name = "JawLower" |
| 322 | p.Size = Vector3.new(0.8, 0.2, 0.9) |
| 323 | p.CFrame = CFrame.new(0, 3.85, 3.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)) |
| 324 | p.BrickColor = BrickColor.new("Nougat") |
| 325 | p.Material = Enum.Material.Glacier |
| 326 | p.MaterialVariant = "2022 Stud" |
| 327 | p.Anchored = true |
| 328 | p.Parent = model |
| 329 | end |
| 330 | do |
| 331 | local p = Instance.new("Part") |
| 332 | p.Name = "MouthInt" |
| 333 | p.Size = Vector3.new(0.6, 0.1, 0.6) |
| 334 | p.CFrame = CFrame.new(0, 3.95, 3.1) |
| 335 | p.BrickColor = BrickColor.new("Really black") |
| 336 | p.Material = Enum.Material.Glacier |
| 337 | p.MaterialVariant = "2022 Universal" |
| 338 | p.Anchored = true |
| 339 | p.Parent = model |
| 340 | end |
| 341 | do |
| 342 | local p = Instance.new("Part") |
| 343 | p.Name = "Tongue" |
| 344 | p.Size = Vector3.new(0.45, 0.1, 0.7) |
| 345 | p.CFrame = CFrame.new(0, 3.95, 3.4) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)) |
| 346 | p.BrickColor = BrickColor.new("Carnation pink") |
| 347 | p.Material = Enum.Material.Glacier |
| 348 | p.Anchored = true |
| 349 | p.Parent = model |
| 350 | end |
| 351 | do |
| 352 | local p = Instance.new("Part") |
| 353 | p.Name = "TailBase" |
| 354 | p.Size = Vector3.new(0.7, 0.7, 0.8) |
| 355 | p.CFrame = CFrame.new(0, 3, -2.6) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)) |
| 356 | p.BrickColor = BrickColor.new("Nougat") |
| 357 | p.Material = Enum.Material.Glacier |
| 358 | p.MaterialVariant = "2022 Stud" |
| 359 | p.Anchored = true |
| 360 | p.Parent = model |
| 361 | end |
| 362 | do |
| 363 | local p = Instance.new("Part") |
| 364 | p.Name = "TailMid" |
| 365 | p.Size = Vector3.new(0.55, 0.55, 0.9) |
| 366 | p.CFrame = CFrame.new(0, 2.7, -3.3) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)) |
| 367 | p.BrickColor = BrickColor.new("Nougat") |
| 368 | p.Material = Enum.Material.Glacier |
| 369 | p.MaterialVariant = "2022 Stud" |
| 370 | p.Anchored = true |
| 371 | p.Parent = model |
| 372 | end |
| 373 | do |
| 374 | local p = Instance.new("Part") |
| 375 | p.Name = "TailTip" |
| 376 | p.Size = Vector3.new(0.4, 0.4, 0.7) |
| 377 | p.CFrame = CFrame.new(0, 2.2, -3.9) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)) |
| 378 | p.BrickColor = BrickColor.new("Nougat") |
| 379 | p.Material = Enum.Material.Glacier |
| 380 | p.MaterialVariant = "2022 Stud" |
| 381 | p.Anchored = true |
| 382 | p.Parent = model |
| 383 | end |
| 384 | model.PrimaryPart = model:FindFirstChild("ChestUpper") |
| 385 | print("LabradorDog built: " .. #model:GetChildren() .. " parts") |