by nate213121 · 3/8/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 = "RoastTurkey" |
| 18 | model.Parent = workspace |
| 19 | |
| 20 | local variants = { |
| 21 | ["Brick yellow"] = "2022 Stud", |
| 22 | ["Bright red"] = "2022 Stud", |
| 23 | ["Earth green"] = "2022 Stud", |
| 24 | ["Institutional white"] = "2022 Stud", |
| 25 | ["Nougat"] = "2022 Stud", |
| 26 | ["Reddish brown"] = "2022 Small Stud", |
| 27 | ["Royal purple"] = "2022 Stud", |
| 28 | } |
| 29 | do |
| 30 | local p = Instance.new("Part") |
| 31 | p.Shape = Enum.PartType.Cylinder |
| 32 | p.Name = "PlateBase" |
| 33 | p.Size = Vector3.new(0.4, 21, 21) |
| 34 | p.CFrame = CFrame.new(0, 0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 35 | p.BrickColor = BrickColor.new("Institutional white") |
| 36 | p.Material = Enum.Material.Glacier |
| 37 | p.MaterialVariant = "2022 Stud" |
| 38 | p.Anchored = true |
| 39 | p.Parent = model |
| 40 | end |
| 41 | do |
| 42 | local p = Instance.new("Part") |
| 43 | p.Shape = Enum.PartType.Cylinder |
| 44 | p.Name = "PlateRim1" |
| 45 | p.Size = Vector3.new(0.2, 20, 20) |
| 46 | p.CFrame = CFrame.new(0, 0.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 47 | p.BrickColor = BrickColor.new("Institutional white") |
| 48 | p.Material = Enum.Material.Glacier |
| 49 | p.MaterialVariant = "2022 Stud" |
| 50 | p.Anchored = true |
| 51 | p.Parent = model |
| 52 | end |
| 53 | do |
| 54 | local p = Instance.new("Part") |
| 55 | p.Name = "BodyBase" |
| 56 | p.Size = Vector3.new(14, 3, 10) |
| 57 | p.CFrame = CFrame.new(0, 2, 0) |
| 58 | p.BrickColor = BrickColor.new("Nougat") |
| 59 | p.Material = Enum.Material.Glacier |
| 60 | p.MaterialVariant = "2022 Stud" |
| 61 | p.Anchored = true |
| 62 | p.Parent = model |
| 63 | end |
| 64 | do |
| 65 | local p = Instance.new("Part") |
| 66 | p.Name = "BodyMid" |
| 67 | p.Size = Vector3.new(13, 3, 9) |
| 68 | p.CFrame = CFrame.new(0, 4, 0) |
| 69 | p.BrickColor = BrickColor.new("Nougat") |
| 70 | p.Material = Enum.Material.Glacier |
| 71 | p.MaterialVariant = "2022 Stud" |
| 72 | p.Anchored = true |
| 73 | p.Parent = model |
| 74 | end |
| 75 | do |
| 76 | local p = Instance.new("Part") |
| 77 | p.Name = "BodyTop" |
| 78 | p.Size = Vector3.new(11, 2, 7) |
| 79 | p.CFrame = CFrame.new(0, 6, 0) |
| 80 | p.BrickColor = BrickColor.new("Nougat") |
| 81 | p.Material = Enum.Material.Glacier |
| 82 | p.MaterialVariant = "2022 Stud" |
| 83 | p.Anchored = true |
| 84 | p.Parent = model |
| 85 | end |
| 86 | do |
| 87 | local p = Instance.new("Part") |
| 88 | p.Name = "BodyPeak" |
| 89 | p.Size = Vector3.new(8, 1.5, 5) |
| 90 | p.CFrame = CFrame.new(-1, 7.5, 0) |
| 91 | p.BrickColor = BrickColor.new("Reddish brown") |
| 92 | p.Material = Enum.Material.Glacier |
| 93 | p.MaterialVariant = "2022 Small Stud" |
| 94 | p.Anchored = true |
| 95 | p.Parent = model |
| 96 | end |
| 97 | do |
| 98 | local p = Instance.new("Part") |
| 99 | p.Name = "BreastFront" |
| 100 | p.Size = Vector3.new(4, 4, 8) |
| 101 | p.CFrame = CFrame.new(-6, 4, 0) |
| 102 | p.BrickColor = BrickColor.new("Nougat") |
| 103 | p.Material = Enum.Material.Glacier |
| 104 | p.MaterialVariant = "2022 Stud" |
| 105 | p.Anchored = true |
| 106 | p.Parent = model |
| 107 | end |
| 108 | do |
| 109 | local p = Instance.new("Part") |
| 110 | p.Name = "BreastTop" |
| 111 | p.Size = Vector3.new(4, 2, 6) |
| 112 | p.CFrame = CFrame.new(-5, 6.5, 0) |
| 113 | p.BrickColor = BrickColor.new("Reddish brown") |
| 114 | p.Material = Enum.Material.Glacier |
| 115 | p.MaterialVariant = "2022 Small Stud" |
| 116 | p.Anchored = true |
| 117 | p.Parent = model |
| 118 | end |
| 119 | do |
| 120 | local p = Instance.new("Part") |
| 121 | p.Name = "TailEnd" |
| 122 | p.Size = Vector3.new(4, 3, 6) |
| 123 | p.CFrame = CFrame.new(6, 3, 0) |
| 124 | p.BrickColor = BrickColor.new("Nougat") |
| 125 | p.Material = Enum.Material.Glacier |
| 126 | p.MaterialVariant = "2022 Stud" |
| 127 | p.Anchored = true |
| 128 | p.Parent = model |
| 129 | end |
| 130 | do |
| 131 | local p = Instance.new("Part") |
| 132 | p.Name = "TailTop" |
| 133 | p.Size = Vector3.new(3, 2, 4) |
| 134 | p.CFrame = CFrame.new(5.04, 5, 0) |
| 135 | p.BrickColor = BrickColor.new("Reddish brown") |
| 136 | p.Material = Enum.Material.Glacier |
| 137 | p.MaterialVariant = "2022 Small Stud" |
| 138 | p.Anchored = true |
| 139 | p.Parent = model |
| 140 | end |
| 141 | do |
| 142 | local p = Instance.new("Part") |
| 143 | p.Shape = Enum.PartType.Ball |
| 144 | p.Name = "RightLegBase" |
| 145 | p.Size = Vector3.new(3, 3, 3) |
| 146 | p.CFrame = CFrame.new(5, 3.5, 4.5) |
| 147 | p.BrickColor = BrickColor.new("Nougat") |
| 148 | p.Material = Enum.Material.Glacier |
| 149 | p.MaterialVariant = "2022 Stud" |
| 150 | p.Anchored = true |
| 151 | p.Parent = model |
| 152 | end |
| 153 | do |
| 154 | local p = Instance.new("Part") |
| 155 | p.Name = "RightLegMid" |
| 156 | p.Size = Vector3.new(4, 2, 2) |
| 157 | p.CFrame = CFrame.new(7, 4.5, 5.5) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(20)) |
| 158 | p.BrickColor = BrickColor.new("Nougat") |
| 159 | p.Material = Enum.Material.Glacier |
| 160 | p.MaterialVariant = "2022 Stud" |
| 161 | p.Anchored = true |
| 162 | p.Parent = model |
| 163 | end |
| 164 | do |
| 165 | local p = Instance.new("Part") |
| 166 | p.Name = "RightLegBone" |
| 167 | p.Size = Vector3.new(2, 0.8, 0.8) |
| 168 | p.CFrame = CFrame.new(9, 5.5, 6.5) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(20)) |
| 169 | p.BrickColor = BrickColor.new("Brick yellow") |
| 170 | p.Material = Enum.Material.Glacier |
| 171 | p.MaterialVariant = "2022 Stud" |
| 172 | p.Anchored = true |
| 173 | p.Parent = model |
| 174 | end |
| 175 | do |
| 176 | local p = Instance.new("Part") |
| 177 | p.Shape = Enum.PartType.Ball |
| 178 | p.Name = "RightLegKnob" |
| 179 | p.Size = Vector3.new(1.2, 1.2, 1.2) |
| 180 | p.CFrame = CFrame.new(9.8, 6, 7) |
| 181 | p.BrickColor = BrickColor.new("Brick yellow") |
| 182 | p.Material = Enum.Material.Glacier |
| 183 | p.MaterialVariant = "2022 Stud" |
| 184 | p.Anchored = true |
| 185 | p.Parent = model |
| 186 | end |
| 187 | do |
| 188 | local p = Instance.new("Part") |
| 189 | p.Shape = Enum.PartType.Ball |
| 190 | p.Name = "LeftLegBase" |
| 191 | p.Size = Vector3.new(3, 3, 3) |
| 192 | p.CFrame = CFrame.new(5, 3.5, -4.5) |
| 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 = "LeftLegMid" |
| 202 | p.Size = Vector3.new(4, 2, 2) |
| 203 | p.CFrame = CFrame.new(7, 4.5, -5.5) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(20)) |
| 204 | p.BrickColor = BrickColor.new("Nougat") |
| 205 | p.Material = Enum.Material.Glacier |
| 206 | p.MaterialVariant = "2022 Stud" |
| 207 | p.Anchored = true |
| 208 | p.Parent = model |
| 209 | end |
| 210 | do |
| 211 | local p = Instance.new("Part") |
| 212 | p.Name = "LeftLegBone" |
| 213 | p.Size = Vector3.new(2, 0.8, 0.8) |
| 214 | p.CFrame = CFrame.new(9, 5.5, -6.5) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(20)) |
| 215 | p.BrickColor = BrickColor.new("Brick yellow") |
| 216 | p.Material = Enum.Material.Glacier |
| 217 | p.MaterialVariant = "2022 Stud" |
| 218 | p.Anchored = true |
| 219 | p.Parent = model |
| 220 | end |
| 221 | do |
| 222 | local p = Instance.new("Part") |
| 223 | p.Shape = Enum.PartType.Ball |
| 224 | p.Name = "LeftLegKnob" |
| 225 | p.Size = Vector3.new(1.2, 1.2, 1.2) |
| 226 | p.CFrame = CFrame.new(9.8, 6, -7) |
| 227 | p.BrickColor = BrickColor.new("Brick yellow") |
| 228 | p.Material = Enum.Material.Glacier |
| 229 | p.MaterialVariant = "2022 Stud" |
| 230 | p.Anchored = true |
| 231 | p.Parent = model |
| 232 | end |
| 233 | do |
| 234 | local p = Instance.new("Part") |
| 235 | p.Name = "RightWingBase" |
| 236 | p.Size = Vector3.new(5, 2, 2) |
| 237 | p.CFrame = CFrame.new(-2, 2.5, 5) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(-10)) |
| 238 | p.BrickColor = BrickColor.new("Nougat") |
| 239 | p.Material = Enum.Material.Glacier |
| 240 | p.MaterialVariant = "2022 Stud" |
| 241 | p.Anchored = true |
| 242 | p.Parent = model |
| 243 | end |
| 244 | do |
| 245 | local p = Instance.new("Part") |
| 246 | p.Name = "RightWingTip" |
| 247 | p.Size = Vector3.new(4, 1.5, 1.5) |
| 248 | p.CFrame = CFrame.new(-4, 1.5, 5.5) * CFrame.Angles(math.rad(0), math.rad(-20), math.rad(-20)) |
| 249 | p.BrickColor = BrickColor.new("Reddish brown") |
| 250 | p.Material = Enum.Material.Glacier |
| 251 | p.MaterialVariant = "2022 Small Stud" |
| 252 | p.Anchored = true |
| 253 | p.Parent = model |
| 254 | end |
| 255 | do |
| 256 | local p = Instance.new("Part") |
| 257 | p.Name = "LeftWingBase" |
| 258 | p.Size = Vector3.new(5, 2, 2) |
| 259 | p.CFrame = CFrame.new(-2, 2.5, -5) * CFrame.Angles(math.rad(0), math.rad(15), math.rad(-10)) |
| 260 | p.BrickColor = BrickColor.new("Nougat") |
| 261 | p.Material = Enum.Material.Glacier |
| 262 | p.MaterialVariant = "2022 Stud" |
| 263 | p.Anchored = true |
| 264 | p.Parent = model |
| 265 | end |
| 266 | do |
| 267 | local p = Instance.new("Part") |
| 268 | p.Name = "LeftWingTip" |
| 269 | p.Size = Vector3.new(4, 1.5, 1.5) |
| 270 | p.CFrame = CFrame.new(-4, 1.5, -5.5) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(-20)) |
| 271 | p.BrickColor = BrickColor.new("Reddish brown") |
| 272 | p.Material = Enum.Material.Glacier |
| 273 | p.MaterialVariant = "2022 Small Stud" |
| 274 | p.Anchored = true |
| 275 | p.Parent = model |
| 276 | end |
| 277 | do |
| 278 | local p = Instance.new("Part") |
| 279 | p.Shape = Enum.PartType.Ball |
| 280 | p.Name = "Apple1" |
| 281 | p.Size = Vector3.new(2.5, 2, 2.5) |
| 282 | p.CFrame = CFrame.new(-8, 1, -4) |
| 283 | p.BrickColor = BrickColor.new("Bright red") |
| 284 | p.Material = Enum.Material.Glacier |
| 285 | p.MaterialVariant = "2022 Stud" |
| 286 | p.Anchored = true |
| 287 | p.Parent = model |
| 288 | end |
| 289 | do |
| 290 | local p = Instance.new("Part") |
| 291 | p.Name = "Onion1" |
| 292 | p.Size = Vector3.new(2, 1.5, 3) |
| 293 | p.CFrame = CFrame.new(-7, 1, -6) * CFrame.Angles(math.rad(0), math.rad(45), math.rad(0)) |
| 294 | p.BrickColor = BrickColor.new("Royal purple") |
| 295 | p.Material = Enum.Material.Glacier |
| 296 | p.MaterialVariant = "2022 Stud" |
| 297 | p.Anchored = true |
| 298 | p.Parent = model |
| 299 | end |
| 300 | do |
| 301 | local p = Instance.new("Part") |
| 302 | p.Name = "Herb1" |
| 303 | p.Size = Vector3.new(4, 0.2, 0.5) |
| 304 | p.CFrame = CFrame.new(-9, 0.6, -5) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)) |
| 305 | p.BrickColor = BrickColor.new("Earth green") |
| 306 | p.Material = Enum.Material.Glacier |
| 307 | p.MaterialVariant = "2022 Stud" |
| 308 | p.Anchored = true |
| 309 | p.Parent = model |
| 310 | end |
| 311 | do |
| 312 | local p = Instance.new("Part") |
| 313 | p.Name = "Herb2" |
| 314 | p.Size = Vector3.new(3, 0.2, 0.5) |
| 315 | p.CFrame = CFrame.new(-8.5, 0.64, -3) * CFrame.Angles(math.rad(0), math.rad(60), math.rad(0)) |
| 316 | p.BrickColor = BrickColor.new("Earth green") |
| 317 | p.Material = Enum.Material.Glacier |
| 318 | p.MaterialVariant = "2022 Stud" |
| 319 | p.Anchored = true |
| 320 | p.Parent = model |
| 321 | end |
| 322 | do |
| 323 | local p = Instance.new("Part") |
| 324 | p.Shape = Enum.PartType.Ball |
| 325 | p.Name = "Apple2" |
| 326 | p.Size = Vector3.new(2.5, 2, 2.5) |
| 327 | p.CFrame = CFrame.new(-8, 1, 4) |
| 328 | p.BrickColor = BrickColor.new("Bright red") |
| 329 | p.Material = Enum.Material.Glacier |
| 330 | p.MaterialVariant = "2022 Stud" |
| 331 | p.Anchored = true |
| 332 | p.Parent = model |
| 333 | end |
| 334 | do |
| 335 | local p = Instance.new("Part") |
| 336 | p.Name = "Onion2" |
| 337 | p.Size = Vector3.new(2, 1.5, 3) |
| 338 | p.CFrame = CFrame.new(-7, 1, 6) * CFrame.Angles(math.rad(0), math.rad(-45), math.rad(0)) |
| 339 | p.BrickColor = BrickColor.new("Royal purple") |
| 340 | p.Material = Enum.Material.Glacier |
| 341 | p.MaterialVariant = "2022 Stud" |
| 342 | p.Anchored = true |
| 343 | p.Parent = model |
| 344 | end |
| 345 | do |
| 346 | local p = Instance.new("Part") |
| 347 | p.Name = "Herb3" |
| 348 | p.Size = Vector3.new(4, 0.2, 0.5) |
| 349 | p.CFrame = CFrame.new(-9, 0.6, 5) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)) |
| 350 | p.BrickColor = BrickColor.new("Earth green") |
| 351 | p.Material = Enum.Material.Glacier |
| 352 | p.MaterialVariant = "2022 Stud" |
| 353 | p.Anchored = true |
| 354 | p.Parent = model |
| 355 | end |
| 356 | do |
| 357 | local p = Instance.new("Part") |
| 358 | p.Name = "Herb4" |
| 359 | p.Size = Vector3.new(3, 0.2, 0.5) |
| 360 | p.CFrame = CFrame.new(-8.5, 0.64, 3) * CFrame.Angles(math.rad(0), math.rad(-60), math.rad(0)) |
| 361 | p.BrickColor = BrickColor.new("Earth green") |
| 362 | p.Material = Enum.Material.Glacier |
| 363 | p.MaterialVariant = "2022 Stud" |
| 364 | p.Anchored = true |
| 365 | p.Parent = model |
| 366 | end |
| 367 | do |
| 368 | local p = Instance.new("Part") |
| 369 | p.Shape = Enum.PartType.Ball |
| 370 | p.Name = "Apple3" |
| 371 | p.Size = Vector3.new(2, 1.8, 2) |
| 372 | p.CFrame = CFrame.new(8, 1, -3) |
| 373 | p.BrickColor = BrickColor.new("Bright red") |
| 374 | p.Material = Enum.Material.Glacier |
| 375 | p.MaterialVariant = "2022 Stud" |
| 376 | p.Anchored = true |
| 377 | p.Parent = model |
| 378 | end |
| 379 | do |
| 380 | local p = Instance.new("Part") |
| 381 | p.Name = "Onion3" |
| 382 | p.Size = Vector3.new(2.5, 1.5, 2) |
| 383 | p.CFrame = CFrame.new(9, 1, -5) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)) |
| 384 | p.BrickColor = BrickColor.new("Royal purple") |
| 385 | p.Material = Enum.Material.Glacier |
| 386 | p.MaterialVariant = "2022 Stud" |
| 387 | p.Anchored = true |
| 388 | p.Parent = model |
| 389 | end |
| 390 | do |
| 391 | local p = Instance.new("Part") |
| 392 | p.Name = "Herb5" |
| 393 | p.Size = Vector3.new(3.5, 0.2, 0.5) |
| 394 | p.CFrame = CFrame.new(10, 0.6, -4) * CFrame.Angles(math.rad(0), math.rad(-45), math.rad(0)) |
| 395 | p.BrickColor = BrickColor.new("Earth green") |
| 396 | p.Material = Enum.Material.Glacier |
| 397 | p.MaterialVariant = "2022 Stud" |
| 398 | p.Anchored = true |
| 399 | p.Parent = model |
| 400 | end |
| 401 | do |
| 402 | local p = Instance.new("Part") |
| 403 | p.Shape = Enum.PartType.Ball |
| 404 | p.Name = "Apple4" |
| 405 | p.Size = Vector3.new(2, 1.8, 2) |
| 406 | p.CFrame = CFrame.new(8, 1, 3) |
| 407 | p.BrickColor = BrickColor.new("Bright red") |
| 408 | p.Material = Enum.Material.Glacier |
| 409 | p.MaterialVariant = "2022 Stud" |
| 410 | p.Anchored = true |
| 411 | p.Parent = model |
| 412 | end |
| 413 | do |
| 414 | local p = Instance.new("Part") |
| 415 | p.Name = "Onion4" |
| 416 | p.Size = Vector3.new(2.5, 1.5, 2) |
| 417 | p.CFrame = CFrame.new(9, 1, 5) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)) |
| 418 | p.BrickColor = BrickColor.new("Royal purple") |
| 419 | p.Material = Enum.Material.Glacier |
| 420 | p.MaterialVariant = "2022 Stud" |
| 421 | p.Anchored = true |
| 422 | p.Parent = model |
| 423 | end |
| 424 | do |
| 425 | local p = Instance.new("Part") |
| 426 | p.Name = "Herb6" |
| 427 | p.Size = Vector3.new(3.5, 0.2, 0.5) |
| 428 | p.CFrame = CFrame.new(10, 0.6, 4) * CFrame.Angles(math.rad(0), math.rad(45), math.rad(0)) |
| 429 | p.BrickColor = BrickColor.new("Earth green") |
| 430 | p.Material = Enum.Material.Glacier |
| 431 | p.MaterialVariant = "2022 Stud" |
| 432 | p.Anchored = true |
| 433 | p.Parent = model |
| 434 | end |
| 435 | do |
| 436 | local p = Instance.new("Part") |
| 437 | p.Name = "Onion5" |
| 438 | p.Size = Vector3.new(3, 1.5, 2) |
| 439 | p.CFrame = CFrame.new(0, 1, 6.5) * CFrame.Angles(math.rad(0), math.rad(15), math.rad(0)) |
| 440 | p.BrickColor = BrickColor.new("Royal purple") |
| 441 | p.Material = Enum.Material.Glacier |
| 442 | p.MaterialVariant = "2022 Stud" |
| 443 | p.Anchored = true |
| 444 | p.Parent = model |
| 445 | end |
| 446 | do |
| 447 | local p = Instance.new("Part") |
| 448 | p.Name = "Herb7" |
| 449 | p.Size = Vector3.new(4, 0.2, 0.5) |
| 450 | p.CFrame = CFrame.new(1, 0.6, 7) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(0)) |
| 451 | p.BrickColor = BrickColor.new("Earth green") |
| 452 | p.Material = Enum.Material.Glacier |
| 453 | p.MaterialVariant = "2022 Stud" |
| 454 | p.Anchored = true |
| 455 | p.Parent = model |
| 456 | end |
| 457 | do |
| 458 | local p = Instance.new("Part") |
| 459 | p.Name = "Onion6" |
| 460 | p.Size = Vector3.new(3, 1.5, 2) |
| 461 | p.CFrame = CFrame.new(0, 1, -6.5) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(0)) |
| 462 | p.BrickColor = BrickColor.new("Royal purple") |
| 463 | p.Material = Enum.Material.Glacier |
| 464 | p.MaterialVariant = "2022 Stud" |
| 465 | p.Anchored = true |
| 466 | p.Parent = model |
| 467 | end |
| 468 | do |
| 469 | local p = Instance.new("Part") |
| 470 | p.Name = "Herb8" |
| 471 | p.Size = Vector3.new(4, 0.2, 0.5) |
| 472 | p.CFrame = CFrame.new(1, 0.6, -7) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(0)) |
| 473 | p.BrickColor = BrickColor.new("Earth green") |
| 474 | p.Material = Enum.Material.Glacier |
| 475 | p.MaterialVariant = "2022 Stud" |
| 476 | p.Anchored = true |
| 477 | p.Parent = model |
| 478 | end |
| 479 | model.PrimaryPart = model:FindFirstChild("BodyBase") |
| 480 | print("RoastTurkey built: " .. #model:GetChildren() .. " parts") |