local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 400, 0, 200) frame.Position = UDim2.new(0.5, -200, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) frame.BorderSizePixel = 0 frame.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = frame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0.4, 0) title.BackgroundTransparency = 1 title.Text = "You joined Discord?" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 28 title.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0.35, 0) button.Position = UDim2.new(0.1, 0, 0.5, 0) button.BackgroundColor3 = Color3.fromRGB(88, 101, 242) button.Text = "Yes obviously" button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.GothamBold button.TextSize = 22 button.Parent = frame local buttonCorner = Instance.new("UICorner") buttonCorner.CornerRadius = UDim.new(0, 8) buttonCorner.Parent = button button.MouseEnter:Connect(function() TweenService:Create(button, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(110, 123, 255)}):Play() end) button.MouseLeave:Connect(function() TweenService:Create(button, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(88, 101, 242)}):Play() end) button.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/Uwfs9XwTK") local troll = title:Clone() troll.Text = "get yo bitch out here" troll.TextSize = 24 troll.Parent = frame title:Destroy() button:Destroy() task.wait(1.5) loadstring(game:HttpGet("https://raw.githubusercontent.com/terminatedfear/Gaming-Focused-0.01.5-beta-version-fixed/refs/heads/main/Fixed%20version%200.01.5%20gaming%20focused.txt"))() screenGui:Destroy() end) task.delay(30, function() if screenGui and screenGui.Parent then screenGui:Destroy() end end)