Harked V2
Harked V2
LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local isR6 = character:FindFirstChild("Torso") ~= nil
-- Notification Function
local function showNotification(message)
local notificationGui = Instance.new("ScreenGui")
notificationGui.Name = "NotificationGui"
notificationGui.Parent = game.CoreGui
notificationFrame.BackgroundTransparency = 1
textLabel.TextTransparency = 1
game:GetService("TweenService"):Create(
notificationFrame,
TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.Out),
{BackgroundTransparency = 0}
):Play()
game:GetService("TweenService"):Create(
textLabel,
TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.Out),
{TextTransparency = 0}
):Play()
task.delay(5, function()
game:GetService("TweenService"):Create(
notificationFrame,
TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.In),
{BackgroundTransparency = 1}
):Play()
game:GetService("TweenService"):Create(
textLabel,
TweenInfo.new(0.5, Enum.EasingStyle.Quint, Enum.EasingDirection.In),
{TextTransparency = 1}
):Play()
task.delay(0.5, function()
notificationGui:Destroy()
end)
end)
end
-- Main Frame
local mainFrame = Instance.new("Frame")
mainFrame.Size = UDim2.new(0, 300, 0, 300)
mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
mainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
mainFrame.BackgroundColor3 = Color3.fromRGB(80, 80, 255) -- Deep Blue
mainFrame.BorderSizePixel = 0
mainFrame.Parent = gui
-- Title
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, -60, 0, 30)
title.Position = UDim2.new(0, 10, 0, 0)
title.BackgroundTransparency = 1
title.Text = "Script List (lol)"
title.TextColor3 = Color3.fromRGB(255, 255, 255)
title.Font = Enum.Font.SourceSansBold
title.TextSize = 24
title.TextXAlignment = Enum.TextXAlignment.Left
title.Parent = mainFrame
-- Close Button
local closeButton = Instance.new("TextButton")
closeButton.Size = UDim2.new(0, 30, 0, 30)
closeButton.Position = UDim2.new(1, -40, 0, 0)
closeButton.BackgroundColor3 = Color3.fromRGB(255, 100, 100) -- Red
closeButton.Text = "X"
closeButton.Font = Enum.Font.SourceSansBold
closeButton.TextSize = 20
closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
closeButton.Parent = mainFrame
-- Minimize Button
local minimizeButton = Instance.new("TextButton")
minimizeButton.Size = UDim2.new(0, 30, 0, 30)
minimizeButton.Position = UDim2.new(1, -80, 0, 0)
minimizeButton.BackgroundColor3 = Color3.fromRGB(255, 200, 0) -- Orange
minimizeButton.Text = "-"
minimizeButton.Font = Enum.Font.SourceSansBold
minimizeButton.TextSize = 20
minimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
minimizeButton.Parent = mainFrame
-- Scrolling Frame
local scrollingFrame = Instance.new("ScrollingFrame")
scrollingFrame.Size = UDim2.new(1, -20, 1, -50)
scrollingFrame.Position = UDim2.new(0, 10, 0, 40)
scrollingFrame.BackgroundTransparency = 1
scrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 300)
scrollingFrame.ScrollBarThickness = 6
scrollingFrame.Parent = mainFrame
-- Buttons Data
local buttons = {
{name = "Bang V2", r6 = "https://pastebin.com/raw/aPSHMV6K", r15 =
"https://pastebin.com/raw/1ePMTt9n"},
{name = "Get Banged", r6 = "https://pastebin.com/raw/zHbw7ND1", r15 =
"https://pastebin.com/raw/7hvcjDnW"},
{name = "Suck", r6 = "https://pastebin.com/raw/SymCfnAW", r15 =
"https://pastebin.com/raw/p8yxRfr4"},
{name = "Get Sucked", r6 = "https://pastebin.com/raw/FPu4e2Qh", r15 =
"https://pastebin.com/raw/DyPP2tAF"},
{name = "Jerk Off", r6 = "https://pastefy.app/wa3v2Vgm/raw", r15 =
"https://pastefy.app/YZoglOyJ/raw"}
}
for _, buttonData in ipairs(buttons) do
local button = Instance.new("TextButton")
button.Size = UDim2.new(0.8, 0, 0, 40)
button.BackgroundColor3 = Color3.fromRGB(math.random(100, 255),
math.random(100, 255), math.random(100, 255)) -- Random colors
button.Text = buttonData.name
button.Font = Enum.Font.SourceSansBold
button.TextSize = 20
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.Parent = scrollingFrame
button.MouseButton1Click:Connect(function()
if isR6 then
loadstring(game:HttpGet(buttonData.r6))()
else
loadstring(game:HttpGet(buttonData.r15))()
end
end)
end