The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Undertale Max Level Method script pastebin roblox
By Undertale Max Level Method on 2024-09-22 08:00 am | Syntax: LUA | Views: 8



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. ----- godmode
  2. local gameMetaTable = getrawmetatable(game)
  3.  
  4. setreadonly(gameMetaTable, false)
  5.  
  6. local oldMetaTable = gameMetaTable.__namecall
  7. local CallingScript = game:GetService("Players").LocalPlayer.PlayerGui.Handler
  8.  
  9. game.Players.LocalPlayer.PlayerGui.ChildAdded:Connect(function(item)
  10.    if item.ClassName == "LocalScript" and item.Name == "Handler" then
  11.        CallingScript = item
  12.    end
  13. end)
  14.  
  15. gameMetaTable.__namecall = newcclosure(function(self, ...)
  16.    local method = getnamecallmethod()
  17.    local script = getcallingscript()
  18.    local args = {...}
  19.  
  20.    if method == "FireServer" and script == CallingScript  then
  21.        return false
  22.    end
  23.    return oldMetaTable(self,...)
  24. end)
  25.  
  26.  
  27. ---- Max level
  28. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3141.36108, 203.574921, 11.435626, 0, 0, 1, 0, 1, -0, -1, 0, 0)



  • Recent Roblox Scripts