-- CopyText GUI (small + minimize) — FIXED: items INSIDE each category CRACK FIQQZR7 -- Paste as LocalScript in StarterPlayerScripts or StarterGui game:GetService("StarterGui"):SetCore("SendNotification", { duration = 3; Title = "Leak Dyton Script"; Text = "By dr.Arkhan"; }) local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- cleanup old gui jika ada yang nyangkut for _,c in pairs(playerGui:GetChildren()) do if c.Name == "CopyCategoriesGUI" then c:Destroy() end end -- helper ctor local function New(class, props) local o = Instance.new(class) if props then for k,v in pairs(props) do o[k] = v end end return o end -- main screen gui local screenGui = New("ScreenGui", {Parent = playerGui, Name = "CopyCategoriesGUI", ResetOnSpawn = false}) -- main frame (small, phone friendly) local main = New("Frame", { Parent = screenGui, Name = "Main", Size = UDim2.new(0, 260, 0, 320), Position = UDim2.new(0.5, -130, 0.5, -160), BackgroundColor3 = Color3.fromRGB(30, 0, 0), BorderSizePixel = 0, Active = true, }) New("UICorner", {Parent = main, CornerRadius = UDim.new(0,10)}) New("UIStroke", {Parent = main, Color = Color3.fromRGB(160,20,20), Thickness = 2}) -- title / drag bar local bar = New("Frame", { Parent = main, Size = UDim2.new(1,0,0,28), BackgroundColor3 = Color3.fromRGB(140,10,10), }) New("UICorner", {Parent = bar, CornerRadius = UDim.new(0,8)}) local title = New("TextLabel", { Parent = bar, Size = UDim2.new(1,-40,1,0), Position = UDim2.new(0,8,0,0), BackgroundTransparency = 1, Text = "DYTON|REPORT PLAYER | UPDATE!", TextColor3 = Color3.fromRGB(255,255,255), Font = Enum.Font.GothamBold, TextSize = 14, TextXAlignment = Enum.TextXAlignment.Left, }) -- minimize button local minBtn = New("TextButton", { Parent = bar, Size = UDim2.new(0,34,0,22), Position = UDim2.new(1,-38,0,3), BackgroundColor3 = Color3.fromRGB(120,10,10), Text = "-", TextColor3 = Color3.fromRGB(255,255,255), Font = Enum.Font.GothamBold, TextSize = 20, }) New("UICorner", {Parent = minBtn, CornerRadius = UDim.new(0,6)}) local minimized = false minBtn.MouseButton1Click:Connect(function() minimized = not minimized if minimized then main.Size = UDim2.new(0,260,0,28) else main.Size = UDim2.new(0,260,0,320) end end) -- scrolling area local scroll = New("ScrollingFrame", { Parent = main, Name = "Scroll", Position = UDim2.new(0,6,0,32), Size = UDim2.new(1,-12,1,-40), BackgroundTransparency = 1, ScrollBarThickness = 6, CanvasSize = UDim2.new(0,0,0,0) }) local masterLayout = New("UIListLayout", {Parent = scroll, SortOrder = Enum.SortOrder.LayoutOrder, Padding = UDim.new(0,8)}) New("UIPadding", {Parent = scroll, PaddingTop = UDim.new(0,6), PaddingBottom = UDim.new(0,6), PaddingLeft = UDim.new(0,6), PaddingRight = UDim.new(0,6)}) -- helper: create category local function CreateCategory(titleText) local catRoot = New("Frame", { Parent = scroll, Size = UDim2.new(1, 0, 0, 30), BackgroundTransparency = 1, }) catRoot.Name = "Category_" .. titleText:gsub("%s","_") local catTitle = New("TextLabel", { Parent = catRoot, Size = UDim2.new(1, 0, 0, 26), BackgroundColor3 = Color3.fromRGB(60, 8, 8), Text = " " .. titleText, TextColor3 = Color3.fromRGB(255, 130, 130), Font = Enum.Font.GothamBold, TextSize = 13, TextXAlignment = Enum.TextXAlignment.Left, }) New("UICorner", {Parent = catTitle, CornerRadius = UDim.new(0,6)}) local container = New("Frame", { Parent = catRoot, Name = "Container", Position = UDim2.new(0,0,0,30), Size = UDim2.new(1,0,0,0), BackgroundTransparency = 1, }) local layout = New("UIListLayout", {Parent = container, SortOrder = Enum.SortOrder.LayoutOrder, Padding = UDim.new(0,6)}) New("UIPadding", {Parent = container, PaddingLeft = UDim.new(0,6), PaddingRight = UDim.new(0,6), PaddingTop = UDim.new(0,6), PaddingBottom = UDim.new(0,6)}) layout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() local h = layout.AbsoluteContentSize.Y container.Size = UDim2.new(1,0,0, h) catRoot.Size = UDim2.new(1,0,0, 30 + h) task.delay(0.01, function() scroll.CanvasSize = UDim2.new(0,0,0, masterLayout.AbsoluteContentSize.Y + 12) end) end) return catRoot, container end -- helper: create item local function CreateItem(container, text) local row = New("Frame", { Parent = container, Size = UDim2.new(1,0,0,30), BackgroundColor3 = Color3.fromRGB(45, 8, 8), }) New("UICorner", {Parent = row, CornerRadius = UDim.new(0,6)}) New("UIStroke", {Parent = row, Color = Color3.fromRGB(120,14,14), Thickness = 1}) local label = New("TextLabel", { Parent = row, Size = UDim2.new(1, -80, 1, 0), Position = UDim2.new(0, 8, 0, 0), BackgroundTransparency = 1, Text = text, TextColor3 = Color3.fromRGB(255,255,255), Font = Enum.Font.Gotham, TextSize = 13, TextXAlignment = Enum.TextXAlignment.Left, ClipsDescendants = true, }) local copyBtn = New("TextButton", { Parent = row, Size = UDim2.new(0,64,0,22), Position = UDim2.new(1, -72, 0.5, -11), BackgroundColor3 = Color3.fromRGB(140,10,10), Text = "Copy", TextColor3 = Color3.fromRGB(255,255,255), Font = Enum.Font.GothamBold, TextSize = 12, }) New("UICorner", {Parent = copyBtn, CornerRadius = UDim.new(0,6)}) copyBtn.MouseButton1Click:Connect(function() local success, err = pcall(function() setclipboard(tostring(text)) end) if success then copyBtn.Text = "✓" else copyBtn.Text = "Error" end task.delay(0.7, function() copyBtn.Text = "Copy" end) end) end -- DATA TABLE (CLEANED) local data = { {"SINGLE", { [[This player is wearing inappropriate and overly revealing clothing that violates Roblox's rules against sexual or adult content. Please review for unsafe and sexualized attire.]], [[This player is wearing extremely revealing pants that expose private areas, which violates Roblox's rules against sexual or adult content. Please review this player for inappropriate and unsafe attire.]], [[This avatar is displaying extremely inappropriate 18+ content with exaggerated adult body features and the appearance of having no clothing. This is clearly sexualized and completely violates Roblox community standards. It creates an unsafe and uncomfortable environment for players and should be removed immediately to protect the platform's safety.]], [[User is deliberately wearing bypassed clothing assets and illicitly modified meshes designed to simulate prohibited levels of nudity and sexualized body features; the avatar's appearance is intentionally provocative and contains adult-themed imagery that violates the zero-tolerance policy against sexual content; utilizing 'invisible' or 'nude-colored' textures to circumvent moderation filters; wearing accessories specifically positioned to represent prohibited sexual anatomy; the overall character design is intended to facilitate prohibited adult roleplay and creates a dangerous environment for minors; this is a clear and premeditated attempt to bypass platform decency standards; utilizing 'layered clothing' glitches to expose private areas or simulate nudity; engaging in suggestive behavior through the use of an inappropriate avatar; violating the Terms of Use regarding platform integrity by using assets that have been hidden from automatic detection; creating a highly offensive and sexualized presence in a public server; this is not a one-time incident but a deliberate circumvention of safety boundaries; request for an immediate account review and permanent removal of the offending assets to protect the community from predatory and adult-oriented content.]], [[This player is using poses or emotes that appear suggestive or inappropriate. This breaks Roblox's rules. Please review.]], [[This player is using revealing clothing with oversized chest or thigh accessories that create a sexualized appearance. This violates Roblox's rules. Please review.]], [[User is utilizing illicitly modified avatar scaling and bypassed mesh assets to create a "Titan" character that intentionally disrupts platform performance and causes severe server-side latency; this giant avatar is being used as a malicious tool to obstruct gameplay, block the camera views of all users in the session, and generate significant frame-rate drops (FPS lag) for other players; this is a deliberate attempt to degrade the user experience and exploit the physics engine to create an unplayable environment; the user is bypassing platform decency and size limitations through the misuse of layered clothing and glitched accessories; such behavior constitutes a premeditated attack on platform stability and intentional harassment of the entire server; this is not an incidental occurrence but a coordinated effort to ruin the game session through visual and technical exploitation; I am requesting an immediate review of these highlighted moments as they provide undeniable evidence of intentional lag generation and malicious server disruption; requesting a permanent ban for violating the Terms of Service regarding 'Malicious Software and Exploitation' and 'Platform Integrity'.]] }}, {"DUO/kata kasar", { [[The user is engaging in mass harassment by insulting several players in the chat.]], [[This player is engaging in dating behavior, including paired dancing and romantic roleplay, which is not allowed on Roblox. This violates the rules against romantic or sexual content. Please review their behavior.]], [[I am witnessing this user harassing and bullying other players in the server. They are using offensive language and 'anj' to bypass filters while targeting another player. This behavior is creating a toxic environment for everyone. Please review the logs to protect the community.]], [[Calling me “dog,” “mutt,” “loser,” “ez” (disrespectful slang in another language), and other insults; repeated harassment and spamming of insults; sustained verbal abuse intended to demean, provoke, or intimidate; targeting me personally rather than discussing gameplay; hostile language meant to humiliate or belittle; continuing harassment after being ignored or told to stop; chat flooding and spam to disrupt communication; provoking arguments intentionally; discriminatory or degrading remarks; name-calling as harassment; baiting reactions for harassment purposes; attempting to manipulate me emotionally; asking for personal information such as my age, real name, location, school, or social media; attempting to move conversations off-platform; promoting or encouraging the use of Discord or other external links; violating child-safety rules through inappropriate personal conversation; grooming behavior including excessive personal attention, boundary-pushing questions, or manipulation; referring to or talking about my family members without consent; asking about or mentioning my daily routines or real-life activities; attempting to identify me outside the platform; stalking-adjacent behavior (probing for real-world details); ignoring platform safety boundaries; repeated rule-breaking behavior across messages; creating an unsafe or hostile environment; misuse of chat features; harassment through persistence rather than single messages; behavior designed to evade moderation; continued abuse rather than a one-time incident.]] }}, {"Swearing / Offensive Language", { [[This player has been repeatedly using rude, offensive, and derogatory words directed at other players in the chat, including slurs, profanities, and insults such as "idiot," "loser," "f*** you," and other hateful language that creates a hostile and uncomfortable environment for everyone involved. This behavior not only violates Roblox's community standards on respectful communication but also discourages new and younger players from enjoying the platform safely. I've captured screenshots of multiple instances where this occurred in public chats, and it's clear this is not a one-time mistake but a pattern of toxic conduct that needs immediate intervention to prevent further harm to the community. Please review the attached evidence and consider a permanent ban to maintain a positive space for all users.]], [[The user is constantly cursing and spamming vulgar language in the in-game chat, including words like "sh**," "b****," "d***," and aggressive phrases aimed at humiliating others, such as "you're trash, go die." This ongoing profanity is disrupting the gameplay experience, making it impossible for players to focus or interact positively, and it's especially concerning given that Roblox is a platform frequented by children and teens. Despite warnings from other players, they continue without remorse, showing a deliberate disregard for the rules. I have evidence in the form of chat logs and timestamps (attached if possible), and I urge the moderation team to take swift action, such as suspending or banning the account, to stop this behavior from escalating and affecting more users.]], [[They are insulting players in an aggressive and targeted manner, using offensive slurs, curses, and derogatory terms like "noob f***er," "stupid kid," and other forms of verbal abuse that directly break Roblox's guidelines against harassment and hate speech. This isn't just casual trash-talk; it's systematic bullying that has led to several players leaving the session out of frustration and discomfort. The reported user's actions are creating a toxic atmosphere that undermines the fun and inclusive nature of Roblox games. With supporting screenshots and details of the incidents provided, I request a thorough investigation and appropriate penalties, including a potential permanent ban, to protect the community and enforce the platform's zero-tolerance policy on such conduct.]], [[The reported player is engaging in verbal harassment by directing bad language and insults at multiple users simultaneously, including profanities like "ahole," "b****," "go to hell," and personalized attacks based on players' avatars or skills. This widespread offensive behavior is not only violating Roblox's terms of service but also fostering an environment of fear and exclusion, particularly harmful to younger audiences who may be exposed to this negativity. I've documented several examples through screenshots and chat excerpts, showing a clear pattern over multiple interactions. To safeguard the integrity of the platform and ensure a safe space for all, I strongly recommend immediate moderation action, such as account suspension or ban, to halt this disruptive and rule-breaking activity.]], [[Their constant cursing and hateful messages, filled with words like "f*** off," "you suck d***," "hate you all," and other venomous content, are completely ruining the overall experience for everyone in the game, turning what should be a fun and collaborative space into one of conflict and distress. This level of toxicity is unacceptable on a family-friendly platform like Roblox and directly contravenes the community guidelines designed to promote respect and positivity. With ample evidence from recorded chats and player testimonies (attached where applicable), it's evident that this is habitual misconduct that warrants severe consequences. Please take decisive action, such as a permanent ban, to restore a healthy environment and prevent this user from continuing to harm others.]] }}, {"Off-Platform Links", { [[This player has been sharing external links in the chat that lead to unverified and potentially unsafe websites, such as Discord servers, phishing sites, or third-party apps promising free items, which could expose other players to scams, malware, or inappropriate content. These actions are in direct violation of Roblox's policies against promoting off-platform resources, especially since they target vulnerable users looking for in-game advantages. I've noted specific links like "discord.gg/fakeinvite" and "free-robux-site.com" in my screenshots, and this behavior persists despite community pushback. To protect the safety of the Roblox community, particularly children, I request an urgent review and enforcement of penalties, including a ban, to deter such risky practices.]], [[They posted a suspicious link in the chat that redirects users outside of Roblox to dubious sites offering "free Robux" or "exclusive hacks," which is extremely dangerous for kids who might click without understanding the risks of data theft or viruses. This kind of promotion not only breaks Roblox's rules on external links but also endangers the privacy and security of players. Examples include links like "bit.ly/scamlink" shared repeatedly, as captured in my evidence. The user's intent seems malicious, aiming to exploit others for personal gain. Immediate intervention is needed—please investigate and apply appropriate sanctions, such as account suspension or permanent ban, to maintain a secure environment for all.]], [[The user keeps promoting websites and external platforms that are explicitly not allowed on Roblox, such as unauthorized trading sites or social media groups, which could lead to harmful interactions, scams, or exposure to mature content outside the moderated space. Specific instances include spamming links like "instagram.com/fakegroup" or "youtube.com/hacktutorial," which I've documented with timestamps and screenshots. This repeated violation undermines Roblox's commitment to user safety and could result in real-world dangers for impressionable players. I urge the moderation team to conduct a full review and impose strict measures, including a ban, to prevent further dissemination of these hazardous links.]], [[They are actively trying to lure players to other platforms through untrusted links shared in chats, such as invites to private servers or websites claiming to offer in-game boosts, which poses significant risks like account compromise or inappropriate engagements. Links like "telegram.me/scamchannel" have been posted multiple times, as shown in my attached proof, clearly intending to bypass Roblox's ecosystem. This behavior contravenes the platform's guidelines and threatens the well-being of the community, especially younger users. To uphold safety standards, please take prompt action, such as banning the account, and remove any lingering threats from their activity.]], [[External links should never be shared in Roblox as they can lead to unsafe territories, yet this player persists in posting them, including suspicious URLs like "patreon.com/fakecontent" or "twitch.tv/exploitstream," which could harm players through misinformation or exploitation. My evidence includes detailed captures of these incidents, highlighting a pattern that ignores Roblox's strict policies. Such actions erode trust in the platform and expose users to potential dangers. I strongly advocate for a comprehensive investigation and enforcement, potentially resulting in a permanent ban, to reinforce the rules and ensure a protected space for everyone.]] }}, {"Sharing Personal Information", { [[This user is dangerously requesting personal information from other players, such as real names, phone numbers, email addresses, or social media handles, in attempts to establish off-platform contact that could lead to privacy breaches or predatory behavior. Phrases like "What's your real name?" or "Give me your Snapchat" have been used repeatedly in chats, as evidenced by my screenshots. This directly violates Roblox's privacy policies and endangers users, particularly minors. Immediate moderation is essential—please review the incidents and apply severe penalties, such as a ban, to prevent any escalation and protect the community's personal safety.]], [[They are encouraging other players to reveal private info in public and private messages, including questions about home addresses, ages, or contact details, which is strictly against Roblox rules and could facilitate stalking or identity theft. Specific examples from chats, like "Tell me your phone number for a surprise," are documented in my attachments. This manipulative conduct shows a blatant disregard for user security and the platform's guidelines. To safeguard vulnerable players, I request a thorough investigation and decisive action, including account suspension or ban, to halt this unsafe practice immediately.]], [[The player directly asked me and several others for personal details in the chat, such as full names, locations, or online profiles, creating an atmosphere of unease and potential risk for data exploitation. Instances like "Where do you live? Let's meet up" have been captured in evidence, highlighting violations of Roblox's terms on information sharing. This behavior is especially alarming in a kid-oriented environment. Please conduct an urgent review and enforce appropriate measures, such as a permanent ban, to eliminate this threat and maintain a secure space for all users.]], [[They are systematically trying to collect sensitive information from younger users through deceptive chats, inquiring about emails, passwords, or family details under the guise of "friendship" or "trading," which poses severe privacy and safety risks. My screenshots show repeated attempts like "Share your email for free items," clearly breaching Roblox's policies. Such actions could lead to real harm beyond the game. I implore the team to investigate promptly and impose strict sanctions, including banning the account, to protect the community from these invasive tactics.]], [[Sharing or soliciting personal information is inherently dangerous and prohibited on Roblox, yet this user continues to do so by asking for contact info or real-life details in ways that could enable harassment or scams. Evidence includes messages like "Give me your IG handle," attached for review. This ongoing violation undermines the platform's safety protocols and affects player trust. Quick intervention is crucial—please take action, such as a ban, to stop this behavior and reinforce the importance of privacy for everyone involved.]] }}, {"Dating/pacaran", { [[Multiple users are engaging in prohibited romantic and sexualized roleplay through the systematic simulation of intimate physical contact; utilizing emotes, animations, and character positioning to deliberately clip into each other's avatars to simulate prohibited sexual acts; the interaction is intentionally provocative and creates a highly suggestive and inappropriate environment that violates the zero-tolerance policy against 'Online Dating' and 'Sexual Content'; this behavior is a premeditated attempt to bypass platform decency standards in a public server; they are using the platform's features to engage in adult-themed intimate simulations that are completely unsuitable for a multi-generational platform; ignoring established community safety boundaries and disregarding the presence of other players; the persistent nature of this behavior, as captured in these highlighted moments, indicates a deliberate breach of the Terms of Service regarding 'Simulated Sexual Activity'; these players are facilitating an environment that encourages prohibited adult-oriented roleplay, which poses a significant risk to the safety and comfort of minors; the actions being performed are not incidental but are coordinated efforts to bypass automated moderation; I am requesting an immediate and thorough review of these specific highlighted segments as they provide undeniable evidence of inappropriate intimate conduct; such behavior undermines platform integrity and requires immediate disciplinary action, including account suspension or permanent removal, to maintain a safe and age-appropriate environment for all users.]], [[I am reporting both users for inappropriate physical conduct. They are intentionally dancing extremely close to each other to simulate suggestive or sexual acts. This behavior is inappropriate for a kids' platform and falls under the 'Online Dating' and 'Sexual Content' violation.]], [[The reported user is flirting aggressively and discussing mature topics not suitable for kids, like relationships, kissing, or adult-oriented jokes, in public chats, creating discomfort and violating Roblox's family-friendly standards. Examples include "Let's roleplay as lovers," as shown in evidence. This pattern risks exposing minors to inappropriate ideas. I request a full review and immediate action, such as a permanent ban, to uphold the platform's integrity and safety.]], [[They keep asking other players to enter into virtual relationships or "date" in-game, using phrases like "Will you marry me in Roblox?" or persistent invitations that pressure participants and breach rules on romantic content. Screenshots highlight this repeated misconduct. Such actions can lead to emotional manipulation. Please intervene swiftly with sanctions, including banning, to maintain a clean and appropriate space for all ages.]], [[Sexual behavior in chat is occurring through explicit messages, gestures, or roleplays that make players uncomfortable, such as references to intimate acts or body parts, directly against Roblox's policies. Evidence includes "Let's do something naughty," attached for review. This is unacceptable and harmful. Act fast with a ban to stop it and preserve the platform's positive atmosphere.]] }}, {"Citer ga sportif", { [[This player is using exploits and third-party tools to gain an unfair advantage, such as speed hacks, infinite jumps, or item duplication, which disrupts fair play and frustrates legitimate users. Specific glitches observed include teleporting through walls, as documented in videos/screenshots. This violates Roblox's anti-cheat policies. Please investigate and enforce a ban to restore balance and deter others from similar actions.]], [[They are hacking and breaking game mechanics by manipulating scripts or using auto-aim bots, ruining the competitive integrity and experience for others who play honestly. Examples like instant kills without effort are captured in evidence. Such exploitation harms the community's trust. Immediate review and penalties, including permanent ban, are essential to maintain fairness.]], [[User is utilizing third-party script injections and prohibited external software to manipulate character animation IDs and physics; they are intentionally abusing high-frequency animation packets to forcefully manipulate accessory positioning, causing severe screen-blocking and visual disruption for all players in the session; this behavior is a deliberate attempt to degrade platform performance and ruin the gameplay experience through malicious visual exploitation; utilizing 'giant' or 'glitched' accessory scaling via animation manipulation to obstruct the camera views of other users, which constitutes a severe violation of the 'Cheating and Exploitation' policy; the user is bypassing client-side boundaries to execute unauthorized server-side visual disturbances; this intentional disruption of platform integrity is being used to harass the entire server and render the game unplayable; the persistence of this behavior, as captured in these specific highlighted moments, provides undeniable evidence of a premeditated attack on game stability and user experience; such malicious exploitation of the animation system is a direct breach of the Terms of Service regarding 'Malicious Software and Exploitation'; I am requesting an immediate and permanent account suspension for this user to prevent further intentional disruption of the Roblox ecosystem and to maintain a safe, functional environment for the community.]], [[They are bypassing the game system through exploits like flying in non-fly zones or invincibility, harming gameplay and giving them undue advantages. Screenshots show this pattern. Violations like this erode fun for all. Please apply strict measures, such as banning, to enforce rules.]], [[Their disruptive actions via cheating, including script injections or bot farming, violate rules and must be stopped. Evidence highlights ongoing issues. A permanent ban would safeguard the community and promote honest play.]] }}, {"TITAN / AVATAR LAG", { [[This user is maliciously utilizing bypassed avatar scaling and prohibited mesh-loading exploits to create a "Titan" character that exceeds platform size limitations; this giant avatar is being used as a tool for intentional server-side disruption, causing extreme frame-rate drops (FPS lag) and rendering the game session unplayable; they are deliberately abusing layered clothing physics and glitched accessory assets to circumvent platform stability; this is a premeditated attack on the user experience and platform integrity; I am requesting an immediate and permanent account suspension for 'Malicious Software and Exploitation'.]] }}, {"TITAN / MALICIOUS LAG", { [[This player is intentionally utilizing unauthorized avatar scaling exploits and illicitly modified mesh assets to create a "Titan" character that systematically bypasses Roblox's engine limitations; the massive scale of this avatar is being used as a malicious tool to force server-side latency and generate severe frame-rate (FPS) drops, effectively sabotaging the gameplay experience for everyone in the session; the user is deliberately abusing glitched layered clothing and "invisible" physics-based accessories to obstruct the camera views of other players, which constitutes a direct violation of the 'Cheating and Exploitation' policy; this is a premeditated attack on platform stability and user safety, designed to render the game unplayable through technical disruption; the persistence of this behavior provides undeniable evidence of a coordinated attempt to evade automatic moderation; I am requesting a manual review and an immediate permanent ban for 'Malicious Software and Exploitation' to maintain a safe, functional, and lag-free environment for the community.]] }}, {"TITAN / GLOBAL LAG EXPLOIT", { [[This user is maliciously deploying a bypassed "Titan" avatar constructed through illicit mesh manipulation and unauthorized accessory scaling to intentionally trigger massive server-side lag and FPS drops; this behavior is a calculated attempt to obstruct the gameplay of all users and sabotage the platform's stability; the avatar's size is a direct violation of Roblox's engine limitations and is being used to harass the entire server by rendering the environment unplayable; this constitutes a severe breach of 'Cheating and Exploitation' and 'Malicious Intent' policies; the user is deliberately leveraging glitched layered clothing and "invisible" textures to force a visual crash on lower-end devices; I am requesting an immediate manual investigation and a permanent account termination to prevent further disruption of platform integrity and to ensure a safe, functional environment for the community.]] }}, {"SWEARING / FILTER BYPASS", { [[This user is repeatedly utilizing bypassed profanity and prohibited toxic language to harass and demean players; they are intentionally manipulating characters, symbols, and phonetic spellings to circumvent the platform's chat filtering system and deliver highly offensive insults; this behavior is a deliberate attempt to evade moderation while sustaining a hostile and toxic environment; the user is directing aggressive verbal abuse towards others, which constitutes a severe violation of the 'Bullying and Harassment' and 'Inappropriate Content' policies; the persistence of this verbal misconduct, despite the presence of filters, demonstrates a premeditated intent to violate the Terms of Use; I am requesting an immediate chat log review and disciplinary action to maintain a safe, respectful, and family-friendly atmosphere; such behavior is detrimental to the community and should result in an immediate account suspension to prevent further toxic conduct.]] }}, {"TOXIC / AGGRESSIVE SWEARING", { [[This player is engaging in sustained verbal misconduct and the intentional use of bypassed profanity to harass and provoke other users; they are systematically utilizing phonetic bypasses and prohibited slang to circumvent the automated chat filters, creating a hostile and toxic environment for everyone in the session; the user's language is clearly intended to demean, belittle, and intimidate, which constitutes a severe violation of the 'Bullying and Harassment' policy; this is not an isolated incident but a premeditated effort to evade moderation and sustain a campaign of verbal abuse; such behavior is highly detrimental to the platform's community standards and safety protocols; I am requesting an immediate manual review of the chat logs and a permanent suspension of this user's account to protect the player base from further toxic interactions and to maintain a safe, respectful environment.]] }}, {"TOXIC / HATE SPEECH BYPASS", { [[This user is maliciously exploiting the chat system to deliver bypassed hate speech and highly offensive profanity; they are using complex character substitutions and phonetic manipulation to circumvent safety filters, intentionally exposing the community to toxic and discriminatory language; this behavior is a direct violation of 'Child Safety' and 'Harassment' policies as it creates a dangerous environment for younger players; the user is consistently provoking conflict and using aggressive, unmonitored verbal abuse to intimidate others; this is a premeditated attempt to undermine platform moderation and ruin the integrity of the game session; I am requesting an immediate and permanent account termination to ensure the protection of the Roblox community; the severity of this bypassed toxic conduct requires an urgent manual review of all recent chat logs associated with this user ID.]] }}, {"EXTREMISM / HATE SPEECH", { [[This user is intentionally disseminating bypassed hate speech and utilizing prohibited extremist symbols to harass and intimidate the community; they are leveraging complex character substitutions and glitched visual assets to circumvent safety filters and promote discriminatory ideologies; this behavior is a severe and direct violation of the 'Hate Speech', 'Child Safety', and 'Discrimination' policies; the user's conduct is specifically designed to target protected groups and create a dangerous, hostile environment within a public session; this is a premeditated attempt to undermine platform integrity and safety protocols through malicious exploitation of the chat and avatar systems; the severity of these actions poses a significant risk to the Roblox ecosystem and its younger user base; I am requesting an immediate manual intervention, an emergency chat/avatar log audit, and a permanent termination of this account to ensure the absolute safety and protection of all players; this level of extremist conduct warrants a zero-tolerance disciplinary response.]] }}, {"ODING / SEXUAL SIMULATION", { [[Multiple users are coordinating to engage in prohibited romantic and sexualized roleplay by deliberately exploiting avatar physics and animation clipping; they are utilizing specific emotes and character positioning to simulate prohibited physical intimacy and adult-themed conduct in a public server; this behavior is a premeditated attempt to bypass the 'Online Dating' and 'Sexual Content' zero-tolerance policies; the interaction is intentionally provocative and creates a highly inappropriate environment that threatens the safety and comfort of the multi-generational player base; they are leveraging the platform's features to perform adult-oriented simulations that are strictly forbidden under the Terms of Use; the persistence of this behavior, as captured in these highlighted moments, provides undeniable evidence of intentional misconduct and a disregard for community safety boundaries; I am requesting an immediate manual review and permanent disciplinary action against all involved accounts to maintain platform integrity and ensure a safe environment for minor users.]] }}, {"ODING / CONTACT FISHING", { [[This user is systematically utilizing the platform to solicit private off-platform contact information and engage in prohibited romantic grooming; they are repeatedly attempting to bypass chat filters to share social media handles and external communication IDs for the purpose of 'Online Dating'; this behavior constitutes a severe violation of the 'Privacy' and 'Child Safety' policies, as it facilitates unmonitored interactions outside of the platform's safety ecosystem; the user's conduct is predatory in nature, specifically targeting others for intimate personal data and romantic solicitation; this is a premeditated attempt to circumvent safety protocols and exploit the community for inappropriate adult-oriented purposes; I am requesting an immediate audit of this user's chat logs and a permanent account termination to prevent further risk to the player base; a zero-tolerance response is required to ensure that this predatory behavior does not compromise the safety of the environment.]] }}, {"SCAM / ACCOUNT FISHING", { [[This user is maliciously disseminating fraudulent links and prohibited third-party website references to deceive players into compromising their account security; they are intentionally utilizing bypassed chat phrases to promote "Free Robux" scams and phishing schemes designed to steal user credentials and sensitive personal data; this behavior is a direct violation of the 'Scamming' and 'Account Security' policies; the user is misrepresenting platform features and potentially impersonating staff to manipulate younger players into visiting dangerous external domains; this is a premeditated attempt to compromise the integrity of the Roblox economy and user safety; I am requesting an immediate investigation into this user's recent activity and an emergency permanent ban to prevent further financial and data loss within the community; a zero-tolerance disciplinary action is necessary to maintain a secure and trustworthy platform environment.]] }}, {"PERSONAL DATA LEAK / PII", { [[This user is maliciously disseminating Personally Identifiable Information (PII) and soliciting sensitive private data from other players within this session; they are attempting to bypass chat filters to share or request real-world locations, full names, and private contact credentials, which constitutes a severe breach of the 'Privacy' and 'Child Safety' policies; this behavior is a direct attempt to facilitate unmonitored off-platform contact and poses a significant physical and digital security risk to the users involved; the perpetrator is deliberately utilizing coded language to evade detection while harvesting personal information; I am requesting an immediate manual audit of the chat logs and an emergency permanent ban to prevent further exploitation of user privacy; a zero-tolerance response is mandatory to maintain the safety and integrity of the platform's community.]] }}, {"AVATAR / BYPASSED NUDITY", { [[This user is deliberately utilizing illicitly modified mesh assets and bypassed clothing textures to simulate prohibited levels of nudity and sexualized body features; the avatar's appearance is a premeditated attempt to circumvent the platform's decency standards by using "invisible" or "skin-toned" textures to mimic nudity; they are abusing layered clothing physics and prohibited character scaling to create a highly provocative and adult-themed visual representation that is strictly forbidden; this behavior constitutes a severe violation of the 'Inappropriate Content' and 'Avatar Guidelines' policies; the user is intentionally presenting this offensive imagery in a public session, posing a direct risk to the platform's family-friendly environment; I am requesting an immediate manual review of the assets equipped by this user ID and a permanent suspension for 'Sexual Content' to maintain the safety and integrity of the community.]] }}, {"EXPLOIT / THIRD-PARTY HACK", { [[This user is utilizing unauthorized third-party software and script injections to manipulate the game's physics engine and server-side boundaries; they are demonstrably using "Speedhawks," "Fly Hacks," and "Noclip" exploits to gain an unfair advantage and disrupt the competitive integrity of the session; this behavior is a direct violation of the 'Cheating and Exploitation' policy and bypasses the platform's fundamental anti-cheat protocols; the user is systematically interfering with the game's code to harass other players and render the experience unplayable; I am requesting an immediate manual review of the client-side logs associated with this user ID and a permanent Hardware Ban (HWID) to prevent further malicious exploitation and ensure a fair environment for all players.]] }}, {"MODERATION ABUSE / TROLLING", { [[This user is maliciously threatening others with "False Reporting" and utilizing the moderation system as a tool for harassment; they are intentionally creating a hostile environment by manipulating game rules and attempting to intimidate players through fraudulent claims of misconduct; this behavior constitutes a violation of the 'Bullying and Harassment' policy and is a direct attempt to undermine the integrity of the platform's safety systems; the user's conduct is purely disruptive and designed to cause distress to others; I am requesting a review of this user's reporting history and appropriate disciplinary action for 'Malicious Trolling' to prevent further abuse of the platform's community standards.]] }}, {"SPAM / NGEMIS", { [[This user is engaging in excessive and malicious spamming of the chat system to obstruct communication and disrupt the gameplay experience for all users; they are repeatedly flooding the server with prohibited solicitations and repetitive phrases to evade automated anti-spam filters; this behavior is a direct violation of the 'Disruptive Conduct' and 'Community Standards' policies; the user's persistence in clogging the chat logs prevents legitimate interaction and creates a hostile, unplayable environment; I am requesting a manual review of the chat history and a suspension for 'Intentional Server Disruption' to maintain the quality and safety of the session.]] }}, {"RUSUH / GANGGU GAME", { [[This user is engaging in intentional griefing and disruptive conduct to sabotage the gameplay experience for others; they are maliciously obstructing essential game mechanics and harassing players to render the environment unplayable; this is a premeditated attempt to violate community standards and harass the server; I am requesting disciplinary action for 'Disruptive Conduct'.]] }}, {"BULLY / HINA FISIK", { [[This user is engaging in targeted harassment and aggressive bullying to demean and intimidate others; they are utilizing toxic language to attack individuals, creating a hostile and unsafe environment; this is a direct violation of the 'Bullying and Harassment' policy; I am requesting a manual review and account suspension.]] }}, {"ANCAMAN DUNIA NYATA", { [[This user is making explicit "Real-Life Threats" and inciting violence against other players; they are threatening physical harm outside of the digital environment, which is a severe violation of global safety laws and Roblox's 'Violent Extremism and Threats' policy; this is an emergency situation requiring immediate account termination and a permanent IP ban to ensure user safety.]] }}, {"IKLAN CLAN / GENG TOXIC", { [[This user is utilizing in-game advertising tools and signs to promote unauthorized "Clans" and "Gangs" that are associated with organized harassment and server disruption; they are attempting to recruit players into toxic sub-communities designed to bypass moderation and engage in coordinated bullying; this behavior violates the 'Disruptive Conduct' and 'Safety' guidelines by fostering a hostile environment through group-based intimidation; I am requesting a manual review of the text displayed on their signs and a suspension for promoting harmful community structures.]] }}, {"OPEN BO / ROLEPLAY DEWASA", { [[This user is engaging in prohibited adult-themed roleplay and soliciting sexualized services within a public social space; they are utilizing bypassed language to offer "escort services" and inappropriate physical interactions, which is a zero-tolerance violation of the 'Sexual Content' and 'Online Dating' policies; this predatory behavior poses a severe risk to the minor-heavy player base of this game; I am requesting an immediate permanent ban and a manual audit of their recent interactions.]] }}, {"AVATAR BUGIL / SKIN-TONE", { [[This user is intentionally manipulating their avatar's skin tone and removing clothing assets to simulate nudity; they are exploiting the lack of 3D clothing in certain areas to bypass decency filters and present an offensive, sexualized image in a public session; this is a direct violation of 'Avatar Guidelines' and 'Inappropriate Content' policies; I am requesting an immediate reset and account suspension.]] }}, {"NYAMPAH / HALANGI JALAN", { [[This user is intentionally obstructing public pathways and "blocking" essential game areas to prevent others from playing; they are engaging in coordinated "griefing" by using their avatars or in-game items to trap players and disrupt the session flow; this is a violation of 'Disruptive Conduct' and 'Harassment' policies; I am requesting disciplinary action for intentional server sabotage.]] }}, {"HINA MISKIN / DISKRIMINASI", { [[This user is engaging in targeted harassment and social discrimination based on avatar appearance and perceived wealth; they are using toxic and demeaning language to belittle players who do not possess premium items, creating a hostile and exclusionary environment; this violates the 'Bullying and Harassment' policy; I am requesting a warning or suspension for persistent toxic conduct.]] }}, {"SIMULASI SEKSUAL / GLITCH ANIMASI", { [[This user is maliciously exploiting the game's animation system and avatar physics to simulate prohibited sexual acts and explicit physical intimacy in a public space; they are coordinating with other players to "clipping" their character meshes and sync specific emotes (such as laying down, crouching, or repetitive movement glitches) to bypass the platform's strict decency filters; this behavior is a premeditated attempt to perform adult-oriented simulations that are strictly forbidden under the 'Sexual Content' and 'Online Dating' zero-tolerance policies; the interaction is intentionally provocative and creates a highly inappropriate, hostile environment that threatens the safety of the minor-heavy player base; I am requesting an immediate manual review of the physics logs for these avatars and a permanent account termination for engaging in simulated adult conduct.]] }}, {"SARA / HATE SPEECH DETAIL", { [[This user is intentionally disseminating bypassed hate speech and highly offensive discriminatory language targeted at protected groups; they are leveraging complex phonetic substitutions, character manipulation, and intentional misspellings to circumvent the automated chat filtering system while delivering malicious insults; this conduct is a direct and severe violation of the 'Hate Speech', 'Discrimination', and 'Child Safety' policies; the user's behavior is specifically designed to promote a hostile environment and intimidate players based on their real-world identity; this premeditated attempt to undermine platform safety and community integrity requires an urgent manual audit of all recent chat logs associated with this User ID; I am requesting a permanent ban to prevent further dissemination of extremist or discriminatory ideologies within the Roblox ecosystem.]] }}, {"SPAM BULLY / HARASSMENT MASSAL", { [[This user is engaging in aggressive, repetitive targeted harassment and malicious "chat flooding" to demean and intimidate other players; they are systematically spamming derogatory terms and offensive slurs (such as "KHACUNG" or other belittling labels) to humiliate specific groups and individuals within the session; this behavior is a premeditated attempt to disrupt the game's social environment and bypass anti-spam protocols through continuous, rapid-fire messaging; such conduct constitutes a severe violation of the 'Bullying and Harassment' and 'Disruptive Conduct' policies; the user's persistence in creating a toxic and exclusionary atmosphere is detrimental to the platform's community standards and safety; I am requesting an immediate manual audit of the chat logs for this session and a permanent suspension of the account to prevent further organized verbal abuse and server sabotage.]] }}, {"LINK ILEGAL DI BAJU", { [[This user is maliciously utilizing avatar clothing assets to disseminate prohibited external links and third-party website references; they are circumventing chat filters by embedding fraudulent URLs, social media handles, or "QR code" patterns directly onto their shirt or pants textures; this behavior is a calculated attempt to redirect players—including minors—to unmonitored and potentially dangerous external domains, which constitutes a severe violation of the 'Scamming', 'Privacy', and 'Child Safety' policies; this premeditated exploitation of the avatar customization system poses a significant risk to the platform's security ecosystem; I am requesting an immediate manual audit of the clothing assets (Shirt/Pants/T-Shirt) equipped by this User ID and a permanent termination of the account for distributing prohibited external content and attempting to compromise user safety.]] }}, {"SABOTASE MAP / FLING GLITCH", { [[This user is intentionally exploiting game mechanics and object physics to sabotage the environment and harass other players; they are utilizing specific item interactions or "fling glitches" to forcefully displace other avatars and obstruct essential game areas, rendering the session unplayable for the community; this behavior is a direct violation of the 'Disruptive Conduct' and 'Harassment' policies; the user is systematically interfering with the game's code and physical boundaries to create a hostile atmosphere and prevent legitimate gameplay; this premeditated attempt to ruin the integrity of the game session warrants an immediate manual review of the physics logs and a permanent suspension for intentional server disruption and malicious griefing.]] }}, {"EXPLOIT AVATAR / ILLEGAL ANIM", { [[This user is maliciously utilizing unauthorized third-party software to exploit character scaling and manipulate "Animation IDs" beyond platform limitations; they have bypassed the standard R15/R6 scaling constraints to create a "Giant Avatar" that obstructs the entire game environment and sabotages the session for all players; furthermore, the user is injecting prohibited Animation IDs to perform "NSFW" or highly disruptive non-standard movements that are strictly forbidden under the 'Sexual Content' and 'Cheating/Exploitation' policies; this intentional manipulation of the game's engine and avatar physics constitutes a severe security breach and a premeditated effort to harass the community; the presence of such exploited assets poses a direct threat to platform integrity and child safety; I am requesting an immediate Hardware Ban (HWID) and a permanent termination of this account for malicious server-side interference and the use of prohibited third-party scripts.]] }}, {"EXPLOIT TERBANG / FLING MASSAL", { [[This user is utilizing a high-risk malicious script to manipulate the game's physics engine, specifically engaging in "Fling" exploits and unauthorized "Fly Hacks"; they are bypassing the server's positional boundaries and utilizing "Velocity Spoofing" to rotate their avatar at prohibited speeds, causing other players to be forcefully displaced or killed upon contact; this behavior is a premeditated attempt to sabotage the server and harass the entire player base through third-party script injection; such conduct constitutes a severe breach of the 'Cheating and Exploitation' and 'Disruptive Conduct' policies; the user is intentionally rendering the game unplayable and bypassing the integrated anti-cheat protocols; I am requesting an immediate investigation of the network ownership logs and a permanent Hardware Ban (HWID) to prevent further malicious interference with the platform's stability.]] }}, {"KEAMANAN ANAK / UNDERAGE", { [[This user is explicitly demonstrating behavior and providing verbal cues that indicate they are under the minimum age requirement for this platform's social interactions; they are potentially exposing themselves to predatory environments and inappropriate content; this report is an urgent request for a "Safety Audit" under the 'Child Safety' and 'Privacy' policies; the user's presence in this specific session poses a significant risk to their own digital safety; I am requesting an immediate age-verification check or account restriction to ensure compliance with global child protection regulations and Roblox's safety standards.]] }}, {"PAKAR BYPASS / SENSOR TRICK", { [[This user is utilizing highly sophisticated character manipulation, special Unicode symbols, and complex phonetic distortions to systematically bypass the platform's chat filtration system; they are deliberately delivering prohibited profanity and malicious insults that are clearly legible to human users but designed to evade automated detection; this behavior constitutes a premeditated and persistent effort to undermine the 'Inappropriate Content' and 'Community Standards' policies; the user is acting with clear intent to harass others while avoiding moderation consequences; I am requesting a manual review of their full chat history and a permanent suspension for intentional circumvention of safety protocols.]] }}, {"JUDI ILEGAL / GAMBLING", { [[This user is facilitating unauthorized gambling activities and illicit "Robux Betting" schemes within this session; they are utilizing deceptive practices to encourage financial risk and potentially laundering assets through prohibited third-party transactions; this is a severe violation of the 'Gambling' and 'Economy Integrity' policies; I am requesting an immediate permanent ban and a full audit of their transaction history to prevent further financial exploitation of the player base.]] }}, {"EKSTREMISME / RADIKAL", { [[This user is disseminating symbols, slogans, and ideologies associated with prohibited extremist organizations and violent radicalism; they are utilizing the platform to promote hate-based propaganda and glorify real-world violence, which is a zero-tolerance violation of the 'Terrorism and Violent Extremism' policy; this is an emergency safety report; I am requesting a permanent IP ban and a report to the relevant authorities to ensure the security of the community.]] }}, {"AVATAR VULGAR / AUTO-PURGE", { [[This user has bypassed the internal asset-mesh validation system to display explicit NSFW content; the presence of this avatar in a public instance creates immediate legal liability; system is required to execute an automated session purge and asset-lock for this UserID within the 120-second safety window. tu]] }}, {"PACARAN / PREDATORY_L5_TRIGGER", { [[This account has been identified as engaging in predatory solicitation and high-risk grooming patterns; current behavior violates the 'Immediate Harm' protection clause; AI-MOD is triggered to execute an emergency session disconnect to isolate the perpetrator from minor users; manual audit follows after automated lockout.]] }}, {"EXPLOITER / BREACH_LEVEL_MAX", { [[Unauthorized third-party script injection detected; the user is manipulating server-side physics and network ownership via this behavior is causing real-time data corruption and bypasses the 'Hyperion' security layer; to prevent a full instance crash and infrastructure damage, the system must execute an immediate Hardware-ID (HWID).]] }}, {"TITAN / DOS_ATTACK_MITIGATION", { [[User is executing a visual Denial of Service (DoS) attack through exploited character scaling and bypassed mesh-loading limits; internal diagnostic this intent is to crash the server instance and disrupt platform services; immediate removal of the offending entity is required to stabilize the server environment and protect client-side performance.]] }}, {"ZEPETO REPORT",{ [[The user is following a trend that utilizes 3D layered clothing to mask the absence of base clothing layers, This avatar is designed to simulate a highly sexualized appearance and indecent exposure by using skin-tone textures under a micro-skirt asset, This is a clear attempt to bypass the platform safety guidelines regarding sexual content and minor safety.]] }}, {"AVATAR ga pake baju",{ [[The user is wearing a manipulated skirt/short asset that uses skin-tone textures to simulate nudity, The asset is designed to bypass the platform decency filters by creating a nude illusion through transparency and shading, Please perform a manual review of the clothing ID currently equipped.]] }}, {"AVATAR GAJAH",{ [[The user is intentionally manipulating the avatar scaling and utilizing specific 3D mesh accessories to create a highly sexualized body shape, This includes the use of thigh expanders and chest-enhancing assets to simulate adult physical proportions, which is a violation of the platform policy regarding sexualized content and the protection of minors, This 'Zepeto style' trend is being used to bypass safety filters for inappropriate aesthetic purposes. Please review the body-modifying assets equipped.]] }}, {"Brookhaven ava1",{ [[The reported user is deliberately exploiting the in-game avatar editor to circumvent Roblox's safety filters by constructing a highly inappropriate and sexually suggestive character. By strategically combining specific catalog items, skin-tone matching textures, and manipulated body scales, the user has created a visual representation that mimics nudity and anatomical explicitness, which is a direct violation of Roblox’s policies on sexual content and community decency. This is not an accidental cosmetic choice; it is a calculated attempt at 'filter evasion' to display prohibited imagery that would otherwise be blocked by the platform's standard upload moderation. This behavior is particularly predatory and harmful within a roleplay environment like Brookhaven, where the user is actively imposing this graphic content on a younger audience, forcing them into non-consensual and age-inappropriate interactions. The user’s actions demonstrate a clear intent to disrupt the safe social ecosystem of the platform and bypass the fundamental safety protocols designed to protect minors. Such a blatant disregard for the Terms of Use creates a toxic and unsafe atmosphere, undermining the integrity of the game's age rating. Based on this systematic violation, I request an immediate forensic review of the user’s recent avatar configurations and the application of maximum penalties, including a permanent account termination, to uphold Roblox’s zero-tolerance policy against sexualized content and system manipulation.]] }}, {"Brookhaven ava2",{ [[The user is intentionally exploiting the in-game editor to perform 'filter evasion,' creating a sexually suggestive avatar through skin-tone matching and manipulated body scales. This is a calculated attempt to bypass Roblox’s safety protocols and display prohibited imagery to a minor audience. I request a forensic review of their current avatar configuration for a permanent ban.]] }}, {"sky Destroyer text",{ [[The user is deploying oversized, distorted meshes to intentionally cause frame-rate drops (lag) and physically block essential map locations, constituting a denial-of-service (DoS) style of harassment towards other players.]] }}, {"Toxic text1",{ [[The reported user is demonstrating malicious intent by weaponizing the chat system to perform high-frequency verbal assaults. By utilizing complex syntax manipulation (e.g., mixing symbols and alphanumeric characters), the user has successfully bypassed the automated safety filters to broadcast hate speech and targeted harassment. This is a calculated disruption of the social ecosystem, intended to create a toxic environment and force players out of the experience. This systematic breach of the Community Standards (Section 2: Harassment) warrants a high-priority manual review and permanent account suspension to maintain a safe platform for all users.]] }}, {"Toxic text2",{ [[This report identifies a severe case of Filter Evasion and Communication Abuse. The subject is intentionally exploiting linguistic loopholes and obfuscated text strings to deliver prohibited slurs that the standard filter failed to capture. This deliberate attempt to circumvent Roblox’s security protocols proves that the user is consciously violating the Terms of Use. Their persistent use of derogatory language and targeted bullying constitutes a direct threat to the community's well-being. I request an immediate audit of the user's recent chat logs and the application of maximum penalties for intentional system manipulation.]] }}, } -- build UI for _, pair in ipairs(data) do local catName, items = pair[1], pair[2] local catFrame, container = CreateCategory(catName) for _, txt in ipairs(items) do CreateItem(container, txt) end task.delay(0.01, function() local l = container:FindFirstChildOfClass("UIListLayout") if l then container.Size = UDim2.new(1,0,0,l.AbsoluteContentSize.Y) catFrame.Size = UDim2.new(1,0,0,30 + l.AbsoluteContentSize.Y) end task.delay(0.01, function() scroll.CanvasSize = UDim2.new(0,0,0, masterLayout.AbsoluteContentSize.Y + 12) end) end) end masterLayout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() scroll.CanvasSize = UDim2.new(0,0,0, masterLayout.AbsoluteContentSize.Y + 12) end) -- dragging implementation local dragging, dragStart, startPos bar.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = main.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) UserInputService.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart main.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) print("CopyCategoriesGUI loaded (items are inside each category)")