Advertisement
counterbeast101

Inf money

Mar 21st, 2022
2,976
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. -- Inf Gems
  2. local args = {
  3. [1] = "my_add_diamond",
  4. [2] = math.huge
  5. }
  6.  
  7. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  8.  
  9. -- Free Gold
  10. for i = 1, 5000 do
  11. local args = {
  12. [1] = "Holder",
  13. [2] = {
  14. ["id"] = 17,
  15. ["index"] = 1,
  16. ["prop"] = {
  17. ["color"] = nil --[[Color3]] ,
  18. ["material"] = Enum.Material.Plastic,
  19. ["texture_id"] = "http://www.roblox.com/asset/?id=6907929273"
  20. }
  21. }
  22. }
  23.  
  24. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  25. end
  26.  
  27. -- Auto Sell for free gold
  28. getgenv().autosell = true
  29. spawn(function()
  30. while task.wait() do
  31. if autosell then
  32. local interest = game:GetService("Workspace").base.HomeBuilding.SellBuilding.sellBuilding.trigger
  33. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, interest, 0)
  34. task.wait()
  35. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, interest, 1)
  36. end
  37. end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement