Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Op Utmm Scripts
- _________________________________________________________________________________________________________________________
- Get Any Weapon
- (game.Players.LocalPlayer.Weapons:GetChildren()v.Value = true end
- _________________________________________________________________________________________________________________________
- VERY Op GodMode Works ANY utmm game!
- 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)
- _________________________________________________________________________________________________________________________
- Teleport to any boss
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3141.36108, 203.574921, 11.435626, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- _________________________________________________________________________________________________________________________
- Insta-Kill ANY BOSS (Not sure if works for phase bosses)
- _G.toggle = true
- while _G.toggle and wait(0.7) do
- for i, v in pairs(game.Workspace:GetDescendants()) do
- if v.Name == "Head" and v.Parent.Parent.Name == "Stuff" then
- v:Destroy()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement