Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- cash giver script for "scuba diving at quill lake" basically just gives you a custom artifact which you can sell
- local args = {
- [1] = game:GetService("Players").LocalPlayer.Inventory.Items,
- [2] = "Axolotl's Head",
- [3] = "A head of a rather large Axolotl Worth 50K",
- [4] = "6933895684",
- [5] = 50000 -- dont go over 99999 otherwise it will give you nothing since max cash is 99,999
- }
- game:GetService("ReplicatedStorage").CreateItem:FireServer(unpack(args))
- wait(1)
- game:GetService("ReplicatedStorage").SellAll:FireServer() -- remove this if you want to keep the item
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement