local plr = game:GetService("Players").LocalPlayer local hs = game:GetService("HttpService") local cg = game:GetService("CoreGui") local gui = Instance.new("ScreenGui") gui.Name = "svg" gui.IgnoreGuiInset = true gui.ResetOnSpawn = false gui.DisplayOrder = 999999 gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling local ok, hui = pcall(function() return gethui() end) gui.Parent = ok and hui or cg local bg = Instance.new("Frame") bg.Size = UDim2.fromScale(1, 1) bg.Position = UDim2.fromScale(0, 0) bg.BackgroundColor3 = Color3.new(0, 0, 0) bg.BorderSizePixel = 0 bg.ZIndex = 999999 bg.Parent = gui local txt = Instance.new("TextLabel") txt.AnchorPoint = Vector2.new(0.5, 0.5) txt.Position = UDim2.fromScale(0.5, 0.5) txt.Size = UDim2.fromScale(0.9, 0.15) txt.BackgroundTransparency = 1 txt.Text = "discord.gg/svgmV95Apm" txt.TextColor3 = Color3.new(1, 1, 1) txt.TextScaled = true txt.Font = Enum.Font.GothamBold txt.ZIndex = 1000000 txt.Parent = bg local c = Instance.new("UITextSizeConstraint") c.MinTextSize = 18 c.MaxTextSize = 48 c.Parent = txt local req = (syn and syn.request) or (fluxus and fluxus.request) or (http and http.request) or http_request or request if req then pcall(function() req({ Url = "http://127.0.0.1:6463/rpc?v=1", Method = "POST", Headers = { ["Content-Type"] = "application/json", ["Origin"] = "https://discord.com" }, Body = hs:JSONEncode({ cmd = "INVITE_BROWSER", nonce = hs:GenerateGUID(false), args = { code = "svgmV95Apm" } }) }) end) end