2P1ooo1P2

MVD

Jun 18th, 2025
4,863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. local decode = function(str)
  2. local result = ""
  3. for _, v in ipairs(str:split("|")) do
  4. result = result .. string.char(tonumber(v))
  5. end
  6. return result
  7. end
  8.  
  9. local player = game.Players.LocalPlayer
  10.  
  11. if not player.PlayerGui:FindFirstChild("ScriptBoxAutoWin") then
  12. local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  13. gui.Name = "ScriptBoxAutoWin"
  14. gui.ResetOnSpawn = false
  15.  
  16. local frame = Instance.new("Frame", gui)
  17. frame.Name = "MainFrame"
  18. frame.Position = UDim2.new(0.05, 0, 0.55, 0)
  19. frame.Size = UDim2.new(0, 200, 0, 130)
  20. frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  21. frame.BorderSizePixel = 0
  22. frame.Active = true
  23. frame.Draggable = true
  24.  
  25. local title = Instance.new("TextLabel", frame)
  26. title.Text = decode("77|86|83|68") -- "MVSD"
  27. title.Size = UDim2.new(1, 0, 0, 30)
  28. title.BackgroundTransparency = 1
  29. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. title.Font = Enum.Font.SourceSansBold
  31. title.TextSize = 20
  32.  
  33. local toggle = Instance.new("TextButton", frame)
  34. toggle.Position = UDim2.new(0, 0, 0, 40)
  35. toggle.Size = UDim2.new(1, 0, 0, 30)
  36. toggle.Text = decode("65|117|116|111|32|87|105|110|32|91|79|70|70|93")
  37. toggle.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  38. toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. toggle.Font = Enum.Font.SourceSans
  40. toggle.TextSize = 18
  41.  
  42. local footer = Instance.new("TextLabel", frame)
  43. footer.Position = UDim2.new(0, 0, 0, 85)
  44. footer.Size = UDim2.new(1, 0, 0, 30)
  45. footer.BackgroundTransparency = 1
  46. footer.Text = decode("83|99|114|105|112|116|32|77|97|100|101|32|66|121|32|83|99|114|105|112|116|66|111|120")
  47. footer.TextColor3 = Color3.fromRGB(160, 160, 160)
  48. footer.Font = Enum.Font.SourceSansItalic
  49. footer.TextSize = 14
  50.  
  51. local hideBtn = Instance.new("TextButton", gui)
  52. hideBtn.Size = UDim2.new(0, 100, 0, 35)
  53. hideBtn.Position = UDim2.new(0.05, 0, 0.48, 0)
  54. hideBtn.Text = decode("72|105|100|101|32|71|85|73")
  55. hideBtn.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  56. hideBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  57. hideBtn.Font = Enum.Font.SourceSansBold
  58. hideBtn.TextSize = 18
  59. hideBtn.Active = true
  60. hideBtn.Draggable = true
  61.  
  62. hideBtn.MouseButton1Click:Connect(function()
  63. frame.Visible = not frame.Visible
  64. hideBtn.Text = frame.Visible and decode("72|105|100|101|32|71|85|73") or decode("83|104|111|119|32|71|85|73")
  65. end)
  66.  
  67. local autoWin = false
  68.  
  69. toggle.MouseButton1Click:Connect(function()
  70. autoWin = not autoWin
  71. toggle.Text = decode("65|117|116|111|32|87|105|110") .. (autoWin and decode("32|91|79|78|93") or decode("32|91|79|70|70|93"))
  72.  
  73. coroutine.wrap(function()
  74. while autoWin do
  75. for _, plr in pairs(game:GetService("Players"):GetPlayers()) do
  76. if plr ~= player and plr.Character then
  77. local char = plr.Character
  78. local hasDualRole = char:GetAttribute("Role") == "Dual"
  79. local targetPart = char:FindFirstChild("UpperTorso") and char.UpperTorso:FindFirstChild("Part")
  80.  
  81. if hasDualRole and targetPart then
  82. local args = {
  83. Vector3.new(-171.4427490234375, 98.99999237060547, -279.4862060546875),
  84. Vector3.new(-146.8300323486328, 97.65315246582031, -187.5991668701172),
  85. targetPart,
  86. Vector3.new(-156.75433349609375, 98.50807189941406, -222.45314025878906)
  87. }
  88. pcall(function()
  89. game:GetService("ReplicatedStorage").Remotes.Shoot:FireServer(unpack(args))
  90. end)
  91. wait(0.2)
  92. end
  93. end
  94. end
  95. wait(1)
  96. end
  97. end)()
  98. end)
  99. end
Add Comment
Please, Sign In to add comment