TEXT 170
Stone Miner Simulator Script By venuslock on 20th January 2023 01:57:23 PM
  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)

Texbin is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.