Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Apple Amount Script:
- --Combine 2 apples in one bin then run
- local xd = game.Workspace.Fruits
- xd.Apple.CombinedValue.Value = 2000000000
- Fruit into Crystals Script:
- --Put fruits to sell into sell bin then they'll sell as purple crystals after running this
- local desiredFruit = "Purple Crystal"
- for i, v in pairs(game.Workspace.Fruits:GetChildren()) do
- v.Tooltip.Value = desiredFruit
- v.Name = desiredFruit
- v:Clone().Parent = game.Workspace.Fruits
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement