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 Undertale Max Level Method

The Undertale Max Level Method code is below. Copy & inject it into the game. Enjoy!

----- godmode 
local gameMetaTable = getrawmetatable(game)

setreadonly(gameMetaTable, false)

local oldMetaTable = gameMetaTable.__namecall
local CallingScript = game:GetService("Players").LocalPlayer.PlayerGui.Handler

game.Players.LocalPlayer.PlayerGui.ChildAdded:Connect(function(item)
   if item.ClassName == "LocalScript" and item.Name == "Handler" then
       CallingScript = item
   end
end)

gameMetaTable.__namecall = newcclosure(function(self, ...)
   local method = getnamecallmethod()
   local script = getcallingscript()
   local args = {...}

   if method == "FireServer" and script == CallingScript  then
       return false
   end
   return oldMetaTable(self,...)
end)


---- Max level 
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3141.36108, 203.574921, 11.435626, 0, 0, 1, 0, 1, -0, -1, 0, 0)