Advertisement
Upscalefanatic3

Treelands Script

Apr 8th, 2017
5,486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Apple Amount Script:
  2.  
  3. --Combine 2 apples in one bin then run
  4. local xd = game.Workspace.Fruits
  5. xd.Apple.CombinedValue.Value = 2000000000
  6.  
  7.  
  8.  
  9. Fruit into Crystals Script:
  10.  
  11. --Put fruits to sell into sell bin then they'll sell as purple crystals after running this
  12. local desiredFruit = "Purple Crystal"
  13. for i, v in pairs(game.Workspace.Fruits:GetChildren()) do
  14. v.Tooltip.Value = desiredFruit
  15. v.Name = desiredFruit
  16. v:Clone().Parent = game.Workspace.Fruits
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement