Advertisement
RandomB_oi2

Test

Jan 4th, 2025 (edited)
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | Source Code | 0 0
  1. return {
  2.     PackInfo = {
  3.         PackName = "Game Content",
  4.         PackIcon = "rbxassetid://14546883954",
  5.         PackVersion = "1.0",
  6.     },
  7.  
  8.     Entities = {
  9.         {
  10.             ClassName = "ModItem1",
  11.             ClassType = "ItemStack",
  12.             BaseComponents = {
  13.                 {"StackSize", 64},
  14.                 {"Model", "Block"},
  15.                 {"IdleAnimation", "rbxassetid://13802834870"},
  16.                 {"StackContainerSize", 2,1},
  17.                 {"Rarity", "Uncommon"},
  18.             },
  19.         },
  20.         {
  21.             ClassName = "ModItem2",
  22.             ClassType = "ItemStack",
  23.             BaseComponents = {
  24.                 {"StackSize", 64},
  25.                 {"Model", "Block2"},
  26.                 {"IdleAnimation", "rbxassetid://13802834870"},
  27.                 {"StackContainerSize", 2,2},
  28.                 {"Rarity", "Rare"},
  29.             },
  30.         },
  31.     },
  32.  
  33.     Recipes = {
  34.         {
  35.             item = {"ModItem2",{Amount = 12}},
  36.             patternMap = {["#"] = {"ModItem1"}},
  37.             recipes = {
  38.                 {
  39.                     "# ",
  40.                     "# ",
  41.                     "# ",
  42.                 },
  43.             },
  44.         },
  45.     },
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement