Advertisement
7nc6

Scuba Diving At Quill Lake Script

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