MIC UP Script | ENTER WITHOUT VC ENABLED

Created by RobloxFan777back

Features:

local mt = getrawmetatable(game)
local namecall = mt.__namecall
setreadonly(mt, false)
mt.__namecall = newcclosure(function(self, ...)
   if getnamecallmethod() == "IsVoiceEnabledForUserIdAsync" then
       return true;
   end
   return namecall(self, ...)
end)
setreadonly(mt, true)
  • enter vip room without purchasing
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
   if v:IsA("Part") and v.Name == "VIP Door" or v.Name == "ProximityAndTouchGamepassPurchase" then
       v:Destroy()
   end
end