Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local decode = function(str)
- local result = ""
- for _, v in ipairs(str:split("|")) do
- result = result .. string.char(tonumber(v))
- end
- return result
- end
- local player = game.Players.LocalPlayer
- if not player.PlayerGui:FindFirstChild("ScriptBoxAutoWin") then
- local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
- gui.Name = "ScriptBoxAutoWin"
- gui.ResetOnSpawn = false
- local frame = Instance.new("Frame", gui)
- frame.Name = "MainFrame"
- frame.Position = UDim2.new(0.05, 0, 0.55, 0)
- frame.Size = UDim2.new(0, 200, 0, 130)
- frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- frame.BorderSizePixel = 0
- frame.Active = true
- frame.Draggable = true
- local title = Instance.new("TextLabel", frame)
- title.Text = decode("77|86|83|68") -- "MVSD"
- title.Size = UDim2.new(1, 0, 0, 30)
- title.BackgroundTransparency = 1
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 20
- local toggle = Instance.new("TextButton", frame)
- toggle.Position = UDim2.new(0, 0, 0, 40)
- toggle.Size = UDim2.new(1, 0, 0, 30)
- toggle.Text = decode("65|117|116|111|32|87|105|110|32|91|79|70|70|93")
- toggle.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
- toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
- toggle.Font = Enum.Font.SourceSans
- toggle.TextSize = 18
- local footer = Instance.new("TextLabel", frame)
- footer.Position = UDim2.new(0, 0, 0, 85)
- footer.Size = UDim2.new(1, 0, 0, 30)
- footer.BackgroundTransparency = 1
- 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")
- footer.TextColor3 = Color3.fromRGB(160, 160, 160)
- footer.Font = Enum.Font.SourceSansItalic
- footer.TextSize = 14
- local hideBtn = Instance.new("TextButton", gui)
- hideBtn.Size = UDim2.new(0, 100, 0, 35)
- hideBtn.Position = UDim2.new(0.05, 0, 0.48, 0)
- hideBtn.Text = decode("72|105|100|101|32|71|85|73")
- hideBtn.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
- hideBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
- hideBtn.Font = Enum.Font.SourceSansBold
- hideBtn.TextSize = 18
- hideBtn.Active = true
- hideBtn.Draggable = true
- hideBtn.MouseButton1Click:Connect(function()
- frame.Visible = not frame.Visible
- hideBtn.Text = frame.Visible and decode("72|105|100|101|32|71|85|73") or decode("83|104|111|119|32|71|85|73")
- end)
- local autoWin = false
- toggle.MouseButton1Click:Connect(function()
- autoWin = not autoWin
- 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"))
- coroutine.wrap(function()
- while autoWin do
- for _, plr in pairs(game:GetService("Players"):GetPlayers()) do
- if plr ~= player and plr.Character then
- local char = plr.Character
- local hasDualRole = char:GetAttribute("Role") == "Dual"
- local targetPart = char:FindFirstChild("UpperTorso") and char.UpperTorso:FindFirstChild("Part")
- if hasDualRole and targetPart then
- local args = {
- Vector3.new(-171.4427490234375, 98.99999237060547, -279.4862060546875),
- Vector3.new(-146.8300323486328, 97.65315246582031, -187.5991668701172),
- targetPart,
- Vector3.new(-156.75433349609375, 98.50807189941406, -222.45314025878906)
- }
- pcall(function()
- game:GetService("ReplicatedStorage").Remotes.Shoot:FireServer(unpack(args))
- end)
- wait(0.2)
- end
- end
- end
- wait(1)
- end
- end)()
- end)
- end
Add Comment
Please, Sign In to add comment