Advertisement
WafflesYT

Treelands Script Lvl 7 Needed

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