Advertisement
jeideikwkwdjeidjeij

Op Utmm Scripts

Jan 23rd, 2024 (edited)
611
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 1
  1. Op Utmm Scripts
  2. _________________________________________________________________________________________________________________________
  3. Get Any Weapon
  4. (game.Players.LocalPlayer.Weapons:GetChildren()v.Value = true end
  5. _________________________________________________________________________________________________________________________
  6. VERY Op GodMode Works ANY utmm game!
  7.  
  8. local gameMetaTable = getrawmetatable(game)
  9.  
  10. setreadonly(gameMetaTable, false)
  11.  
  12. local oldMetaTable = gameMetaTable.__namecall
  13. local CallingScript = game:GetService("Players").LocalPlayer.PlayerGui.Handler
  14.  
  15. game.Players.LocalPlayer.PlayerGui.ChildAdded:Connect(function(item)
  16. if item.ClassName == "LocalScript" and item.Name == "Handler" then
  17. CallingScript = item
  18. end
  19. end)
  20.  
  21. gameMetaTable.__namecall = newcclosure(function(self, ...)
  22. local method = getnamecallmethod()
  23. local script = getcallingscript()
  24. local args = {...}
  25.  
  26. if method == "FireServer" and script == CallingScript then
  27. return false
  28. end
  29. return oldMetaTable(self,...)
  30. end)
  31. _________________________________________________________________________________________________________________________
  32. Teleport to any boss
  33. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3141.36108, 203.574921, 11.435626, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  34. _________________________________________________________________________________________________________________________
  35. Insta-Kill ANY BOSS (Not sure if works for phase bosses)
  36.  
  37. _G.toggle = true
  38.  
  39. while _G.toggle and wait(0.7) do
  40. for i, v in pairs(game.Workspace:GetDescendants()) do
  41. if v.Name == "Head" and v.Parent.Parent.Name == "Stuff" then
  42. v:Destroy()
  43. end
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement