95Roadkill

Roblox, Item Table.

Dec 12th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.80 KB | None | 0 0
  1. --[[
  2.     [Id] = {
  3.     Name = "";
  4.     Examin] = "";
  5.     UsedModel = "";
  6.     UsedImage "";
  7.     CanStack = "";
  8.     Tradable = "";
  9.     QuestItem = "";
  10.     CanBeEquiped = "";
  11.     EquipSlot = "RightHand,LeftHand,Chest,Legs,Feet,Head,Neck";
  12.    
  13. }
  14. --]]
  15.  
  16.  
  17.  
  18. local Items = {
  19.     [1] = {
  20.         Name = "Coins";
  21.         Examine = "Sweet glorious money!";
  22.         UsedModel = "Coins";
  23.         UsedImage = "http://www.roblox.com/asset/?id=259864245";
  24.         CanStack = true;
  25.         Tradeable= true;
  26.         QuestItem = false;
  27.         CanBeEquiped = false;
  28.     },
  29.     [2] = {
  30.         Name = "WoodenAxe";
  31.         Examine = "A simple axe that can cut wood from trees.";
  32.         UsedModel = "WoodenAxe";
  33.         UsedImage = "http://www.roblox.com/asset/?id=260504258";
  34.         CanStack = false;
  35.         Tradeable= true;
  36.         QuestItem = false;
  37.         CanBeEquiped = true;
  38.           EquipSlot = "RightHand";
  39.     },
  40.    
  41. }
  42.  
  43. return Items
Advertisement
Add Comment
Please, Sign In to add comment