-- Close Button closeBtn.Name = "CloseBtn" closeBtn.Size = UDim2.new(0, 30, 1, 0) closeBtn.Position = UDim2.new(1, -35, 0, 0) closeBtn.BackgroundTransparency = 1 closeBtn.Text = "✕" closeBtn.TextColor3 = Color3.fromRGB(255, 100, 100) closeBtn.TextSize = 18 closeBtn.Font = Enum.Font.GothamBold closeBtn.Parent = topBar
-- Function to update canvas size local function updateCanvas() local contentHeight = 0 for _, child in ipairs(scrollFrame:GetChildren()) do if child:IsA("TextButton") or child:IsA("TextLabel") then contentHeight = contentHeight + child.Size.Y.Offset + 8 end end scrollFrame.CanvasSize = UDim2.new(0, 0, 0, contentHeight + 20) end
-- Bring to me createButton("📦 BRING TO ME", Color3.fromRGB(150, 100, 200), function() if selectedPlayer and selectedPlayer.Character and selectedPlayer.Character:FindFirstChild("HumanoidRootPart") and LocalPlayer.Character then local myPos = LocalPlayer.Character.HumanoidRootPart.Position selectedPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myPos + Vector3.new(0, 3, 0)) end end)
local uiList = Instance.new("UIListLayout") uiList.Padding = UDim.new(0, 8) uiList.SortOrder = Enum.SortOrder.LayoutOrder uiList.Parent = scrollFrame
createHeader("🎮 MISC ABUSE")