All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Change cutter size

The Change cutter size code is below. Copy & inject it into the game. Enjoy!

[1.4update]Stone Miner Simulator - Increase size of the cutter
local plr = game.Players.LocalPlayer
local stag = '02' --change to your stage
for i,v in pairs(game:GetService("Workspace")['stage'..stag].character[plr.Name].thorn:GetChildren()) do
if v.Name == "collider" then
v.Size = Vector3.new(30, 5, 100) --change to what you want
--to understand size: sides, up/down(not useful), front/back
warn'edited'
end
end