Cakey3101

GAG Plant Config 2

Aug 9th, 2025
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | Source Code | 0 0
  1. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  2.  
  3. local BaseWeight = 5
  4.  
  5. local Config = {
  6.     ["Carrot Seed"] = {
  7.         Name = "Carrot Tree", -- Name Of Tree
  8.         GrowthTime = 10, -- Seconds To Grow
  9.         Price = 10, -- Price Of Seed In Sheckles
  10.         RobuxPrice = 7, -- Price Of Seed In Robux
  11.         Stock = math.huge, -- Stock Amount (Currently Infinite)
  12.         Image = "rbxassetid://80191270546599", -- ImageID (Icon For Carrot Seed)
  13.         --LogTool = ReplicatedStorage.LogTools["Carrot Seed"], -- Tool When Harvested
  14.         PricePerKG = 5, -- Sheckles Per KG
  15.         ChanceToBeInStock = 1.0, -- 1.0 = 100%
  16.         BoostedChance = 1.0,
  17.     },
  18. }
  19.  
  20. Config.OrderedKeys = {
  21.     "Carrot Seed"
  22. }
  23.  
  24. Config.BaseWeight = BaseWeight
  25.  
  26. return Config
Tags: robloxstudio
Advertisement
Add Comment
Please, Sign In to add comment