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 = "GalleonShip" |
| 18 | model.Parent = workspace |
| 19 | |
| 20 | local variants = { |
| 21 | ["Black"] = "2022 Weld", |
| 22 | ["Bright yellow"] = "2022 Stud", |
| 23 | ["Institutional white"] = "2022 Glue", |
| 24 | ["Nougat"] = "2022 Small Stud", |
| 25 | ["Pine Cone"] = "2022 Small Stud", |
| 26 | ["Reddish brown"] = "2022 Small Stud", |
| 27 | ["Toothpaste"] = "2022 Stud", |
| 28 | } |
| 29 | if next(needed) then |
| 30 | local ok, roots = pcall(game.GetObjects, game, "rbxassetid://13386676607") |
| 31 | if not ok then warn(roots) else |
| 32 | local tmp = Instance.new("Folder") |
| 33 | for _, r in ipairs(roots) do r.Parent = tmp end |
| 34 | for _, d in ipairs(tmp:GetDescendants()) do |
| 35 | if d:IsA("MaterialVariant") and needed[d.Name] then |
| 36 | d.Parent = MS |
| 37 | end |
| 38 | end |
| 39 | tmp:Destroy() |
| 40 | end |
| 41 | end |
| 42 | end |
| 43 | do |
| 44 | local p = Instance.new("Part") |
| 45 | p.Name = "HullBottom" |
| 46 | p.Size = Vector3.new(12, 4, 30) |
| 47 | p.CFrame = CFrame.new(0, 2, 0) |
| 48 | p.BrickColor = BrickColor.new("Pine Cone") |
| 49 | p.Material = Enum.Material.Glacier |
| 50 | p.MaterialVariant = "2022 Small Stud" |
| 51 | p.Anchored = true |
| 52 | p.Parent = model |
| 53 | end |
| 54 | do |
| 55 | local p = Instance.new("Part") |
| 56 | p.Name = "HullMid" |
| 57 | p.Size = Vector3.new(14, 2, 32) |
| 58 | p.CFrame = CFrame.new(0, 5, 0) |
| 59 | p.BrickColor = BrickColor.new("Pine Cone") |
| 60 | p.Material = Enum.Material.Glacier |
| 61 | p.MaterialVariant = "2022 Small Stud" |
| 62 | p.Anchored = true |
| 63 | p.Parent = model |
| 64 | end |
| 65 | do |
| 66 | local p = Instance.new("Part") |
| 67 | p.Name = "HullTop" |
| 68 | p.Size = Vector3.new(15, 2, 34) |
| 69 | p.CFrame = CFrame.new(0, 7, 0) |
| 70 | p.BrickColor = BrickColor.new("Pine Cone") |
| 71 | p.Material = Enum.Material.Glacier |
| 72 | p.MaterialVariant = "2022 Small Stud" |
| 73 | p.Anchored = true |
| 74 | p.Parent = model |
| 75 | end |
| 76 | do |
| 77 | local p = Instance.new("Part") |
| 78 | p.Name = "BowMid" |
| 79 | p.Size = Vector3.new(10, 2, 4) |
| 80 | p.CFrame = CFrame.new(0, 5, -18) |
| 81 | p.BrickColor = BrickColor.new("Pine Cone") |
| 82 | p.Material = Enum.Material.Glacier |
| 83 | p.MaterialVariant = "2022 Small Stud" |
| 84 | p.Anchored = true |
| 85 | p.Parent = model |
| 86 | end |
| 87 | do |
| 88 | local p = Instance.new("Part") |
| 89 | p.Name = "BowTop" |
| 90 | p.Size = Vector3.new(11, 2, 4) |
| 91 | p.CFrame = CFrame.new(0, 7, -19) |
| 92 | p.BrickColor = BrickColor.new("Pine Cone") |
| 93 | p.Material = Enum.Material.Glacier |
| 94 | p.MaterialVariant = "2022 Small Stud" |
| 95 | p.Anchored = true |
| 96 | p.Parent = model |
| 97 | end |
| 98 | do |
| 99 | local p = Instance.new("Part") |
| 100 | p.Name = "BowTip" |
| 101 | p.Size = Vector3.new(6, 2, 4) |
| 102 | p.CFrame = CFrame.new(0, 8, -22) |
| 103 | p.BrickColor = BrickColor.new("Pine Cone") |
| 104 | p.Material = Enum.Material.Glacier |
| 105 | p.MaterialVariant = "2022 Small Stud" |
| 106 | p.Anchored = true |
| 107 | p.Parent = model |
| 108 | end |
| 109 | do |
| 110 | local p = Instance.new("Part") |
| 111 | p.Name = "BowspritBase" |
| 112 | p.Size = Vector3.new(2, 2, 6) |
| 113 | p.CFrame = CFrame.new(0, 9, -25) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)) |
| 114 | p.BrickColor = BrickColor.new("Pine Cone") |
| 115 | p.Material = Enum.Material.Glacier |
| 116 | p.MaterialVariant = "2022 Small Stud" |
| 117 | p.Anchored = true |
| 118 | p.Parent = model |
| 119 | end |
| 120 | do |
| 121 | local p = Instance.new("Part") |
| 122 | p.Name = "SternBase" |
| 123 | p.Size = Vector3.new(14, 2, 8) |
| 124 | p.CFrame = CFrame.new(0, 9, 15) |
| 125 | p.BrickColor = BrickColor.new("Pine Cone") |
| 126 | p.Material = Enum.Material.Glacier |
| 127 | p.MaterialVariant = "2022 Small Stud" |
| 128 | p.Anchored = true |
| 129 | p.Parent = model |
| 130 | end |
| 131 | do |
| 132 | local p = Instance.new("Part") |
| 133 | p.Name = "SternMid" |
| 134 | p.Size = Vector3.new(12, 2, 6) |
| 135 | p.CFrame = CFrame.new(0, 11, 16) |
| 136 | p.BrickColor = BrickColor.new("Pine Cone") |
| 137 | p.Material = Enum.Material.Glacier |
| 138 | p.MaterialVariant = "2022 Small Stud" |
| 139 | p.Anchored = true |
| 140 | p.Parent = model |
| 141 | end |
| 142 | do |
| 143 | local p = Instance.new("Part") |
| 144 | p.Name = "SternTop" |
| 145 | p.Size = Vector3.new(10, 2, 4) |
| 146 | p.CFrame = CFrame.new(0, 13, 17) |
| 147 | p.BrickColor = BrickColor.new("Pine Cone") |
| 148 | p.Material = Enum.Material.Glacier |
| 149 | p.MaterialVariant = "2022 Small Stud" |
| 150 | p.Anchored = true |
| 151 | p.Parent = model |
| 152 | end |
| 153 | do |
| 154 | local p = Instance.new("Part") |
| 155 | p.Name = "MainDeck" |
| 156 | p.Size = Vector3.new(13, 0.4, 20) |
| 157 | p.CFrame = CFrame.new(0, 8.16, -5) |
| 158 | p.BrickColor = BrickColor.new("Nougat") |
| 159 | p.Material = Enum.Material.Glacier |
| 160 | p.MaterialVariant = "2022 Small Stud" |
| 161 | p.Anchored = true |
| 162 | p.Parent = model |
| 163 | end |
| 164 | do |
| 165 | local p = Instance.new("Part") |
| 166 | p.Name = "QuarterDeck" |
| 167 | p.Size = Vector3.new(13, 0.4, 10) |
| 168 | p.CFrame = CFrame.new(0, 10.16, 13) |
| 169 | p.BrickColor = BrickColor.new("Nougat") |
| 170 | p.Material = Enum.Material.Glacier |
| 171 | p.MaterialVariant = "2022 Small Stud" |
| 172 | p.Anchored = true |
| 173 | p.Parent = model |
| 174 | end |
| 175 | do |
| 176 | local p = Instance.new("Part") |
| 177 | p.Name = "PoopDeck" |
| 178 | p.Size = Vector3.new(9, 0.4, 4) |
| 179 | p.CFrame = CFrame.new(0, 14.2, 17) |
| 180 | p.BrickColor = BrickColor.new("Nougat") |
| 181 | p.Material = Enum.Material.Glacier |
| 182 | p.MaterialVariant = "2022 Small Stud" |
| 183 | p.Anchored = true |
| 184 | p.Parent = model |
| 185 | end |
| 186 | do |
| 187 | local p = Instance.new("Part") |
| 188 | p.Name = "ForeDeck" |
| 189 | p.Size = Vector3.new(9, 0.4, 6) |
| 190 | p.CFrame = CFrame.new(0, 9.2, -18) |
| 191 | p.BrickColor = BrickColor.new("Nougat") |
| 192 | p.Material = Enum.Material.Glacier |
| 193 | p.MaterialVariant = "2022 Small Stud" |
| 194 | p.Anchored = true |
| 195 | p.Parent = model |
| 196 | end |
| 197 | do |
| 198 | local p = Instance.new("Part") |
| 199 | p.Name = "TrimLower" |
| 200 | p.Size = Vector3.new(14.2, 0.4, 32.2) |
| 201 | p.CFrame = CFrame.new(0, 4, 0) |
| 202 | p.BrickColor = BrickColor.new("Reddish brown") |
| 203 | p.Material = Enum.Material.Glacier |
| 204 | p.MaterialVariant = "2022 Small Stud" |
| 205 | p.Anchored = true |
| 206 | p.Parent = model |
| 207 | end |
| 208 | do |
| 209 | local p = Instance.new("Part") |
| 210 | p.Name = "TrimUpper" |
| 211 | p.Size = Vector3.new(15.2, 0.4, 34.2) |
| 212 | p.CFrame = CFrame.new(0, 6, 0) |
| 213 | p.BrickColor = BrickColor.new("Reddish brown") |
| 214 | p.Material = Enum.Material.Glacier |
| 215 | p.MaterialVariant = "2022 Small Stud" |
| 216 | p.Anchored = true |
| 217 | p.Parent = model |
| 218 | end |
| 219 | do |
| 220 | local p = Instance.new("Part") |
| 221 | p.Name = "TrimStern1" |
| 222 | p.Size = Vector3.new(14.2, 0.4, 8.2) |
| 223 | p.CFrame = CFrame.new(0, 10, 16) |
| 224 | p.BrickColor = BrickColor.new("Reddish brown") |
| 225 | p.Material = Enum.Material.Glacier |
| 226 | p.MaterialVariant = "2022 Small Stud" |
| 227 | p.Anchored = true |
| 228 | p.Parent = model |
| 229 | end |
| 230 | do |
| 231 | local p = Instance.new("Part") |
| 232 | p.Name = "TrimStern2" |
| 233 | p.Size = Vector3.new(12.2, 0.4, 6.2) |
| 234 | p.CFrame = CFrame.new(0, 12, 17) |
| 235 | p.BrickColor = BrickColor.new("Reddish brown") |
| 236 | p.Material = Enum.Material.Glacier |
| 237 | p.MaterialVariant = "2022 Small Stud" |
| 238 | p.Anchored = true |
| 239 | p.Parent = model |
| 240 | end |
| 241 | do |
| 242 | local p = Instance.new("Part") |
| 243 | p.Name = "GalleryWindow1" |
| 244 | p.Size = Vector3.new(2, 1.5, 0.2) |
| 245 | p.CFrame = CFrame.new(-3, 10, 19.1) |
| 246 | p.BrickColor = BrickColor.new("Toothpaste") |
| 247 | p.Material = Enum.Material.Glacier |
| 248 | p.MaterialVariant = "2022 Stud" |
| 249 | p.Anchored = true |
| 250 | p.Parent = model |
| 251 | end |
| 252 | do |
| 253 | local p = Instance.new("Part") |
| 254 | p.Name = "GalleryWindow2" |
| 255 | p.Size = Vector3.new(2, 1.5, 0.2) |
| 256 | p.CFrame = CFrame.new(0, 10, 19.1) |
| 257 | p.BrickColor = BrickColor.new("Toothpaste") |
| 258 | p.Material = Enum.Material.Glacier |
| 259 | p.MaterialVariant = "2022 Stud" |
| 260 | p.Anchored = true |
| 261 | p.Parent = model |
| 262 | end |
| 263 | do |
| 264 | local p = Instance.new("Part") |
| 265 | p.Name = "GalleryWindow3" |
| 266 | p.Size = Vector3.new(2, 1.5, 0.2) |
| 267 | p.CFrame = CFrame.new(3, 10, 19.1) |
| 268 | p.BrickColor = BrickColor.new("Toothpaste") |
| 269 | p.Material = Enum.Material.Glacier |
| 270 | p.MaterialVariant = "2022 Stud" |
| 271 | p.Anchored = true |
| 272 | p.Parent = model |
| 273 | end |
| 274 | do |
| 275 | local p = Instance.new("Part") |
| 276 | p.Name = "GalleryTrim1" |
| 277 | p.Size = Vector3.new(12, 0.4, 0.2) |
| 278 | p.CFrame = CFrame.new(0, 11, 19.2) |
| 279 | p.BrickColor = BrickColor.new("Bright yellow") |
| 280 | p.Material = Enum.Material.Glacier |
| 281 | p.MaterialVariant = "2022 Stud" |
| 282 | p.Anchored = true |
| 283 | p.Parent = model |
| 284 | end |
| 285 | do |
| 286 | local p = Instance.new("Part") |
| 287 | p.Name = "GalleryWindow4" |
| 288 | p.Size = Vector3.new(1.5, 1.5, 0.2) |
| 289 | p.CFrame = CFrame.new(-2, 12, 19.6) |
| 290 | p.BrickColor = BrickColor.new("Toothpaste") |
| 291 | p.Material = Enum.Material.Glacier |
| 292 | p.MaterialVariant = "2022 Stud" |
| 293 | p.Anchored = true |
| 294 | p.Parent = model |
| 295 | end |
| 296 | do |
| 297 | local p = Instance.new("Part") |
| 298 | p.Name = "GalleryWindow5" |
| 299 | p.Size = Vector3.new(1.5, 1.5, 0.2) |
| 300 | p.CFrame = CFrame.new(2, 12, 19.6) |
| 301 | p.BrickColor = BrickColor.new("Toothpaste") |
| 302 | p.Material = Enum.Material.Glacier |
| 303 | p.MaterialVariant = "2022 Stud" |
| 304 | p.Anchored = true |
| 305 | p.Parent = model |
| 306 | end |
| 307 | do |
| 308 | local p = Instance.new("Part") |
| 309 | p.Name = "GalleryTrim2" |
| 310 | p.Size = Vector3.new(10, 0.4, 0.2) |
| 311 | p.CFrame = CFrame.new(0, 13, 19.7) |
| 312 | p.BrickColor = BrickColor.new("Bright yellow") |
| 313 | p.Material = Enum.Material.Glacier |
| 314 | p.MaterialVariant = "2022 Stud" |
| 315 | p.Anchored = true |
| 316 | p.Parent = model |
| 317 | end |
| 318 | do |
| 319 | local p = Instance.new("Part") |
| 320 | p.Shape = Enum.PartType.Cylinder |
| 321 | p.Name = "ForemastLower" |
| 322 | p.Size = Vector3.new(20, 1.5, 1.5) |
| 323 | p.CFrame = CFrame.new(0, 18, -12) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 324 | p.BrickColor = BrickColor.new("Reddish brown") |
| 325 | p.Material = Enum.Material.Glacier |
| 326 | p.MaterialVariant = "2022 Small Stud" |
| 327 | p.Anchored = true |
| 328 | p.Parent = model |
| 329 | end |
| 330 | do |
| 331 | local p = Instance.new("Part") |
| 332 | p.Shape = Enum.PartType.Cylinder |
| 333 | p.Name = "ForemastPlatform" |
| 334 | p.Size = Vector3.new(0.5, 6, 6) |
| 335 | p.CFrame = CFrame.new(0, 28, -12) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 336 | p.BrickColor = BrickColor.new("Reddish brown") |
| 337 | p.Material = Enum.Material.Glacier |
| 338 | p.MaterialVariant = "2022 Small Stud" |
| 339 | p.Anchored = true |
| 340 | p.Parent = model |
| 341 | end |
| 342 | do |
| 343 | local p = Instance.new("Part") |
| 344 | p.Shape = Enum.PartType.Cylinder |
| 345 | p.Name = "ForemastUpper" |
| 346 | p.Size = Vector3.new(20, 1, 1) |
| 347 | p.CFrame = CFrame.new(0, 38, -12) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 348 | p.BrickColor = BrickColor.new("Reddish brown") |
| 349 | p.Material = Enum.Material.Glacier |
| 350 | p.MaterialVariant = "2022 Small Stud" |
| 351 | p.Anchored = true |
| 352 | p.Parent = model |
| 353 | end |
| 354 | do |
| 355 | local p = Instance.new("Part") |
| 356 | p.Shape = Enum.PartType.Cylinder |
| 357 | p.Name = "MainmastLower" |
| 358 | p.Size = Vector3.new(30, 2, 2) |
| 359 | p.CFrame = CFrame.new(0, 23, 2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 360 | p.BrickColor = BrickColor.new("Reddish brown") |
| 361 | p.Material = Enum.Material.Glacier |
| 362 | p.MaterialVariant = "2022 Small Stud" |
| 363 | p.Anchored = true |
| 364 | p.Parent = model |
| 365 | end |
| 366 | do |
| 367 | local p = Instance.new("Part") |
| 368 | p.Shape = Enum.PartType.Cylinder |
| 369 | p.Name = "MainmastPlatform1" |
| 370 | p.Size = Vector3.new(0.5, 8, 8) |
| 371 | p.CFrame = CFrame.new(0, 38, 2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 372 | p.BrickColor = BrickColor.new("Reddish brown") |
| 373 | p.Material = Enum.Material.Glacier |
| 374 | p.MaterialVariant = "2022 Small Stud" |
| 375 | p.Anchored = true |
| 376 | p.Parent = model |
| 377 | end |
| 378 | do |
| 379 | local p = Instance.new("Part") |
| 380 | p.Shape = Enum.PartType.Cylinder |
| 381 | p.Name = "MainmastMid" |
| 382 | p.Size = Vector3.new(20, 1.5, 1.5) |
| 383 | p.CFrame = CFrame.new(0, 48, 2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 384 | p.BrickColor = BrickColor.new("Reddish brown") |
| 385 | p.Material = Enum.Material.Glacier |
| 386 | p.MaterialVariant = "2022 Small Stud" |
| 387 | p.Anchored = true |
| 388 | p.Parent = model |
| 389 | end |
| 390 | do |
| 391 | local p = Instance.new("Part") |
| 392 | p.Shape = Enum.PartType.Cylinder |
| 393 | p.Name = "MainmastPlatform2" |
| 394 | p.Size = Vector3.new(0.5, 5, 5) |
| 395 | p.CFrame = CFrame.new(0, 58, 2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 396 | p.BrickColor = BrickColor.new("Reddish brown") |
| 397 | p.Material = Enum.Material.Glacier |
| 398 | p.MaterialVariant = "2022 Small Stud" |
| 399 | p.Anchored = true |
| 400 | p.Parent = model |
| 401 | end |
| 402 | do |
| 403 | local p = Instance.new("Part") |
| 404 | p.Shape = Enum.PartType.Cylinder |
| 405 | p.Name = "MainmastUpper" |
| 406 | p.Size = Vector3.new(20, 0.96, 0.96) |
| 407 | p.CFrame = CFrame.new(0, 68, 2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 408 | p.BrickColor = BrickColor.new("Reddish brown") |
| 409 | p.Material = Enum.Material.Glacier |
| 410 | p.MaterialVariant = "2022 Small Stud" |
| 411 | p.Anchored = true |
| 412 | p.Parent = model |
| 413 | end |
| 414 | do |
| 415 | local p = Instance.new("Part") |
| 416 | p.Shape = Enum.PartType.Cylinder |
| 417 | p.Name = "MizzenmastLower" |
| 418 | p.Size = Vector3.new(16, 1.2, 1.2) |
| 419 | p.CFrame = CFrame.new(0, 20, 14) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 420 | p.BrickColor = BrickColor.new("Reddish brown") |
| 421 | p.Material = Enum.Material.Glacier |
| 422 | p.MaterialVariant = "2022 Small Stud" |
| 423 | p.Anchored = true |
| 424 | p.Parent = model |
| 425 | end |
| 426 | do |
| 427 | local p = Instance.new("Part") |
| 428 | p.Shape = Enum.PartType.Cylinder |
| 429 | p.Name = "MizzenmastPlatform" |
| 430 | p.Size = Vector3.new(0.5, 5, 5) |
| 431 | p.CFrame = CFrame.new(0, 28, 14) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 432 | p.BrickColor = BrickColor.new("Reddish brown") |
| 433 | p.Material = Enum.Material.Glacier |
| 434 | p.MaterialVariant = "2022 Small Stud" |
| 435 | p.Anchored = true |
| 436 | p.Parent = model |
| 437 | end |
| 438 | do |
| 439 | local p = Instance.new("Part") |
| 440 | p.Shape = Enum.PartType.Cylinder |
| 441 | p.Name = "MizzenmastUpper" |
| 442 | p.Size = Vector3.new(16, 0.8, 0.8) |
| 443 | p.CFrame = CFrame.new(0, 36, 14) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)) |
| 444 | p.BrickColor = BrickColor.new("Reddish brown") |
| 445 | p.Material = Enum.Material.Glacier |
| 446 | p.MaterialVariant = "2022 Small Stud" |
| 447 | p.Anchored = true |
| 448 | p.Parent = model |
| 449 | end |
| 450 | do |
| 451 | local p = Instance.new("Part") |
| 452 | p.Shape = Enum.PartType.Cylinder |
| 453 | p.Name = "BowspritPole" |
| 454 | p.Size = Vector3.new(16, 1, 1) |
| 455 | p.CFrame = CFrame.new(0, 14, -32) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(20)) |
| 456 | p.BrickColor = BrickColor.new("Reddish brown") |
| 457 | p.Material = Enum.Material.Glacier |
| 458 | p.MaterialVariant = "2022 Small Stud" |
| 459 | p.Anchored = true |
| 460 | p.Parent = model |
| 461 | end |
| 462 | do |
| 463 | local p = Instance.new("Part") |
| 464 | p.Shape = Enum.PartType.Cylinder |
| 465 | p.Name = "ForeYardLower" |
| 466 | p.Size = Vector3.new(24, 0.8, 0.8) |
| 467 | p.CFrame = CFrame.new(0, 22, -13) |
| 468 | p.BrickColor = BrickColor.new("Reddish brown") |
| 469 | p.Material = Enum.Material.Glacier |
| 470 | p.MaterialVariant = "2022 Small Stud" |
| 471 | p.Anchored = true |
| 472 | p.Parent = model |
| 473 | end |
| 474 | do |
| 475 | local p = Instance.new("Part") |
| 476 | p.Shape = Enum.PartType.Cylinder |
| 477 | p.Name = "ForeSailLower" |
| 478 | p.Size = Vector3.new(22, 1.46, 1.46) |
| 479 | p.CFrame = CFrame.new(0, 21.5, -13) |
| 480 | p.BrickColor = BrickColor.new("Institutional white") |
| 481 | p.Material = Enum.Material.Glacier |
| 482 | p.MaterialVariant = "2022 Glue" |
| 483 | p.Anchored = true |
| 484 | p.Parent = model |
| 485 | end |
| 486 | do |
| 487 | local p = Instance.new("Part") |
| 488 | p.Shape = Enum.PartType.Cylinder |
| 489 | p.Name = "ForeYardUpper" |
| 490 | p.Size = Vector3.new(16, 0.6, 0.6) |
| 491 | p.CFrame = CFrame.new(0, 34, -12.8) |
| 492 | p.BrickColor = BrickColor.new("Reddish brown") |
| 493 | p.Material = Enum.Material.Glacier |
| 494 | p.MaterialVariant = "2022 Small Stud" |
| 495 | p.Anchored = true |
| 496 | p.Parent = model |
| 497 | end |
| 498 | do |
| 499 | local p = Instance.new("Part") |
| 500 | p.Shape = Enum.PartType.Cylinder |
| 501 | p.Name = "ForeSailUpper" |
| 502 | p.Size = Vector3.new(14, 1.2, 1.2) |
| 503 | p.CFrame = CFrame.new(0, 33.6, -12.8) |
| 504 | p.BrickColor = BrickColor.new("Institutional white") |
| 505 | p.Material = Enum.Material.Glacier |
| 506 | p.MaterialVariant = "2022 Glue" |
| 507 | p.Anchored = true |
| 508 | p.Parent = model |
| 509 | end |
| 510 | do |
| 511 | local p = Instance.new("Part") |
| 512 | p.Shape = Enum.PartType.Cylinder |
| 513 | p.Name = "MainYardLower" |
| 514 | p.Size = Vector3.new(32, 1, 1) |
| 515 | p.CFrame = CFrame.new(0, 28, 0.8) |
| 516 | p.BrickColor = BrickColor.new("Reddish brown") |
| 517 | p.Material = Enum.Material.Glacier |
| 518 | p.MaterialVariant = "2022 Small Stud" |
| 519 | p.Anchored = true |
| 520 | p.Parent = model |
| 521 | end |
| 522 | do |
| 523 | local p = Instance.new("Part") |
| 524 | p.Shape = Enum.PartType.Cylinder |
| 525 | p.Name = "MainSailLower" |
| 526 | p.Size = Vector3.new(30, 1.96, 1.96) |
| 527 | p.CFrame = CFrame.new(0, 27.4, 0.8) |
| 528 | p.BrickColor = BrickColor.new("Institutional white") |
| 529 | p.Material = Enum.Material.Glacier |
| 530 | p.MaterialVariant = "2022 Glue" |
| 531 | p.Anchored = true |
| 532 | p.Parent = model |
| 533 | end |
| 534 | do |
| 535 | local p = Instance.new("Part") |
| 536 | p.Shape = Enum.PartType.Cylinder |
| 537 | p.Name = "MainYardMid" |
| 538 | p.Size = Vector3.new(22, 0.8, 0.8) |
| 539 | p.CFrame = CFrame.new(0, 44, 1) |
| 540 | p.BrickColor = BrickColor.new("Reddish brown") |
| 541 | p.Material = Enum.Material.Glacier |
| 542 | p.MaterialVariant = "2022 Small Stud" |
| 543 | p.Anchored = true |
| 544 | p.Parent = model |
| 545 | end |
| 546 | do |
| 547 | local p = Instance.new("Part") |
| 548 | p.Shape = Enum.PartType.Cylinder |
| 549 | p.Name = "MainSailMid" |
| 550 | p.Size = Vector3.new(20, 1.46, 1.46) |
| 551 | p.CFrame = CFrame.new(0, 43.5, 1) |
| 552 | p.BrickColor = BrickColor.new("Institutional white") |
| 553 | p.Material = Enum.Material.Glacier |
| 554 | p.MaterialVariant = "2022 Glue" |
| 555 | p.Anchored = true |
| 556 | p.Parent = model |
| 557 | end |
| 558 | do |
| 559 | local p = Instance.new("Part") |
| 560 | p.Shape = Enum.PartType.Cylinder |
| 561 | p.Name = "MainYardUpper" |
| 562 | p.Size = Vector3.new(14, 0.6, 0.6) |
| 563 | p.CFrame = CFrame.new(0, 62, 1.2) |
| 564 | p.BrickColor = BrickColor.new("Reddish brown") |
| 565 | p.Material = Enum.Material.Glacier |
| 566 | p.MaterialVariant = "2022 Small Stud" |
| 567 | p.Anchored = true |
| 568 | p.Parent = model |
| 569 | end |
| 570 | do |
| 571 | local p = Instance.new("Part") |
| 572 | p.Shape = Enum.PartType.Cylinder |
| 573 | p.Name = "MainSailUpper" |
| 574 | p.Size = Vector3.new(12, 1, 1) |
| 575 | p.CFrame = CFrame.new(0, 61.6, 1.2) |
| 576 | p.BrickColor = BrickColor.new("Institutional white") |
| 577 | p.Material = Enum.Material.Glacier |
| 578 | p.MaterialVariant = "2022 Glue" |
| 579 | p.Anchored = true |
| 580 | p.Parent = model |
| 581 | end |
| 582 | do |
| 583 | local p = Instance.new("Part") |
| 584 | p.Shape = Enum.PartType.Cylinder |
| 585 | p.Name = "MizzenYard" |
| 586 | p.Size = Vector3.new(20, 0.6, 0.6) |
| 587 | p.CFrame = CFrame.new(0, 24, 14) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)) |
| 588 | p.BrickColor = BrickColor.new("Reddish brown") |
| 589 | p.Material = Enum.Material.Glacier |
| 590 | p.MaterialVariant = "2022 Small Stud" |
| 591 | p.Anchored = true |
| 592 | p.Parent = model |
| 593 | end |
| 594 | do |
| 595 | local p = Instance.new("Part") |
| 596 | p.Shape = Enum.PartType.Cylinder |
| 597 | p.Name = "MizzenSail" |
| 598 | p.Size = Vector3.new(18, 1.16, 1.16) |
| 599 | p.CFrame = CFrame.new(0, 23.5, 14) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)) |
| 600 | p.BrickColor = BrickColor.new("Institutional white") |
| 601 | p.Material = Enum.Material.Glacier |
| 602 | p.MaterialVariant = "2022 Glue" |
| 603 | p.Anchored = true |
| 604 | p.Parent = model |
| 605 | end |
| 606 | do |
| 607 | local p = Instance.new("Part") |
| 608 | p.Name = "RiggingMainFore1" |
| 609 | p.Size = Vector3.new(0.2, 20, 0.2) |
| 610 | p.CFrame = CFrame.new(0.04, 30, -5) * CFrame.Angles(math.rad(-35), math.rad(0), math.rad(0)) |
| 611 | p.BrickColor = BrickColor.new("Black") |
| 612 | p.Material = Enum.Material.Glacier |
| 613 | p.MaterialVariant = "2022 Weld" |
| 614 | p.Anchored = true |
| 615 | p.Parent = model |
| 616 | end |
| 617 | do |
| 618 | local p = Instance.new("Part") |
| 619 | p.Name = "RiggingMainFore2" |
| 620 | p.Size = Vector3.new(0.2, 20, 0.2) |
| 621 | p.CFrame = CFrame.new(0, 40, -5) * CFrame.Angles(math.rad(-45), math.rad(0), math.rad(0)) |
| 622 | p.BrickColor = BrickColor.new("Black") |
| 623 | p.Material = Enum.Material.Glacier |
| 624 | p.MaterialVariant = "2022 Weld" |
| 625 | p.Anchored = true |
| 626 | p.Parent = model |
| 627 | end |
| 628 | do |
| 629 | local p = Instance.new("Part") |
| 630 | p.Name = "RiggingMainStern1" |
| 631 | p.Size = Vector3.new(0.2, 18, 0.2) |
| 632 | p.CFrame = CFrame.new(0.04, 30, 9) * CFrame.Angles(math.rad(35), math.rad(0), math.rad(0)) |
| 633 | p.BrickColor = BrickColor.new("Black") |
| 634 | p.Material = Enum.Material.Glacier |
| 635 | p.MaterialVariant = "2022 Weld" |
| 636 | p.Anchored = true |
| 637 | p.Parent = model |
| 638 | end |
| 639 | do |
| 640 | local p = Instance.new("Part") |
| 641 | p.Name = "RiggingMainStern2" |
| 642 | p.Size = Vector3.new(0.2, 20, 0.2) |
| 643 | p.CFrame = CFrame.new(0, 40, 9) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)) |
| 644 | p.BrickColor = BrickColor.new("Black") |
| 645 | p.Material = Enum.Material.Glacier |
| 646 | p.MaterialVariant = "2022 Weld" |
| 647 | p.Anchored = true |
| 648 | p.Parent = model |
| 649 | end |
| 650 | do |
| 651 | local p = Instance.new("Part") |
| 652 | p.Name = "RiggingForeBow" |
| 653 | p.Size = Vector3.new(0.2, 24, 0.2) |
| 654 | p.CFrame = CFrame.new(0, 20, -22) * CFrame.Angles(math.rad(-45), math.rad(0), math.rad(0)) |
| 655 | p.BrickColor = BrickColor.new("Black") |
| 656 | p.Material = Enum.Material.Glacier |
| 657 | p.MaterialVariant = "2022 Weld" |
| 658 | p.Anchored = true |
| 659 | p.Parent = model |
| 660 | end |
| 661 | do |
| 662 | local p = Instance.new("Part") |
| 663 | p.Name = "SmallBoatHull" |
| 664 | p.Size = Vector3.new(4, 1.5, 8) |
| 665 | p.CFrame = CFrame.new(-15, 1, -10) |
| 666 | p.BrickColor = BrickColor.new("Pine Cone") |
| 667 | p.Material = Enum.Material.Glacier |
| 668 | p.MaterialVariant = "2022 Small Stud" |
| 669 | p.Anchored = true |
| 670 | p.Parent = model |
| 671 | end |
| 672 | do |
| 673 | local p = Instance.new("Part") |
| 674 | p.Name = "SmallBoatCabin" |
| 675 | p.Size = Vector3.new(3, 1.5, 4) |
| 676 | p.CFrame = CFrame.new(-15, 2.5, -9) |
| 677 | p.BrickColor = BrickColor.new("Reddish brown") |
| 678 | p.Material = Enum.Material.Glacier |
| 679 | p.MaterialVariant = "2022 Small Stud" |
| 680 | p.Anchored = true |
| 681 | p.Parent = model |
| 682 | end |
| 683 | do |
| 684 | local p = Instance.new("Part") |
| 685 | p.Name = "SmallBoatRoof" |
| 686 | p.Size = Vector3.new(3.5, 0.5, 4.5) |
| 687 | p.CFrame = CFrame.new(-15, 3.5, -9) |
| 688 | p.BrickColor = BrickColor.new("Pine Cone") |
| 689 | p.Material = Enum.Material.Glacier |
| 690 | p.MaterialVariant = "2022 Small Stud" |
| 691 | p.Anchored = true |
| 692 | p.Parent = model |
| 693 | end |
| 694 | model.PrimaryPart = model:FindFirstChild("HullMid") |
| 695 | print("GalleonShip built: " .. #model:GetChildren() .. " parts") |