SCRIPT
SCRIPT
-- 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(40, 40, 40)
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 = "Choose"
title.TextColor3 = Color3.fromRGB(255, 255, 255)
title.Font = Enum.Font.SourceSansSemibold
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, 50, 50)
closeButton.Text = "X"
closeButton.Font = Enum.Font.SourceSansBold
closeButton.TextSize = 20
closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
closeButton.Parent = mainFrame
local closeCorner = Instance.new("UICorner")
closeCorner.CornerRadius = UDim.new(0, 10)
closeCorner.Parent = closeButton
closeButton.MouseButton1Click:Connect(function()
gui:Destroy()
end)
-- 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, 165, 0)
minimizeButton.Text = "-"
minimizeButton.Font = Enum.Font.SourceSansBold
minimizeButton.TextSize = 20
minimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
minimizeButton.Parent = mainFrame
-- Dragging Functionality
local dragging, dragStart, startPos
mainFrame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or
input.UserInputType == Enum.UserInputType.Touch then
dragging = true
dragStart = input.Position
startPos = mainFrame.Position
end
end)
mainFrame.InputChanged:Connect(function(input)
if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or
input.UserInputType == Enum.UserInputType.Touch) then
local delta = input.Position - dragStart
mainFrame.Position = UDim2.new(
startPos.X.Scale,
startPos.X.Offset + delta.X,
startPos.Y.Scale,
startPos.Y.Offset + delta.Y
)
end
end)
mainFrame.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or
input.UserInputType == Enum.UserInputType.Touch then
dragging = false
end
end)
-- 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 Suc", r6 = "https://pastebin.com/raw/FPu4e2Qh", r15 =
"https://pastebin.com/raw/DyPP2tAF"},
{name = "Jerk", r6 = "https://pastefy.app/wa3v2Vgm/raw", r15 =
"https://pastefy.app/YZoglOyJ/raw"}
}
button.MouseButton1Click:Connect(function()
if isR6 then
loadstring(game:HttpGet(buttonData.r6))()
else
loadstring(game:HttpGet(buttonData.r15))()
end
end)
end