Scriik
Scriik
-- Parent Setup:
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
-- Scroll Area (Now correctly inside the container below the arrow)
ScrollArea.Name = "ScrollArea"
ScrollArea.Parent = ScrollContainer
ScrollArea.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
ScrollArea.BorderSizePixel = 0
ScrollArea.Position = UDim2.new(0, 0, 0, 15) -- Positioned below UpArrow
ScrollArea.Size = UDim2.new(0, 300, 0, 390) -- Fits inside the container, leaving
space for arrows
ScrollArea.CanvasSize = UDim2.new(0, 0, 3, 0) -- Allows scrolling
ScrollArea.ScrollBarThickness = 17
ScrollArea.ScrollBarImageColor3 = Color3.fromRGB(205, 205, 205) -- Scroll bar color
ScrollArea.VerticalScrollBarInset = Enum.ScrollBarInset.ScrollBar
ScrollArea.ScrollBarImageTransparency = 0 -- Makes it fully visible
BottomArrow.MouseButton1Click:Connect(function()
ScrollArea.CanvasPosition = ScrollArea.CanvasPosition + Vector2.new(0, 50) --
Scroll down
end)