Treasure Quest Script | WEAPON REACH UNAPTCHED

Created by grandpapapa

Features:

  • WEAPON REACH UNAPTCHED
  • DEV NOTES :

ADD THIS TO YOUR AUTOEXEC!

local gmt = getrawmetatable(game)
local nidx = gmt.__newindex

setreadonly(gmt, false)

gmt.__newindex = function(t, i, v)
 if t.ClassName == "FighterVisuals" and i == "Name" then
   return
 end
 return nidx(t, i, v)
end

When joined a game execute this

game.Players.LocalPlayer.Character.FighterVisuals["WEAPON NAME"].Hitbox.Size = Vector3.new(800,800,800)