local button = Instance.new("TextButton")
  button.Text = "Spam: OFF"
  button.Size = UDim2.new(1, -10, 1, -10)
  button.Position = UDim2.new(0, 10, 0, 10)
  button.BackgroundColor3 = Color3.new(0, 0, 0)
  button.BorderColor3 = Color3.new(0, 0, 0)
  button.BorderSizePixel = 2
  button.Font = Enum.Font.SourceSans
  button.TextColor3 = Color3.new(255, 0, 0)
  button.TextSize = 15
  button.Parent = frame
  
  local activated = false
  
  local function toggle()
    activated = not activated
    button.Text = activated and "Spam: ON" or "Spam: OFF"
    while activated do
      local args = {
        [1] = 1.5,
        [2] = CFrame.new(-254.2939910888672, 112.13581848144531, -119.27256774902344) * CFrame.Angles(-2.029526710510254, 0.5662040710449219, 2.314905881881714),
        [3] = {
          ["2617721424"] = Vector3.new(-273.400146484375, -724.8031005859375, -20.92414093017578),
        },
        [4] = {
          [1] = 910,
          [2] = 154
        }
      }
      game:GetService("ReplicatedStorage").Remotes.ParryAttempt:FireServer(unpack(args))
      game:GetService("RunService").Heartbeat:Wait(0.000001)
    end
  end
  
  button.MouseButton1Click:Connect(toggle)
  
  -- Adicionar keybind "E" para ativar o botão
  local UserInputService = game:GetService("UserInputService")
  local eKeyPressed = false
  
  UserInputService.InputBegan:Connect(function(input, gameProcessedEvent)
    if input.KeyCode == Enum.KeyCode.E and not gameProcessedEvent then
      eKeyPressed = true
      toggle()
    end
  end)
  
  UserInputService.InputEnded:Connect(function(input, gameProcessedEvent)
    if input.KeyCode == Enum.KeyCode.E then
      eKeyPressed = false
    end
  end)
  
  local NotificationHolder = loadstring(game:HttpGet("https://[Log in to view URL]"))()
  local Notification = loadstring(game:HttpGet("https://[Log in to view URL]"))()
  
  Notification:Notify(
    {Title = "Private Hub beta", Description = "The best of all scripts   /   By: Zinkz"},
    {OutlineColor = Color3.fromRGB(80, 80, 80), Time = 10, Type = "option"},
    {Image = "http://[Log in to view URL]", ImageColor = Color3.fromRGB(255, 84, 84), Callback = function(State) print(tostring(State)) end}
  )
end

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: