local ReplicatedStorage = game:GetService("ReplicatedStorage") local BaseWeight = 5 local Config = { ["Carrot Seed"] = { Name = "Carrot Tree", -- Name Of Tree GrowthTime = 10, -- Seconds To Grow Price = 10, -- Price Of Seed In Sheckles RobuxPrice = 7, -- Price Of Seed In Robux Stock = math.huge, -- Stock Amount (Currently Infinite) Image = "rbxassetid://80191270546599", -- ImageID (Icon For Carrot Seed) --LogTool = ReplicatedStorage.LogTools["Carrot Seed"], -- Tool When Harvested PricePerKG = 5, -- Sheckles Per KG ChanceToBeInStock = 1.0, -- 1.0 = 100% BoostedChance = 1.0, }, } Config.OrderedKeys = { "Carrot Seed" } Config.BaseWeight = BaseWeight return Config